@lminii/material-react-table-mcp 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (284) hide show
  1. package/README.md +68 -0
  2. package/data/MIGRATION.md +136 -0
  3. package/data/api.json +5379 -0
  4. package/data/examples/advanced.js +215 -0
  5. package/data/examples/advanced.tsx +309 -0
  6. package/data/examples/aggregation-and-grouping.js +116 -0
  7. package/data/examples/aggregation-and-grouping.tsx +153 -0
  8. package/data/examples/aggregation-multi.js +89 -0
  9. package/data/examples/aggregation-multi.tsx +105 -0
  10. package/data/examples/alternate-column-filtering.js +38 -0
  11. package/data/examples/alternate-column-filtering.tsx +49 -0
  12. package/data/examples/alternate-detail-panel.js +65 -0
  13. package/data/examples/alternate-detail-panel.tsx +81 -0
  14. package/data/examples/alternate-pagination.js +17 -0
  15. package/data/examples/alternate-pagination.tsx +23 -0
  16. package/data/examples/basic.js +86 -0
  17. package/data/examples/basic.tsx +109 -0
  18. package/data/examples/chart-detail-panel.js +69 -0
  19. package/data/examples/chart-detail-panel.tsx +89 -0
  20. package/data/examples/column-actions-space.js +34 -0
  21. package/data/examples/column-actions-space.tsx +44 -0
  22. package/data/examples/column-alignment.js +58 -0
  23. package/data/examples/column-alignment.tsx +70 -0
  24. package/data/examples/custom-column-actions.js +74 -0
  25. package/data/examples/custom-column-actions.tsx +109 -0
  26. package/data/examples/custom-column-filtering-ui.js +59 -0
  27. package/data/examples/custom-column-filtering-ui.tsx +89 -0
  28. package/data/examples/custom-headless.js +85 -0
  29. package/data/examples/custom-headless.tsx +125 -0
  30. package/data/examples/custom-top-toolbar.js +60 -0
  31. package/data/examples/custom-top-toolbar.tsx +88 -0
  32. package/data/examples/customize-display-columns.js +72 -0
  33. package/data/examples/customize-display-columns.tsx +85 -0
  34. package/data/examples/customize-filter-components.js +78 -0
  35. package/data/examples/customize-filter-components.tsx +101 -0
  36. package/data/examples/customize-filter-modes.js +59 -0
  37. package/data/examples/customize-filter-modes.tsx +73 -0
  38. package/data/examples/customize-filter-variants.js +98 -0
  39. package/data/examples/customize-filter-variants.tsx +116 -0
  40. package/data/examples/customize-global-filter-component.js +37 -0
  41. package/data/examples/customize-global-filter-component.tsx +52 -0
  42. package/data/examples/customize-remove-column-grouping.js +75 -0
  43. package/data/examples/customize-remove-column-grouping.tsx +94 -0
  44. package/data/examples/customize-row-selection.js +43 -0
  45. package/data/examples/customize-row-selection.tsx +54 -0
  46. package/data/examples/customize-table-styles.js +81 -0
  47. package/data/examples/customize-table-styles.tsx +100 -0
  48. package/data/examples/disable-column-actions.js +26 -0
  49. package/data/examples/disable-column-actions.tsx +37 -0
  50. package/data/examples/disable-column-hiding.js +74 -0
  51. package/data/examples/disable-column-hiding.tsx +90 -0
  52. package/data/examples/disable-density-toggle.js +37 -0
  53. package/data/examples/disable-density-toggle.tsx +49 -0
  54. package/data/examples/dynamic-columns.js +124 -0
  55. package/data/examples/dynamic-columns.tsx +189 -0
  56. package/data/examples/editing-crud-cell.js +288 -0
  57. package/data/examples/editing-crud-cell.tsx +377 -0
  58. package/data/examples/editing-crud-modal.js +275 -0
  59. package/data/examples/editing-crud-modal.tsx +370 -0
  60. package/data/examples/editing-crud-row.js +255 -0
  61. package/data/examples/editing-crud-row.tsx +333 -0
  62. package/data/examples/editing-crud-table.js +280 -0
  63. package/data/examples/editing-crud-table.tsx +369 -0
  64. package/data/examples/editing-crud-tree.js +328 -0
  65. package/data/examples/editing-crud-tree.tsx +416 -0
  66. package/data/examples/enable-cell-actions.js +52 -0
  67. package/data/examples/enable-cell-actions.tsx +76 -0
  68. package/data/examples/enable-click-to-copy.js +33 -0
  69. package/data/examples/enable-click-to-copy.tsx +39 -0
  70. package/data/examples/enable-column-grouping.js +69 -0
  71. package/data/examples/enable-column-grouping.tsx +120 -0
  72. package/data/examples/enable-column-ordering.js +37 -0
  73. package/data/examples/enable-column-ordering.tsx +48 -0
  74. package/data/examples/enable-column-pinning.js +58 -0
  75. package/data/examples/enable-column-pinning.tsx +69 -0
  76. package/data/examples/enable-column-resizing.js +45 -0
  77. package/data/examples/enable-column-resizing.tsx +56 -0
  78. package/data/examples/enable-column-virtualization.js +19 -0
  79. package/data/examples/enable-column-virtualization.tsx +27 -0
  80. package/data/examples/enable-detail-panel-conditionally.js +61 -0
  81. package/data/examples/enable-detail-panel-conditionally.tsx +78 -0
  82. package/data/examples/enable-detail-panel-virtualized.js +64 -0
  83. package/data/examples/enable-detail-panel-virtualized.tsx +80 -0
  84. package/data/examples/enable-expanding-tree.js +87 -0
  85. package/data/examples/enable-expanding-tree.tsx +110 -0
  86. package/data/examples/enable-filter-facet-values.js +52 -0
  87. package/data/examples/enable-filter-facet-values.tsx +65 -0
  88. package/data/examples/enable-row-dragging.js +102 -0
  89. package/data/examples/enable-row-dragging.tsx +137 -0
  90. package/data/examples/enable-row-numbers-original.js +37 -0
  91. package/data/examples/enable-row-numbers-original.tsx +48 -0
  92. package/data/examples/enable-row-numbers-static.js +37 -0
  93. package/data/examples/enable-row-numbers-static.tsx +48 -0
  94. package/data/examples/enable-row-ordering.js +40 -0
  95. package/data/examples/enable-row-ordering.tsx +57 -0
  96. package/data/examples/enable-row-pinning-select.js +64 -0
  97. package/data/examples/enable-row-pinning-select.tsx +76 -0
  98. package/data/examples/enable-row-pinning-static.js +39 -0
  99. package/data/examples/enable-row-pinning-static.tsx +50 -0
  100. package/data/examples/enable-row-pinning-sticky.js +57 -0
  101. package/data/examples/enable-row-pinning-sticky.tsx +69 -0
  102. package/data/examples/enable-row-selection.js +71 -0
  103. package/data/examples/enable-row-selection.tsx +96 -0
  104. package/data/examples/enable-row-virtualization.js +85 -0
  105. package/data/examples/enable-row-virtualization.tsx +101 -0
  106. package/data/examples/enable-sticky-header.js +47 -0
  107. package/data/examples/enable-sticky-header.tsx +59 -0
  108. package/data/examples/expanding-tree-expanded.js +98 -0
  109. package/data/examples/expanding-tree-expanded.tsx +121 -0
  110. package/data/examples/expanding-tree-flat-parse.js +102 -0
  111. package/data/examples/expanding-tree-flat-parse.tsx +125 -0
  112. package/data/examples/expanding-tree-root-expanded.js +120 -0
  113. package/data/examples/expanding-tree-root-expanded.tsx +151 -0
  114. package/data/examples/export-to-csv.js +84 -0
  115. package/data/examples/export-to-csv.tsx +114 -0
  116. package/data/examples/export-to-pdf.js +76 -0
  117. package/data/examples/export-to-pdf.tsx +104 -0
  118. package/data/examples/external-toolbar.js +82 -0
  119. package/data/examples/external-toolbar.tsx +108 -0
  120. package/data/examples/font-awesome-icons.js +62 -0
  121. package/data/examples/font-awesome-icons.tsx +106 -0
  122. package/data/examples/infinite-scrolling.js +137 -0
  123. package/data/examples/infinite-scrolling.tsx +208 -0
  124. package/data/examples/lazy-detail-panel.js +164 -0
  125. package/data/examples/lazy-detail-panel.tsx +262 -0
  126. package/data/examples/lazy-sub-rows.js +118 -0
  127. package/data/examples/lazy-sub-rows.tsx +190 -0
  128. package/data/examples/linear-progress.js +48 -0
  129. package/data/examples/linear-progress.tsx +66 -0
  130. package/data/examples/loading.js +34 -0
  131. package/data/examples/loading.tsx +50 -0
  132. package/data/examples/localization-i18n-ar.js +40 -0
  133. package/data/examples/localization-i18n-ar.tsx +65 -0
  134. package/data/examples/localization-i18n-az.js +38 -0
  135. package/data/examples/localization-i18n-az.tsx +60 -0
  136. package/data/examples/localization-i18n-bg.js +38 -0
  137. package/data/examples/localization-i18n-bg.tsx +60 -0
  138. package/data/examples/localization-i18n-cs.js +38 -0
  139. package/data/examples/localization-i18n-cs.tsx +60 -0
  140. package/data/examples/localization-i18n-da.js +38 -0
  141. package/data/examples/localization-i18n-da.tsx +60 -0
  142. package/data/examples/localization-i18n-de.js +38 -0
  143. package/data/examples/localization-i18n-de.tsx +60 -0
  144. package/data/examples/localization-i18n-el.js +38 -0
  145. package/data/examples/localization-i18n-el.tsx +60 -0
  146. package/data/examples/localization-i18n-en.js +38 -0
  147. package/data/examples/localization-i18n-en.tsx +60 -0
  148. package/data/examples/localization-i18n-es.js +38 -0
  149. package/data/examples/localization-i18n-es.tsx +60 -0
  150. package/data/examples/localization-i18n-et.js +38 -0
  151. package/data/examples/localization-i18n-et.tsx +60 -0
  152. package/data/examples/localization-i18n-fa.js +40 -0
  153. package/data/examples/localization-i18n-fa.tsx +66 -0
  154. package/data/examples/localization-i18n-fi.js +38 -0
  155. package/data/examples/localization-i18n-fi.tsx +60 -0
  156. package/data/examples/localization-i18n-fr.js +38 -0
  157. package/data/examples/localization-i18n-fr.tsx +60 -0
  158. package/data/examples/localization-i18n-he.js +40 -0
  159. package/data/examples/localization-i18n-he.tsx +66 -0
  160. package/data/examples/localization-i18n-hr.js +38 -0
  161. package/data/examples/localization-i18n-hr.tsx +60 -0
  162. package/data/examples/localization-i18n-hu.js +38 -0
  163. package/data/examples/localization-i18n-hu.tsx +60 -0
  164. package/data/examples/localization-i18n-hy.js +40 -0
  165. package/data/examples/localization-i18n-hy.tsx +65 -0
  166. package/data/examples/localization-i18n-id.js +38 -0
  167. package/data/examples/localization-i18n-id.tsx +60 -0
  168. package/data/examples/localization-i18n-it.js +38 -0
  169. package/data/examples/localization-i18n-it.tsx +60 -0
  170. package/data/examples/localization-i18n-ja.js +38 -0
  171. package/data/examples/localization-i18n-ja.tsx +60 -0
  172. package/data/examples/localization-i18n-ko.js +38 -0
  173. package/data/examples/localization-i18n-ko.tsx +60 -0
  174. package/data/examples/localization-i18n-nl.js +38 -0
  175. package/data/examples/localization-i18n-nl.tsx +60 -0
  176. package/data/examples/localization-i18n-no.js +38 -0
  177. package/data/examples/localization-i18n-no.tsx +60 -0
  178. package/data/examples/localization-i18n-np.js +38 -0
  179. package/data/examples/localization-i18n-np.tsx +60 -0
  180. package/data/examples/localization-i18n-pl.js +38 -0
  181. package/data/examples/localization-i18n-pl.tsx +60 -0
  182. package/data/examples/localization-i18n-pt-BR.js +38 -0
  183. package/data/examples/localization-i18n-pt-BR.tsx +60 -0
  184. package/data/examples/localization-i18n-pt.js +38 -0
  185. package/data/examples/localization-i18n-pt.tsx +60 -0
  186. package/data/examples/localization-i18n-ro.js +38 -0
  187. package/data/examples/localization-i18n-ro.tsx +60 -0
  188. package/data/examples/localization-i18n-ru.js +38 -0
  189. package/data/examples/localization-i18n-ru.tsx +60 -0
  190. package/data/examples/localization-i18n-sk.js +38 -0
  191. package/data/examples/localization-i18n-sk.tsx +60 -0
  192. package/data/examples/localization-i18n-sr-Cyrl-RS.js +38 -0
  193. package/data/examples/localization-i18n-sr-Cyrl-RS.tsx +60 -0
  194. package/data/examples/localization-i18n-sr-Latn-RS.js +38 -0
  195. package/data/examples/localization-i18n-sr-Latn-RS.tsx +60 -0
  196. package/data/examples/localization-i18n-sv.js +38 -0
  197. package/data/examples/localization-i18n-sv.tsx +60 -0
  198. package/data/examples/localization-i18n-tr.js +38 -0
  199. package/data/examples/localization-i18n-tr.tsx +60 -0
  200. package/data/examples/localization-i18n-uk.js +38 -0
  201. package/data/examples/localization-i18n-uk.tsx +60 -0
  202. package/data/examples/localization-i18n-vi.js +38 -0
  203. package/data/examples/localization-i18n-vi.tsx +60 -0
  204. package/data/examples/localization-i18n-zh-hans.js +38 -0
  205. package/data/examples/localization-i18n-zh-hans.tsx +60 -0
  206. package/data/examples/localization-i18n-zh-hant.js +38 -0
  207. package/data/examples/localization-i18n-zh-hant.tsx +60 -0
  208. package/data/examples/manual-selection.js +81 -0
  209. package/data/examples/manual-selection.tsx +105 -0
  210. package/data/examples/minimal.js +66 -0
  211. package/data/examples/minimal.tsx +78 -0
  212. package/data/examples/mui-theme.js +109 -0
  213. package/data/examples/mui-theme.tsx +136 -0
  214. package/data/examples/multi-sorting.js +48 -0
  215. package/data/examples/multi-sorting.tsx +58 -0
  216. package/data/examples/persistent-state.js +126 -0
  217. package/data/examples/persistent-state.tsx +184 -0
  218. package/data/examples/react-query.js +122 -0
  219. package/data/examples/react-query.tsx +182 -0
  220. package/data/examples/remote.js +113 -0
  221. package/data/examples/remote.tsx +150 -0
  222. package/data/examples/row-actions-buttons.js +54 -0
  223. package/data/examples/row-actions-buttons.tsx +89 -0
  224. package/data/examples/row-actions-menu-items.js +36 -0
  225. package/data/examples/row-actions-menu-items.tsx +64 -0
  226. package/data/examples/single-row-selection.js +74 -0
  227. package/data/examples/single-row-selection.tsx +98 -0
  228. package/data/examples/virtualized.js +122 -0
  229. package/data/examples/virtualized.tsx +138 -0
  230. package/data/guides/accessibility.md +119 -0
  231. package/data/guides/aggregation.md +210 -0
  232. package/data/guides/async-loading.md +132 -0
  233. package/data/guides/best-practices.md +363 -0
  234. package/data/guides/cell-actions.md +139 -0
  235. package/data/guides/click-to-copy.md +67 -0
  236. package/data/guides/column-actions.md +69 -0
  237. package/data/guides/column-filtering.md +366 -0
  238. package/data/guides/column-grouping.md +192 -0
  239. package/data/guides/column-hiding.md +133 -0
  240. package/data/guides/column-ordering-dnd.md +99 -0
  241. package/data/guides/column-pinning.md +72 -0
  242. package/data/guides/column-resizing.md +157 -0
  243. package/data/guides/column-size.md +162 -0
  244. package/data/guides/customize-components.md +395 -0
  245. package/data/guides/customize-icons.md +35 -0
  246. package/data/guides/data-columns.md +292 -0
  247. package/data/guides/density-toggle.md +46 -0
  248. package/data/guides/detail-panel.md +195 -0
  249. package/data/guides/display-columns.md +135 -0
  250. package/data/guides/editing.md +367 -0
  251. package/data/guides/expanding-sub-rows.md +194 -0
  252. package/data/guides/full-screen-toggle.md +63 -0
  253. package/data/guides/global-filtering.md +237 -0
  254. package/data/guides/localization.md +57 -0
  255. package/data/guides/memoization.md +157 -0
  256. package/data/guides/pagination.md +171 -0
  257. package/data/guides/row-actions.md +116 -0
  258. package/data/guides/row-numbers.md +24 -0
  259. package/data/guides/row-ordering-dnd.md +51 -0
  260. package/data/guides/row-pinning.md +96 -0
  261. package/data/guides/row-selection.md +237 -0
  262. package/data/guides/sorting.md +190 -0
  263. package/data/guides/state-management.md +165 -0
  264. package/data/guides/sticky-header.md +41 -0
  265. package/data/guides/table-event-listeners.md +103 -0
  266. package/data/guides/toolbar-customization.md +251 -0
  267. package/data/guides/virtualization.md +183 -0
  268. package/data/index.json +1930 -0
  269. package/data/reference/mrt-components.md +183 -0
  270. package/data/reference/mrt-hooks.md +125 -0
  271. package/data/skills/README.md +81 -0
  272. package/data/skills/composable-components/SKILL.md +189 -0
  273. package/data/skills/customization/SKILL.md +190 -0
  274. package/data/skills/drag-and-drop-ordering/SKILL.md +227 -0
  275. package/data/skills/editing/SKILL.md +243 -0
  276. package/data/skills/filtering/SKILL.md +213 -0
  277. package/data/skills/getting-started/SKILL.md +213 -0
  278. package/data/skills/localization/SKILL.md +182 -0
  279. package/data/skills/migrate-v3-to-v4/SKILL.md +161 -0
  280. package/data/skills/state-and-server-data/SKILL.md +200 -0
  281. package/data/skills/virtualization/SKILL.md +203 -0
  282. package/dist/data.js +159 -0
  283. package/dist/index.js +244 -0
  284. package/package.json +50 -0
