Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
5.49 kB
import React from "react";
import ReactDOM from "react-dom";
import MUIDataTable from "../../src/";
import Switch from '@mui/material/Switch';
import FormGroup from '@mui/material/FormGroup';
import FormControlLabel from '@mui/material/FormControlLabel';
const data = [
["Gabby George", "Business Analyst", "Minneapolis", 30, 100000],
["Aiden Lloyd", "Business Consultant", "Dallas", 55, 200000],
["Jaden Collins", "Attorney", "Santa Ana", 27, 500000],
["Franky Rees", "Business Analyst", "St. Petersburg", 22, 50000],
["Aaren Rose", "Business Consultant", "Toledo", 28, 75000],
["Blake Duncan", "Business Management Analyst", "San Diego", 65, 94000],
["Frankie Parry", "Agency Legal Counsel", "Jacksonville", 71, 210000],
["Lane Wilson", "Commercial Specialist", "Omaha", 19, 65000],
["Robin Duncan", "Business Analyst", "Los Angeles", 20, 77000],
["Mel Brooks", "Business Consultant", "Oklahoma City", 37, 135000],
["Harper White", "Attorney", "Pittsburgh", 52, 420000],
["Kris Humphrey", "Agency Legal Counsel", "Laredo", 30, 150000],
["Frankie Long", "Industrial Analyst", "Austin", 31, 170000],
["Brynn Robbins", "Business Analyst", "Norfolk", 22, 90000],
["Justice Mann", "Business Consultant", "Chicago", 24, 133000],
["Addison Navarro", "Business Management Analyst", "New York", 50, 295000],
["Jesse Welch", "Agency Legal Counsel", "Seattle", 28, 200000],
["Eli Mejia", "Commercial Specialist", "Long Beach", 65, 400000],
["Gene Leblanc", "Industrial Analyst", "Hartford", 34, 110000],
["Danny Leon", "Computer Scientist", "Newark", 60, 220000],
["Lane Lee", "Corporate Counselor", "Cincinnati", 52, 180000],
["Jesse Hall", "Business Analyst", "Baltimore", 44, 99000],
["Danni Hudson", "Agency Legal Counsel", "Tampa", 37, 90000],
["Terry Macdonald", "Commercial Specialist", "Miami", 39, 140000],
["Justice Mccarthy", "Attorney", "Tucson", 26, 330000],
["Silver Carey", "Computer Scientist", "Memphis", 47, 250000],
["Franky Miles", "Industrial Analyst", "Buffalo", 49, 190000],
["Glen Nixon", "Corporate Counselor", "Arlington", 44, 80000],
["Gabby Strickland", "Business Process Consultant", "Scottsdale", 26, 45000],
["Mason Ray", "Computer Scientist", "San Francisco", 39, 142000]
];
class Example extends React.Component {
state = {
selectableRowsHideCheckboxes: false,
data: data,
};
updateSelectableRowsHideCheckboxes = (event) => {
this.setState({
selectableRowsHideCheckboxes: event.target.checked
});
}
render() {
const columns = [
"Name",
"Title",
"Location",
"Age",
{ name: "Salary", options: { hint: "USD / year"}}
];
const options = {
textLabels: {
body: {
noMatch: '',
}
},
filter: true,
selectableRows: 'multiple',
selectableRowsOnClick: true,
selectableRowsHideCheckboxes: this.state.selectableRowsHideCheckboxes,
filterType: 'dropdown',
responsive: 'vertical',
rowsPerPage: 10,
rowsSelected: this.state.rowsSelected,
onRowSelectionChange: (rowsSelectedData, allRows, rowsSelected) => {
console.log(rowsSelectedData, allRows, rowsSelected);
this.setState({ rowsSelected: rowsSelected });
},
onRowsDelete: (rowsDeleted, newData) => {
console.log('rowsDeleted');
console.dir(rowsDeleted);
console.dir(newData);
if (rowsDeleted && rowsDeleted.data && rowsDeleted.data[0] && rowsDeleted.data[0].dataIndex === 0) {
window.alert('Can\'t delete this!');
return false;
};
this.setState({
data: newData,
rowsSelected: []
});
console.log(rowsDeleted, "were deleted!");
},
onChangePage: (numberRows) => {
console.log(numberRows);
},
onSearchChange: (searchText) => {
console.log(searchText);
},
onColumnSortChange: (column, direction) => {
console.log(column, direction);
},
onViewColumnsChange: (column, action) => {
console.log(column, action);
},
onFilterChange: (column, filters) => {
console.log(column, filters);
},
onCellClick: (cellData, cellMeta) => {
console.log(cellData, cellMeta);
},
onRowClick: (rowData, rowState) => {
console.log(rowData, rowState);
},
isRowSelectable: (dataIndex, selectedRows) => {
//prevents selection of any additional row after the third
if (selectedRows.data.length > 2 && selectedRows.data.filter(d => d.dataIndex === dataIndex).length === 0) return false;
//prevents selection of row with title "Attorney"
return data[dataIndex][1] != "Attorney";
},
selectableRowsHeader: false
};
return (
<>
<div>Note: Example code is setup to limit the number of selections to 3</div>
<FormGroup row>
<FormControlLabel
control={
<Switch
checked={this.state.selectableRowsHideCheckboxes}
onChange={this.updateSelectableRowsHideCheckboxes}
value="selectableRowsHideCheckboxes"
color="primary"
/>
}
label="Hide Checkboxes"
/>
</FormGroup>
<MUIDataTable title={"ACME Employee list"} data={this.state.data} columns={columns} options={options} />
</>
);
}
}
export default Example;