npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mui-datagrid-full-edit

v1.2.7

Published

A full functioned react MUI grid component with CRUD and an easy way of @mui/x-data-grid

Downloads

200

Readme

mui-datagrid-full-edit

NPM Version NPM Downloads npm fork Issues NPM License

Overview

mui-datagrid-full-edit is a fully functional grid component with create, read, update and delete (CRUD) functionality. However, you can use it very simply with just a few prop settings.

It provides an easy way to use @mui/x-data-grid. If you think @mui/x-data-grid would be good for your admin page but find it a bit difficult, mui-datagrid-full-edit would be the best choice.

It can offer you a great React data grid that is easy to use but comes with full functionality. It comes with features such as pagination, column hiding, CSV and Excel export options, and advanced filtering by default.

mui-datagrid-full-edit's toolbar has an export button to download grid data as an Excel file (*.xlsx). @mui/x-data-grid-pro and @mui/x-data-premium provide this feature for a license fee, but mui-datagrid-full-edit provides it at no cost.

The current version of mui-datagrid-full-edit depends on v6.0.4 of @mui/x-data-grid.

How to Use

Examples

Install

$ npm install mui-datagrid-full-edit

or

$ yarn add mui-datagrid-full-edit

Simple 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 are required props.

Props

  • columns (Array): Definition of grid header. It is the same as @mui/x-data-grid and 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: new Date("2023-03-09"),
      },
      {
        id: 2,
        title: "Top Lowrider",
        dateCreated: new Date("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 of createRowData.

    /*
        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" };
    };
  • noActionColumn (boolean): hide/show action column.

    /*
        a grid without an action column
    */
    <FullEditDataGrid
        columns={columns}
        rows={rows}
        onSaveRow={onSaveRow}
        onDeleteRow={onDeleteRow}
        createRowData={createRowData}
        noActionColumn        
    />

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.

Please Be A Contributor !

This module is always integrated with the latest version of @mui/x-data-grid. But @mui/x-data-grid might be updated and I might miss it. So I want your help.

And it aims to be not only easy way of @mui/x-data-grid, but also having useful 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

Contact

Its author's GitHub

Contact to the author