@mvp-react/react-datagrid-plain
TypeScript icon, indicating that this package has built-in type declarations

0.1.5 • Public • Published

A light datagrid build upon react-table-mui for React.

Installation

You should install react-datagrid-plain with npm or yarn:

npm install @mvp-react/react-datagrid-plain
or
yarn add @mvp-react/react-datagrid-plain

This command will download and install react-datagrid-plain

How it works

react-datagrid-plain uses:

react-datagrid-plain is designed to do all the paging and sorting for you. You only provide the onLoadData callback, that returns the data as a Promise<{data: any[], total: number}> (paging needs total to provide the maximal number pages).

Here is an example:

<DataGridPlain
  colDef={[
    { prop: "id", header: "Id" },
    { prop: "display_name", header: "Full name", sortable: true }
  ]}
  onLoadData={(page, rowsPerPage, orderBy, desc) =>
    fetch(url /* with querystring params */)
      .then(resp => resp.json())
      .then(resp => ({ data: resp.data, total: resp.total }))
  }
/>

Inside the onLoadData you can use whatever Http library you want. That way it is possible to append i.e. authorization tokens, custom http headers, ...

onLoadData can provide data from every source. Server, client, rest, GraphQL, ... react-datagrid-mui does not care.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.5
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.5
    0
  • 0.1.3
    0
  • 0.1.2
    0

Package Sidebar

Install

npm i @mvp-react/react-datagrid-plain

Weekly Downloads

0

Version

0.1.5

License

MIT

Unpacked Size

7.51 MB

Total Files

58

Last publish

Collaborators

  • reschandr