@@ -0,0 +1,109 @@
1
+ import { useMemo } from 'react';
2
+ import {
3
+ MaterialReactTable,
4
+ useMaterialReactTable,
5
+ type MRT_ColumnDef,
6
+ } from 'material-react-table';
7
+ import { Divider, MenuItem } from '@mui/material';
8
+ import { data, type Person } from './makeData';
9
+
10
+ const Example = () => {
11
+ const columns = useMemo<MRT_ColumnDef<Person>[]>(
12
+ () => [
13
+ {
14
+ accessorKey: 'id',
15
+ header: 'ID',
16
+ renderColumnActionsMenuItems: ({ closeMenu }) => [
17
+ <MenuItem
18
+ key={1}
19
+ onClick={() => {
20
+ console.log('Item 1 clicked');
21
+ closeMenu();
22
+ }}
23
+ >
24
+ Item 1
25
+ </MenuItem>,
26
+ <MenuItem
27
+ key={2}
28
+ onClick={() => {
29
+ console.log('Item 2 clicked');
30
+ closeMenu();
31
+ }}
32
+ >
33
+ Item 2
34
+ </MenuItem>,
35
+ ],
36
+ },
37
+ {
38
+ accessorKey: 'firstName',
39
+ header: 'First Name',
40
+ renderColumnActionsMenuItems: ({
41
+ closeMenu,
42
+ internalColumnMenuItems,
43
+ }) => [
44
+ ...internalColumnMenuItems,
45
+ <Divider key="divider-1" />,
46
+ <MenuItem
47
+ key={'item-1'}
48
+ onClick={() => {
49
+ console.log('Item 1 clicked');
50
+ closeMenu();
51
+ }}
52
+ >
53
+ Item 1
54
+ </MenuItem>,
55
+ <MenuItem
56
+ key={'item-2'}
57
+ onClick={() => {
58
+ console.log('Item 2 clicked');
59
+ closeMenu();
60
+ }}
61
+ >
62
+ Item 2
63
+ </MenuItem>,
64
+ ],
65
+ },
66
+ {
67
+ accessorKey: 'lastName',
68
+ header: 'Last Name',
69
+ renderColumnActionsMenuItems: ({
70
+ closeMenu,
71
+ internalColumnMenuItems,
72
+ }) => [
73
+ <MenuItem
74
+ key={'item-1'}
75
+ onClick={() => {
76
+ console.log('Item 1 clicked');
77
+ closeMenu();
78
+ }}
79
+ >
80
+ Item 1
81
+ </MenuItem>,
82
+ <MenuItem
83
+ key={'item-2'}
84
+ onClick={() => {
85
+ console.log('Item 2 clicked');
86
+ closeMenu();
87
+ }}
88
+ >
89
+ Item 2
90
+ </MenuItem>,
91
+ <Divider key="divider-1" />,
92
+ ...internalColumnMenuItems.splice(0, 3),
93
+ ],
94
+ },
95
+ ],
96
+ [],
97
+ );
98
+
99
+ const table = useMaterialReactTable({
100
+ columns,
101
+ data,
102
+ //or you could define the menu items here for all columns
103
+ // renderColumnActionsMenuItems: ({ closeMenu }) => [],
104
+ });
105
+
106
+ return <MaterialReactTable table={table} />;
107
+ };
108
+
109
+ export default Example;
@@ -0,0 +1,59 @@
1
+ import { useMemo } from 'react';
2
+ import { useMaterialReactTable, MRT_TableContainer, MRT_TableHeadCellFilterContainer, } from 'material-react-table';
3
+ import { data } from './makeData';
4
+ import { Paper, Stack, useMediaQuery } from '@mui/material';
5
+ const Example = () => {
6
+ const isMobile = useMediaQuery('(max-width: 1000px)');
7
+ const columns = useMemo(() => [
8
+ {
9
+ accessorKey: 'id',
10
+ header: 'ID',
11
+ },
12
+ {
13
+ accessorKey: 'firstName',
14
+ header: 'First Name',
15
+ filterVariant: 'autocomplete',
16
+ },
17
+ {
18
+ accessorKey: 'lastName',
19
+ header: 'Last Name',
20
+ },
21
+ {
22
+ accessorKey: 'gender',
23
+ header: 'Gender',
24
+ filterFn: 'equals',
25
+ filterSelectOptions: ['Male', 'Female', 'Other'],
26
+ filterVariant: 'select',
27
+ },
28
+ {
29
+ accessorKey: 'age',
30
+ header: 'Age',
31
+ filterVariant: 'range',
32
+ },
33
+ ], []);
34
+ const table = useMaterialReactTable({
35
+ columns,
36
+ data,
37
+ columnFilterDisplayMode: 'custom', //we will render our own filtering UI
38
+ enableFacetedValues: true,
39
+ muiFilterTextFieldProps: ({ column }) => ({
40
+ label: `Filter by ${column.columnDef.header}`,
41
+ }),
42
+ });
43
+ return (<Stack direction={isMobile ? 'column-reverse' : 'row'} sx={{
44
+ gap: '8px',
45
+ }}>
46
+ <MRT_TableContainer table={table}/>
47
+ <Paper>
48
+ <Stack sx={{
49
+ p: '8px',
50
+ gap: '8px',
51
+ }}>
52
+ {table
53
+ .getLeafHeaders()
54
+ .map((header) => header.column.getCanFilter() && (<MRT_TableHeadCellFilterContainer key={header.id} header={header} table={table} in/>))}
55
+ </Stack>
56
+ </Paper>
57
+ </Stack>);
58
+ };
59
+ export default Example;
@@ -0,0 +1,89 @@
1
+ import { useMemo } from 'react';
2
+ import {
3
+ useMaterialReactTable,
4
+ type MRT_ColumnDef,
5
+ MRT_TableContainer,
6
+ MRT_TableHeadCellFilterContainer,
7
+ } from 'material-react-table';
8
+ import { data, type Person } from './makeData';
9
+ import { Paper, Stack, useMediaQuery } from '@mui/material';
10
+
11
+ const Example = () => {
12
+ const isMobile = useMediaQuery('(max-width: 1000px)');
13
+
14
+ const columns = useMemo<MRT_ColumnDef<Person>[]>(
15
+ () => [
16
+ {
17
+ accessorKey: 'id',
18
+ header: 'ID',
19
+ },
20
+ {
21
+ accessorKey: 'firstName',
22
+ header: 'First Name',
23
+ filterVariant: 'autocomplete',
24
+ },
25
+ {
26
+ accessorKey: 'lastName',
27
+ header: 'Last Name',
28
+ },
29
+ {
30
+ accessorKey: 'gender',
31
+ header: 'Gender',
32
+ filterFn: 'equals',
33
+ filterSelectOptions: ['Male', 'Female', 'Other'],
34
+ filterVariant: 'select',
35
+ },
36
+ {
37
+ accessorKey: 'age',
38
+ header: 'Age',
39
+ filterVariant: 'range',
40
+ },
41
+ ],
42
+ [],
43
+ );
44
+
45
+ const table = useMaterialReactTable({
46
+ columns,
47
+ data,
48
+ columnFilterDisplayMode: 'custom', //we will render our own filtering UI
49
+ enableFacetedValues: true,
50
+ muiFilterTextFieldProps: ({ column }) => ({
51
+ label: `Filter by ${column.columnDef.header}`,
52
+ }),
53
+ });
54
+
55
+ return (
56
+ <Stack
57
+ direction={isMobile ? 'column-reverse' : 'row'}
58
+ sx={{
59
+ gap: '8px',
60
+ }}
61
+ >
62
+ <MRT_TableContainer table={table} />
63
+ <Paper>
64
+ <Stack
65
+ sx={{
66
+ p: '8px',
67
+ gap: '8px',
68
+ }}
69
+ >
70
+ {table
71
+ .getLeafHeaders()
72
+ .map(
73
+ (header) =>
74
+ header.column.getCanFilter() && (
75
+ <MRT_TableHeadCellFilterContainer
76
+ key={header.id}
77
+ header={header}
78
+ table={table}
79
+ in
80
+ />
81
+ ),
82
+ )}
83
+ </Stack>
84
+ </Paper>
85
+ </Stack>
86
+ );
87
+ };
88
+
89
+ export default Example;
@@ -0,0 +1,85 @@
1
+ import { MRT_GlobalFilterTextField, MRT_TableBodyCellValue, MRT_TablePagination, MRT_ToolbarAlertBanner, flexRender, useMaterialReactTable, } from 'material-react-table';
2
+ import { Box, Stack, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Typography, } from '@mui/material';
3
+ import { data } from './makeData';
4
+ const columns = [
5
+ {
6
+ accessorKey: 'name.firstName',
7
+ header: 'First Name',
8
+ },
9
+ {
10
+ accessorKey: 'name.lastName',
11
+ header: 'Last Name',
12
+ },
13
+ {
14
+ accessorKey: 'address',
15
+ header: 'Address',
16
+ },
17
+ {
18
+ accessorKey: 'city',
19
+ header: 'City',
20
+ },
21
+ {
22
+ accessorKey: 'state',
23
+ header: 'State',
24
+ },
25
+ ];
26
+ const Example = () => {
27
+ const table = useMaterialReactTable({
28
+ columns,
29
+ data, //must be memoized or stable (useState, useMemo, defined outside of this component, etc.)
30
+ //MRT display columns can still work, optionally override cell renders with `displayColumnDefOptions`
31
+ enableRowSelection: true,
32
+ initialState: {
33
+ pagination: { pageSize: 5, pageIndex: 0 },
34
+ showGlobalFilter: true,
35
+ },
36
+ //customize the MRT components
37
+ muiPaginationProps: {
38
+ rowsPerPageOptions: [5, 10, 15],
39
+ variant: 'outlined',
40
+ },
41
+ paginationDisplayMode: 'pages',
42
+ });
43
+ return (<Stack sx={{ m: '2rem 0' }}>
44
+ <Typography variant="h4">My Custom Headless Table</Typography>
45
+ <Box sx={{
46
+ display: 'flex',
47
+ justifyContent: 'space-between',
48
+ alignItems: 'center',
49
+ }}>
50
+ {/**
51
+ * Use MRT components along side your own markup.
52
+ * They just need the `table` instance passed as a prop to work!
53
+ */}
54
+ <MRT_GlobalFilterTextField table={table}/>
55
+ <MRT_TablePagination table={table}/>
56
+ </Box>
57
+ {/* Using Vanilla Material-UI Table components here */}
58
+ <TableContainer>
59
+ <Table>
60
+ {/* Use your own markup, customize however you want using the power of TanStack Table */}
61
+ <TableHead>
62
+ {table.getHeaderGroups().map((headerGroup) => (<TableRow key={headerGroup.id}>
63
+ {headerGroup.headers.map((header) => (<TableCell align="center" variant="head" key={header.id}>
64
+ {header.isPlaceholder
65
+ ? null
66
+ : flexRender(header.column.columnDef.Header ??
67
+ header.column.columnDef.header, header.getContext())}
68
+ </TableCell>))}
69
+ </TableRow>))}
70
+ </TableHead>
71
+ <TableBody>
72
+ {table.getRowModel().rows.map((row, rowIndex) => (<TableRow key={row.id} selected={row.getIsSelected()}>
73
+ {row.getVisibleCells().map((cell, _columnIndex) => (<TableCell align="center" variant="body" key={cell.id}>
74
+ {/* Use MRT's cell renderer that provides better logic than flexRender */}
75
+ <MRT_TableBodyCellValue cell={cell} table={table} staticRowIndex={rowIndex} //just for batch row selection to work
76
+ />
77
+ </TableCell>))}
78
+ </TableRow>))}
79
+ </TableBody>
80
+ </Table>
81
+ </TableContainer>
82
+ <MRT_ToolbarAlertBanner stackAlertBanner table={table}/>
83
+ </Stack>);
84
+ };
85
+ export default Example;
@@ -0,0 +1,125 @@
1
+ import {
2
+ MRT_GlobalFilterTextField,
3
+ MRT_TableBodyCellValue,
4
+ MRT_TablePagination,
5
+ MRT_ToolbarAlertBanner,
6
+ flexRender,
7
+ type MRT_ColumnDef,
8
+ useMaterialReactTable,
9
+ } from 'material-react-table';
10
+ import {
11
+ Box,
12
+ Stack,
13
+ Table,
14
+ TableBody,
15
+ TableCell,
16
+ TableContainer,
17
+ TableHead,
18
+ TableRow,
19
+ Typography,
20
+ } from '@mui/material';
21
+ import { type Person, data } from './makeData';
22
+
23
+ const columns: MRT_ColumnDef<Person>[] = [
24
+ {
25
+ accessorKey: 'name.firstName',
26
+ header: 'First Name',
27
+ },
28
+ {
29
+ accessorKey: 'name.lastName',
30
+ header: 'Last Name',
31
+ },
32
+ {
33
+ accessorKey: 'address',
34
+ header: 'Address',
35
+ },
36
+ {
37
+ accessorKey: 'city',
38
+ header: 'City',
39
+ },
40
+ {
41
+ accessorKey: 'state',
42
+ header: 'State',
43
+ },
44
+ ];
45
+
46
+ const Example = () => {
47
+ const table = useMaterialReactTable({
48
+ columns,
49
+ data, //must be memoized or stable (useState, useMemo, defined outside of this component, etc.)
50
+ //MRT display columns can still work, optionally override cell renders with `displayColumnDefOptions`
51
+ enableRowSelection: true,
52
+ initialState: {
53
+ pagination: { pageSize: 5, pageIndex: 0 },
54
+ showGlobalFilter: true,
55
+ },
56
+ //customize the MRT components
57
+ muiPaginationProps: {
58
+ rowsPerPageOptions: [5, 10, 15],
59
+ variant: 'outlined',
60
+ },
61
+ paginationDisplayMode: 'pages',
62
+ });
63
+
64
+ return (
65
+ <Stack sx={{ m: '2rem 0' }}>
66
+ <Typography variant="h4">My Custom Headless Table</Typography>
67
+ <Box
68
+ sx={{
69
+ display: 'flex',
70
+ justifyContent: 'space-between',
71
+ alignItems: 'center',
72
+ }}
73
+ >
74
+ {/**
75
+ * Use MRT components along side your own markup.
76
+ * They just need the `table` instance passed as a prop to work!
77
+ */}
78
+ <MRT_GlobalFilterTextField table={table} />
79
+ <MRT_TablePagination table={table} />
80
+ </Box>
81
+ {/* Using Vanilla Material-UI Table components here */}
82
+ <TableContainer>
83
+ <Table>
84
+ {/* Use your own markup, customize however you want using the power of TanStack Table */}
85
+ <TableHead>
86
+ {table.getHeaderGroups().map((headerGroup) => (
87
+ <TableRow key={headerGroup.id}>
88
+ {headerGroup.headers.map((header) => (
89
+ <TableCell align="center" variant="head" key={header.id}>
90
+ {header.isPlaceholder
91
+ ? null
92
+ : flexRender(
93
+ header.column.columnDef.Header ??
94
+ header.column.columnDef.header,
95
+ header.getContext(),
96
+ )}
97
+ </TableCell>
98
+ ))}
99
+ </TableRow>
100
+ ))}
101
+ </TableHead>
102
+ <TableBody>
103
+ {table.getRowModel().rows.map((row, rowIndex) => (
104
+ <TableRow key={row.id} selected={row.getIsSelected()}>
105
+ {row.getVisibleCells().map((cell, _columnIndex) => (
106
+ <TableCell align="center" variant="body" key={cell.id}>
107
+ {/* Use MRT's cell renderer that provides better logic than flexRender */}
108
+ <MRT_TableBodyCellValue
109
+ cell={cell}
110
+ table={table}
111
+ staticRowIndex={rowIndex} //just for batch row selection to work
112
+ />
113
+ </TableCell>
114
+ ))}
115
+ </TableRow>
116
+ ))}
117
+ </TableBody>
118
+ </Table>
119
+ </TableContainer>
120
+ <MRT_ToolbarAlertBanner stackAlertBanner table={table} />
121
+ </Stack>
122
+ );
123
+ };
124
+
125
+ export default Example;
@@ -0,0 +1,60 @@
1
+ import { useMemo } from 'react';
2
+ import { MaterialReactTable, MRT_ToggleDensePaddingButton, MRT_ToggleFullScreenButton, useMaterialReactTable, } from 'material-react-table';
3
+ import { Box, Button, IconButton } from '@mui/material';
4
+ import PrintIcon from '@mui/icons-material/Print';
5
+ import { data } from './makeData';
6
+ const Example = () => {
7
+ const columns = useMemo(
8
+ //column definitions...
9
+ () => [
10
+ {
11
+ accessorKey: 'firstName',
12
+ header: 'First Name',
13
+ },
14
+ {
15
+ accessorKey: 'lastName',
16
+ header: 'Last Name',
17
+ },
18
+ {
19
+ accessorKey: 'age',
20
+ header: 'Age',
21
+ },
22
+ {
23
+ accessorKey: 'salary',
24
+ header: 'Salary',
25
+ },
26
+ ], []);
27
+ const table = useMaterialReactTable({
28
+ columns,
29
+ data,
30
+ enableRowSelection: true,
31
+ positionToolbarAlertBanner: 'bottom', //show selected rows count on bottom toolbar
32
+ //add custom action buttons to top-left of top toolbar
33
+ renderTopToolbarCustomActions: ({ table }) => (<Box sx={{ display: 'flex', gap: '1rem', p: '4px' }}>
34
+ <Button color="secondary" onClick={() => {
35
+ alert('Create New Account');
36
+ }} variant="contained">
37
+ Create Account
38
+ </Button>
39
+ <Button color="error" disabled={!table.getIsSomeRowsSelected()} onClick={() => {
40
+ alert('Delete Selected Accounts');
41
+ }} variant="contained">
42
+ Delete Selected Accounts
43
+ </Button>
44
+ </Box>),
45
+ //customize built-in buttons in the top-right of top toolbar
46
+ renderToolbarInternalActions: ({ table }) => (<Box>
47
+ {/* add custom button to print table */}
48
+ <IconButton onClick={() => {
49
+ window.print();
50
+ }}>
51
+ <PrintIcon />
52
+ </IconButton>
53
+ {/* along-side built-in buttons in whatever order you want them */}
54
+ <MRT_ToggleDensePaddingButton table={table}/>
55
+ <MRT_ToggleFullScreenButton table={table}/>
56
+ </Box>),
57
+ });
58
+ return <MaterialReactTable table={table}/>;
59
+ };
60
+ export default Example;
@@ -0,0 +1,88 @@
1
+ import { useMemo } from 'react';
2
+ import {
3
+ MaterialReactTable,
4
+ type MRT_ColumnDef,
5
+ MRT_ToggleDensePaddingButton,
6
+ MRT_ToggleFullScreenButton,
7
+ useMaterialReactTable,
8
+ } from 'material-react-table';
9
+ import { Box, Button, IconButton } from '@mui/material';
10
+ import PrintIcon from '@mui/icons-material/Print';
11
+ import { data, type Person } from './makeData';
12
+
13
+ const Example = () => {
14
+ const columns = useMemo<MRT_ColumnDef<Person>[]>(
15
+ //column definitions...
16
+ () => [
17
+ {
18
+ accessorKey: 'firstName',
19
+ header: 'First Name',
20
+ },
21
+ {
22
+ accessorKey: 'lastName',
23
+ header: 'Last Name',
24
+ },
25
+ {
26
+ accessorKey: 'age',
27
+ header: 'Age',
28
+ },
29
+ {
30
+ accessorKey: 'salary',
31
+ header: 'Salary',
32
+ },
33
+ ],
34
+ [],
35
+ //end
36
+ );
37
+
38
+ const table = useMaterialReactTable({
39
+ columns,
40
+ data,
41
+ enableRowSelection: true,
42
+ positionToolbarAlertBanner: 'bottom', //show selected rows count on bottom toolbar
43
+ //add custom action buttons to top-left of top toolbar
44
+ renderTopToolbarCustomActions: ({ table }) => (
45
+ <Box sx={{ display: 'flex', gap: '1rem', p: '4px' }}>
46
+ <Button
47
+ color="secondary"
48
+ onClick={() => {
49
+ alert('Create New Account');
50
+ }}
51
+ variant="contained"
52
+ >
53
+ Create Account
54
+ </Button>
55
+ <Button
56
+ color="error"
57
+ disabled={!table.getIsSomeRowsSelected()}
58
+ onClick={() => {
59
+ alert('Delete Selected Accounts');
60
+ }}
61
+ variant="contained"
62
+ >
63
+ Delete Selected Accounts
64
+ </Button>
65
+ </Box>
66
+ ),
67
+ //customize built-in buttons in the top-right of top toolbar
68
+ renderToolbarInternalActions: ({ table }) => (
69
+ <Box>
70
+ {/* add custom button to print table */}
71
+ <IconButton
72
+ onClick={() => {
73
+ window.print();
74
+ }}
75
+ >
76
+ <PrintIcon />
77
+ </IconButton>
78
+ {/* along-side built-in buttons in whatever order you want them */}
79
+ <MRT_ToggleDensePaddingButton table={table} />
80
+ <MRT_ToggleFullScreenButton table={table} />
81
+ </Box>
82
+ ),
83
+ });
84
+
85
+ return <MaterialReactTable table={table} />;
86
+ };
87
+
88
+ export default Example;
@@ -0,0 +1,72 @@
1
+ import { useMemo } from 'react';
2
+ import { Box, Button } from '@mui/material';
3
+ import { MaterialReactTable, useMaterialReactTable, } from 'material-react-table';
4
+ import { data } from './makeData';
5
+ const Example = () => {
6
+ const columns = useMemo(
7
+ //column definitions...
8
+ () => [
9
+ {
10
+ accessorKey: 'firstName',
11
+ header: 'First Name',
12
+ },
13
+ {
14
+ accessorKey: 'lastName',
15
+ header: 'Last Name',
16
+ },
17
+ {
18
+ accessorKey: 'address',
19
+ header: 'Address',
20
+ },
21
+ {
22
+ accessorKey: 'city',
23
+ header: 'City',
24
+ },
25
+ {
26
+ accessorKey: 'state',
27
+ header: 'State',
28
+ },
29
+ ], []);
30
+ const table = useMaterialReactTable({
31
+ columns,
32
+ data,
33
+ defaultDisplayColumn: {
34
+ enableResizing: true, //turn on some features that are usually off for all display columns
35
+ },
36
+ displayColumnDefOptions: {
37
+ 'mrt-row-actions': {
38
+ size: 350, //set custom width
39
+ muiTableHeadCellProps: {
40
+ align: 'center', //change head cell props
41
+ },
42
+ },
43
+ 'mrt-row-numbers': {
44
+ enableColumnDragging: true,
45
+ enableColumnOrdering: true, //turn on some features that are usually off
46
+ enableResizing: true,
47
+ muiTableHeadCellProps: {
48
+ sx: {
49
+ fontSize: '1.2rem',
50
+ },
51
+ },
52
+ },
53
+ 'mrt-row-select': {
54
+ enableColumnActions: true,
55
+ enableHiding: true,
56
+ size: 100,
57
+ },
58
+ },
59
+ enableColumnResizing: true,
60
+ enableColumnOrdering: true,
61
+ enableRowNumbers: true,
62
+ enableRowSelection: true,
63
+ enableRowActions: true,
64
+ renderRowActions: ({ row }) => (<Box sx={{ display: 'flex', gap: '1rem' }}>
65
+ <Button>Button 1</Button>
66
+ <Button>Button 2</Button>
67
+ <Button>Button 3</Button>
68
+ </Box>),
69
+ });
70
+ return <MaterialReactTable table={table}/>;
71
+ };
72
+ export default Example;