react-datagrid-plain as been merged into https://github.com/DCCS-IT-Business-Solutions/react-datagrid-mui
We stopped making ui-libary-agnostic components and doubled down on MaterialUI.
A light datagrid build upon react-table-mui for React.
You should install react-datagrid-plain with npm or yarn:
npm install @dccs/react-datagrid-plain
or
yarn add @dccs/react-datagrid-plain
This command will download and install react-datagrid-plain
react-datagrid-plain uses:
- @dccs/react-table-plain to display the table data
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.