Package Exports
- mui-datagrid-full-edit
- mui-datagrid-full-edit/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mui-datagrid-full-edit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
mui-datagrid-full-edit
Overview
mui-datagrid-full-edit is a full functioned grid component with CRUD. But you can use it very simply with few props settings.
It is an easy way of @mui/x-data-grid. If you're thinking @mui/x-data-grid is good for your admin page but difficult a bit, mui-datagrid-full-edit would be the best choice for you.
You can experience a good react datagrid which is very simple to use but with full functions.
How to Use
Install
$ npm install --save mui-datagrid-full-editor
$ yarn add mui-datagrid-full-editSimple Usage
Here is an example of mui-datagrid-full-edit.
import FullEditDataGrid from "mui-datagrid-full-edit";
...
<FullEditDataGrid
columns={columns}
rows={rows}
onSaveRow={onSaveRow}
onDeleteRow={onDeleteRow}
createRowData={createRowData}
/>columns, rows, onSaveRow, onDeleteRow, createRowData is required props.
Props
columns(Array): Definition of grid header. It is same as@mui/x-data-gridand the documentation is here.Here is an example of
columns.const columns = [ { field: "id", headerName: "Id", width: 50, hide: true, align: "center", type: "number", editable: false }, { field: "title", headerName: "Title", width: 150, headerAlign: "center", type: "string", align: "center", editable: true }, { field: "dateCreated", headerName: "DateCreated", width: 150, headerAlign: "center", type: "date", editable: false, align: "center", renderCell: ({ value }) => moment(value).format("MM/DD/yyyy") } ];
rows(Array): data of the grid.Here is an example of
rows.let rows = [ { id: 1, title: "Cycle-Depot", dateCreated: "2023-03-09" }, { id: 2, title: "Top Lowrider", dateCreated: "2023-03-09" } ];
onSaveRow(Function): save action handler. When you do save action on the grid, this handler will be performed.The function is for server communication. If your saving on server is success, you need to update rows in the function to repaint the result of communication.
Here is an example of
onSaveRow.const [rows, setRows] = useState([]); ... /* id: id value of saved row updateRow: entire data or saved row rows: all entire old rows of grid oldRow: data of row before you update. */ const onSaveRow = (id, updatedRow, oldRow, oldRows) => { sellerController // server communication controller .saveRow(updatedRow) // send row data of the component .then((res) => { console.log("server saving success!"); const dbRow = res.data; // get exact row data of server from response setRows(oldRows.map((r) => (r.id === updatedRow.id ? { ...dbRow } : r))); // syncronize server and component }) .catch((err) => { console.log("server saving failed!"); setRows(oldRows); // update nothing on component by old rows }); };
onDeleteRow(Function): delete action handler. When you do delete action on the grid, this handler will be performed.The function is for server communication. If your deleting on server is success, you need to update rows in the function to repaint the result of communication.
Here is an example of
onDeleteRow.const [rows, setRows] = useState([]); ... /* id: id value of deleted row oldRow: data of row before you update. rows: all entire old rows of grid */ const onDeleteRow = (id, oldRow, oldRows) => { sellerController .deleteRow(id) .then((res) => { console.log("server deleting success!"); const dbRowId = res.data.id; // get exact deleted id of server from response setRows(oldRows.filter((r) => r.id !== dbRowId)); // remove row in component }) .catch((err) => { console.log("server deleting failed!"); setRows(oldRows); // update nothing on component by old rows }); };
createRowData(Function): function to generate data of new row. When you do create new row action, new row will be inserted with data from the function into the component. You can unset this prop. If you unset, new data will have only max id value by default. Here is an example ofcreateRowData./* rows: all entire old rows of grid */ const createRowData = (oldRows) => { const newId = Math.max(...rows.map((r) => (r.id ? r.id : 0) * 1)) + 1; return { id: newId, title: "Default Name" }; };
Advanced Usage
If you want more functions in the component, you can use any props of @mui/x-data-grid on this component element.
In this case, you need to know props of @mui/data-grid in more detail here.
Here is an example.
<DeleteOnlyDataGrid
columns={columns}
rows={rows}
onDeleteRow={onDeleteRow}
selectionModel={selectionModel} // this props comes from @mui/x-data-grid
loading={loading} // this props comes from @mui/x-data-grid
/>@mui/x-data-grid
@mui/x-data-grid is a data grid library for React users, created by the Material UI team. It features powerful filtering, sorting, and pagination functionality, as well as customizable column headers and cell rendering. Its API is extremely flexible, enabling users to implement various use cases without much difficulty. The library is built with performance in mind, making it an excellent choice for handling large datasets or complex UI scenarios.
The documentation of @mui/x-data-grid is here. While reading, please remember that it is @mui/x-data-grid, not @mui/x-data-grid-pro or @mui/x-data-grid-premium.
Examples
mui-datagrid-full-edit-sample1
Please be a contributor !
This module always should be integrated with the latest version of @mui/x-data-grid.
And it aims to be not only easy way of @mui/x-data-grid, but also good abilities of @mui/x-data-grid-pro and @mui/x-data-grid-premium.
So if you have a good idea. Please feel free to make a pull request and an issue.
GitHub Repository: https://github.com/prettyblueberry/mui-datagrid-full-edit