@mini_7/material-react-table-mcp 4.0.0

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 (170) 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.tsx +309 -0
  5. package/data/examples/aggregation-and-grouping.tsx +153 -0
  6. package/data/examples/aggregation-multi.tsx +105 -0
  7. package/data/examples/alternate-column-filtering.tsx +49 -0
  8. package/data/examples/alternate-detail-panel.tsx +81 -0
  9. package/data/examples/alternate-pagination.tsx +23 -0
  10. package/data/examples/basic.tsx +109 -0
  11. package/data/examples/chart-detail-panel.tsx +89 -0
  12. package/data/examples/column-actions-space.tsx +44 -0
  13. package/data/examples/column-alignment.tsx +70 -0
  14. package/data/examples/custom-column-actions.tsx +109 -0
  15. package/data/examples/custom-column-filtering-ui.tsx +89 -0
  16. package/data/examples/custom-headless.tsx +125 -0
  17. package/data/examples/custom-top-toolbar.tsx +88 -0
  18. package/data/examples/customize-display-columns.tsx +85 -0
  19. package/data/examples/customize-filter-components.tsx +101 -0
  20. package/data/examples/customize-filter-modes.tsx +73 -0
  21. package/data/examples/customize-filter-variants.tsx +116 -0
  22. package/data/examples/customize-global-filter-component.tsx +52 -0
  23. package/data/examples/customize-remove-column-grouping.tsx +94 -0
  24. package/data/examples/customize-row-selection.tsx +54 -0
  25. package/data/examples/customize-table-styles.tsx +100 -0
  26. package/data/examples/disable-column-actions.tsx +37 -0
  27. package/data/examples/disable-column-hiding.tsx +90 -0
  28. package/data/examples/disable-density-toggle.tsx +49 -0
  29. package/data/examples/dynamic-columns.tsx +189 -0
  30. package/data/examples/editing-crud-cell.tsx +377 -0
  31. package/data/examples/editing-crud-modal.tsx +370 -0
  32. package/data/examples/editing-crud-row.tsx +333 -0
  33. package/data/examples/editing-crud-table.tsx +369 -0
  34. package/data/examples/editing-crud-tree.tsx +416 -0
  35. package/data/examples/enable-cell-actions.tsx +76 -0
  36. package/data/examples/enable-click-to-copy.tsx +39 -0
  37. package/data/examples/enable-column-grouping.tsx +120 -0
  38. package/data/examples/enable-column-ordering.tsx +48 -0
  39. package/data/examples/enable-column-pinning.tsx +69 -0
  40. package/data/examples/enable-column-resizing.tsx +56 -0
  41. package/data/examples/enable-column-virtualization.tsx +27 -0
  42. package/data/examples/enable-detail-panel-conditionally.tsx +78 -0
  43. package/data/examples/enable-detail-panel-virtualized.tsx +80 -0
  44. package/data/examples/enable-expanding-tree.tsx +110 -0
  45. package/data/examples/enable-filter-facet-values.tsx +65 -0
  46. package/data/examples/enable-row-dragging.tsx +137 -0
  47. package/data/examples/enable-row-numbers-original.tsx +48 -0
  48. package/data/examples/enable-row-numbers-static.tsx +48 -0
  49. package/data/examples/enable-row-ordering.tsx +57 -0
  50. package/data/examples/enable-row-pinning-select.tsx +76 -0
  51. package/data/examples/enable-row-pinning-static.tsx +50 -0
  52. package/data/examples/enable-row-pinning-sticky.tsx +69 -0
  53. package/data/examples/enable-row-selection.tsx +96 -0
  54. package/data/examples/enable-row-virtualization.tsx +101 -0
  55. package/data/examples/enable-sticky-header.tsx +59 -0
  56. package/data/examples/expanding-tree-expanded.tsx +121 -0
  57. package/data/examples/expanding-tree-flat-parse.tsx +125 -0
  58. package/data/examples/expanding-tree-root-expanded.tsx +151 -0
  59. package/data/examples/export-to-csv.tsx +114 -0
  60. package/data/examples/export-to-pdf.tsx +104 -0
  61. package/data/examples/external-toolbar.tsx +108 -0
  62. package/data/examples/font-awesome-icons.tsx +106 -0
  63. package/data/examples/infinite-scrolling.tsx +208 -0
  64. package/data/examples/lazy-detail-panel.tsx +262 -0
  65. package/data/examples/lazy-sub-rows.tsx +190 -0
  66. package/data/examples/linear-progress.tsx +66 -0
  67. package/data/examples/loading.tsx +50 -0
  68. package/data/examples/localization-i18n-ar.tsx +65 -0
  69. package/data/examples/localization-i18n-az.tsx +60 -0
  70. package/data/examples/localization-i18n-bg.tsx +60 -0
  71. package/data/examples/localization-i18n-cs.tsx +60 -0
  72. package/data/examples/localization-i18n-da.tsx +60 -0
  73. package/data/examples/localization-i18n-de.tsx +60 -0
  74. package/data/examples/localization-i18n-el.tsx +60 -0
  75. package/data/examples/localization-i18n-en.tsx +60 -0
  76. package/data/examples/localization-i18n-es.tsx +60 -0
  77. package/data/examples/localization-i18n-et.tsx +60 -0
  78. package/data/examples/localization-i18n-fa.tsx +66 -0
  79. package/data/examples/localization-i18n-fi.tsx +60 -0
  80. package/data/examples/localization-i18n-fr.tsx +60 -0
  81. package/data/examples/localization-i18n-he.tsx +66 -0
  82. package/data/examples/localization-i18n-hr.tsx +60 -0
  83. package/data/examples/localization-i18n-hu.tsx +60 -0
  84. package/data/examples/localization-i18n-hy.tsx +65 -0
  85. package/data/examples/localization-i18n-id.tsx +60 -0
  86. package/data/examples/localization-i18n-it.tsx +60 -0
  87. package/data/examples/localization-i18n-ja.tsx +60 -0
  88. package/data/examples/localization-i18n-ko.tsx +60 -0
  89. package/data/examples/localization-i18n-nl.tsx +60 -0
  90. package/data/examples/localization-i18n-no.tsx +60 -0
  91. package/data/examples/localization-i18n-np.tsx +60 -0
  92. package/data/examples/localization-i18n-pl.tsx +60 -0
  93. package/data/examples/localization-i18n-pt-BR.tsx +60 -0
  94. package/data/examples/localization-i18n-pt.tsx +60 -0
  95. package/data/examples/localization-i18n-ro.tsx +60 -0
  96. package/data/examples/localization-i18n-ru.tsx +60 -0
  97. package/data/examples/localization-i18n-sk.tsx +60 -0
  98. package/data/examples/localization-i18n-sr-Cyrl-RS.tsx +60 -0
  99. package/data/examples/localization-i18n-sr-Latn-RS.tsx +60 -0
  100. package/data/examples/localization-i18n-sv.tsx +60 -0
  101. package/data/examples/localization-i18n-tr.tsx +60 -0
  102. package/data/examples/localization-i18n-uk.tsx +60 -0
  103. package/data/examples/localization-i18n-vi.tsx +60 -0
  104. package/data/examples/localization-i18n-zh-hans.tsx +60 -0
  105. package/data/examples/localization-i18n-zh-hant.tsx +60 -0
  106. package/data/examples/manual-selection.tsx +105 -0
  107. package/data/examples/minimal.tsx +78 -0
  108. package/data/examples/mui-theme.tsx +136 -0
  109. package/data/examples/multi-sorting.tsx +58 -0
  110. package/data/examples/persistent-state.tsx +184 -0
  111. package/data/examples/react-query.tsx +182 -0
  112. package/data/examples/remote.tsx +150 -0
  113. package/data/examples/row-actions-buttons.tsx +89 -0
  114. package/data/examples/row-actions-menu-items.tsx +64 -0
  115. package/data/examples/single-row-selection.tsx +98 -0
  116. package/data/examples/virtualized.tsx +138 -0
  117. package/data/guides/accessibility.md +119 -0
  118. package/data/guides/aggregation.md +210 -0
  119. package/data/guides/async-loading.md +132 -0
  120. package/data/guides/best-practices.md +363 -0
  121. package/data/guides/cell-actions.md +139 -0
  122. package/data/guides/click-to-copy.md +67 -0
  123. package/data/guides/column-actions.md +69 -0
  124. package/data/guides/column-filtering.md +366 -0
  125. package/data/guides/column-grouping.md +192 -0
  126. package/data/guides/column-hiding.md +133 -0
  127. package/data/guides/column-ordering-dnd.md +99 -0
  128. package/data/guides/column-pinning.md +72 -0
  129. package/data/guides/column-resizing.md +157 -0
  130. package/data/guides/column-size.md +162 -0
  131. package/data/guides/customize-components.md +395 -0
  132. package/data/guides/customize-icons.md +35 -0
  133. package/data/guides/data-columns.md +292 -0
  134. package/data/guides/density-toggle.md +46 -0
  135. package/data/guides/detail-panel.md +195 -0
  136. package/data/guides/display-columns.md +135 -0
  137. package/data/guides/editing.md +367 -0
  138. package/data/guides/expanding-sub-rows.md +194 -0
  139. package/data/guides/full-screen-toggle.md +63 -0
  140. package/data/guides/global-filtering.md +237 -0
  141. package/data/guides/localization.md +57 -0
  142. package/data/guides/memoization.md +157 -0
  143. package/data/guides/pagination.md +171 -0
  144. package/data/guides/row-actions.md +116 -0
  145. package/data/guides/row-numbers.md +24 -0
  146. package/data/guides/row-ordering-dnd.md +51 -0
  147. package/data/guides/row-pinning.md +96 -0
  148. package/data/guides/row-selection.md +237 -0
  149. package/data/guides/sorting.md +190 -0
  150. package/data/guides/state-management.md +165 -0
  151. package/data/guides/sticky-header.md +41 -0
  152. package/data/guides/table-event-listeners.md +103 -0
  153. package/data/guides/toolbar-customization.md +251 -0
  154. package/data/guides/virtualization.md +183 -0
  155. package/data/index.json +1930 -0
  156. package/data/reference/mrt-components.md +183 -0
  157. package/data/reference/mrt-hooks.md +125 -0
  158. package/data/skills/composable-components/SKILL.md +189 -0
  159. package/data/skills/customization/SKILL.md +190 -0
  160. package/data/skills/drag-and-drop-ordering/SKILL.md +227 -0
  161. package/data/skills/editing/SKILL.md +243 -0
  162. package/data/skills/filtering/SKILL.md +213 -0
  163. package/data/skills/getting-started/SKILL.md +213 -0
  164. package/data/skills/localization/SKILL.md +182 -0
  165. package/data/skills/migrate-v3-to-v4/SKILL.md +161 -0
  166. package/data/skills/state-and-server-data/SKILL.md +200 -0
  167. package/data/skills/virtualization/SKILL.md +203 -0
  168. package/dist/data.js +137 -0
  169. package/dist/index.js +232 -0
  170. package/package.json +50 -0
@@ -0,0 +1,369 @@
1
+ import { lazy, Suspense, useMemo, useState } from 'react';
2
+ import {
3
+ MaterialReactTable,
4
+ // createRow,
5
+ type MRT_ColumnDef,
6
+ type MRT_Row,
7
+ type MRT_TableOptions,
8
+ useMaterialReactTable,
9
+ } from 'material-react-table';
10
+ import {
11
+ Box,
12
+ Button,
13
+ CircularProgress,
14
+ IconButton,
15
+ Tooltip,
16
+ Typography,
17
+ } from '@mui/material';
18
+ import {
19
+ QueryClient,
20
+ QueryClientProvider,
21
+ useMutation,
22
+ useQuery,
23
+ useQueryClient,
24
+ } from '@tanstack/react-query';
25
+ import { type User, fakeData, usStates } from './makeData';
26
+ import EditIcon from '@mui/icons-material/Edit';
27
+ import DeleteIcon from '@mui/icons-material/Delete';
28
+
29
+ const Example = () => {
30
+ const [validationErrors, setValidationErrors] = useState<
31
+ Record<string, string | undefined>
32
+ >({});
33
+ //keep track of rows that have been edited
34
+ const [editedUsers, setEditedUsers] = useState<Record<string, User>>({});
35
+
36
+ const columns = useMemo<MRT_ColumnDef<User>[]>(
37
+ () => [
38
+ {
39
+ accessorKey: 'id',
40
+ header: 'Id',
41
+ enableEditing: false,
42
+ size: 80,
43
+ },
44
+ {
45
+ accessorKey: 'firstName',
46
+ header: 'First Name',
47
+ muiEditTextFieldProps: ({ cell, row }) => ({
48
+ type: 'text',
49
+ required: true,
50
+ error: !!validationErrors?.[cell.id],
51
+ helperText: validationErrors?.[cell.id],
52
+ //store edited user in state to be saved later
53
+ onBlur: (event) => {
54
+ const validationError = !validateRequired(event.currentTarget.value)
55
+ ? 'Required'
56
+ : undefined;
57
+ setValidationErrors({
58
+ ...validationErrors,
59
+ [cell.id]: validationError,
60
+ });
61
+ setEditedUsers({ ...editedUsers, [row.id]: row.original });
62
+ },
63
+ }),
64
+ },
65
+ {
66
+ accessorKey: 'lastName',
67
+ header: 'Last Name',
68
+ muiEditTextFieldProps: ({ cell, row }) => ({
69
+ type: 'text',
70
+ required: true,
71
+ error: !!validationErrors?.[cell.id],
72
+ helperText: validationErrors?.[cell.id],
73
+ //store edited user in state to be saved later
74
+ onBlur: (event) => {
75
+ const validationError = !validateRequired(event.currentTarget.value)
76
+ ? 'Required'
77
+ : undefined;
78
+ setValidationErrors({
79
+ ...validationErrors,
80
+ [cell.id]: validationError,
81
+ });
82
+ setEditedUsers({ ...editedUsers, [row.id]: row.original });
83
+ },
84
+ }),
85
+ },
86
+ {
87
+ accessorKey: 'email',
88
+ header: 'Email',
89
+ muiEditTextFieldProps: ({ cell, row }) => ({
90
+ type: 'email',
91
+ required: true,
92
+ error: !!validationErrors?.[cell.id],
93
+ helperText: validationErrors?.[cell.id],
94
+ //store edited user in state to be saved later
95
+ onBlur: (event) => {
96
+ const validationError = !validateEmail(event.currentTarget.value)
97
+ ? 'Incorrect Email Format'
98
+ : undefined;
99
+ setValidationErrors({
100
+ ...validationErrors,
101
+ [cell.id]: validationError,
102
+ });
103
+ setEditedUsers({ ...editedUsers, [row.id]: row.original });
104
+ },
105
+ }),
106
+ },
107
+ {
108
+ accessorKey: 'state',
109
+ header: 'State',
110
+ editVariant: 'select',
111
+ editSelectOptions: usStates,
112
+ muiEditTextFieldProps: ({ row }) => ({
113
+ select: true,
114
+ error: !!validationErrors?.state,
115
+ helperText: validationErrors?.state,
116
+ onChange: (event) =>
117
+ setEditedUsers({
118
+ ...editedUsers,
119
+ [row.id]: { ...row.original, state: event.target.value },
120
+ }),
121
+ }),
122
+ },
123
+ ],
124
+ [editedUsers, validationErrors],
125
+ );
126
+
127
+ //call CREATE hook
128
+ const { mutateAsync: createUser, isPending: isCreatingUser } =
129
+ useCreateUser();
130
+ //call READ hook
131
+ const {
132
+ data: fetchedUsers = [],
133
+ isError: isLoadingUsersError,
134
+ isFetching: isFetchingUsers,
135
+ isLoading: isLoadingUsers,
136
+ } = useGetUsers();
137
+ //call UPDATE hook
138
+ const { mutateAsync: updateUsers, isPending: isUpdatingUsers } =
139
+ useUpdateUsers();
140
+ //call DELETE hook
141
+ const { mutateAsync: deleteUser, isPending: isDeletingUser } =
142
+ useDeleteUser();
143
+
144
+ //CREATE action
145
+ const handleCreateUser: MRT_TableOptions<User>['onCreatingRowSave'] = async ({
146
+ values,
147
+ table,
148
+ }) => {
149
+ const newValidationErrors = validateUser(values);
150
+ if (Object.values(newValidationErrors).some((error) => error)) {
151
+ setValidationErrors(newValidationErrors);
152
+ return;
153
+ }
154
+ setValidationErrors({});
155
+ await createUser(values);
156
+ table.setCreatingRow(null); //exit creating mode
157
+ };
158
+
159
+ //UPDATE action
160
+ const handleSaveUsers = async () => {
161
+ if (Object.values(validationErrors).some((error) => !!error)) return;
162
+ await updateUsers(Object.values(editedUsers));
163
+ setEditedUsers({});
164
+ };
165
+
166
+ //DELETE action
167
+ const openDeleteConfirmModal = (row: MRT_Row<User>) => {
168
+ if (window.confirm('Are you sure you want to delete this user?')) {
169
+ deleteUser(row.original.id);
170
+ }
171
+ };
172
+
173
+ const table = useMaterialReactTable({
174
+ columns,
175
+ data: fetchedUsers,
176
+ createDisplayMode: 'row', // ('modal', and 'custom' are also available)
177
+ editDisplayMode: 'table', // ('modal', 'row', 'cell', and 'custom' are also
178
+ enableEditing: true,
179
+ enableRowActions: true,
180
+ positionActionsColumn: 'last',
181
+ getRowId: (row) => row.id,
182
+ muiToolbarAlertBannerProps: isLoadingUsersError
183
+ ? {
184
+ color: 'error',
185
+ children: 'Error loading data',
186
+ }
187
+ : undefined,
188
+ muiTableContainerProps: {
189
+ sx: {
190
+ minHeight: '500px',
191
+ },
192
+ },
193
+ onCreatingRowCancel: () => setValidationErrors({}),
194
+ onCreatingRowSave: handleCreateUser,
195
+ renderRowActions: ({ row }) => (
196
+ <Box sx={{ display: 'flex', gap: '1rem' }}>
197
+ <Tooltip title="Delete">
198
+ <IconButton color="error" onClick={() => openDeleteConfirmModal(row)}>
199
+ <DeleteIcon />
200
+ </IconButton>
201
+ </Tooltip>
202
+ </Box>
203
+ ),
204
+ renderBottomToolbarCustomActions: () => (
205
+ <Box sx={{ display: 'flex', gap: '1rem', alignItems: 'center' }}>
206
+ <Button
207
+ color="success"
208
+ variant="contained"
209
+ onClick={handleSaveUsers}
210
+ disabled={
211
+ Object.keys(editedUsers).length === 0 ||
212
+ Object.values(validationErrors).some((error) => !!error)
213
+ }
214
+ >
215
+ {isUpdatingUsers ? <CircularProgress size={25} /> : 'Save'}
216
+ </Button>
217
+ {Object.values(validationErrors).some((error) => !!error) && (
218
+ <Typography color="error">Fix errors before submitting</Typography>
219
+ )}
220
+ </Box>
221
+ ),
222
+ renderTopToolbarCustomActions: ({ table }) => (
223
+ <Button
224
+ variant="contained"
225
+ onClick={() => {
226
+ table.setCreatingRow(true); //simplest way to open the create row modal with no default values
227
+ //or you can pass in a row object to set default values with the `createRow` helper function
228
+ // table.setCreatingRow(
229
+ // createRow(table, {
230
+ // //optionally pass in default values for the new row, useful for nested data or other complex scenarios
231
+ // }),
232
+ // );
233
+ }}
234
+ >
235
+ Create New User
236
+ </Button>
237
+ ),
238
+ state: {
239
+ isLoading: isLoadingUsers,
240
+ isSaving: isCreatingUser || isUpdatingUsers || isDeletingUser,
241
+ showAlertBanner: isLoadingUsersError,
242
+ showProgressBars: isFetchingUsers,
243
+ },
244
+ });
245
+
246
+ return <MaterialReactTable table={table} />;
247
+ };
248
+
249
+ //CREATE hook (post new user to api)
250
+ function useCreateUser() {
251
+ const queryClient = useQueryClient();
252
+ return useMutation({
253
+ mutationFn: async (user: User) => {
254
+ //send api update request here
255
+ await new Promise((resolve) => setTimeout(resolve, 1000)); //fake api call
256
+ return Promise.resolve();
257
+ },
258
+ //client side optimistic update
259
+ onMutate: (newUserInfo: User) => {
260
+ queryClient.setQueryData(
261
+ ['users'],
262
+ (prevUsers: any) =>
263
+ [
264
+ ...prevUsers,
265
+ {
266
+ ...newUserInfo,
267
+ id: (Math.random() + 1).toString(36).substring(7),
268
+ },
269
+ ] as User[],
270
+ );
271
+ },
272
+ // onSettled: () => queryClient.invalidateQueries({ queryKey: ['users'] }), //refetch users after mutation, disabled for demo
273
+ });
274
+ }
275
+
276
+ //READ hook (get users from api)
277
+ function useGetUsers() {
278
+ return useQuery<User[]>({
279
+ queryKey: ['users'],
280
+ queryFn: async () => {
281
+ //send api request here
282
+ await new Promise((resolve) => setTimeout(resolve, 1000)); //fake api call
283
+ return Promise.resolve(fakeData);
284
+ },
285
+ refetchOnWindowFocus: false,
286
+ });
287
+ }
288
+
289
+ //UPDATE hook (put user in api)
290
+ function useUpdateUsers() {
291
+ const queryClient = useQueryClient();
292
+ return useMutation({
293
+ mutationFn: async (users: User[]) => {
294
+ //send api update request here
295
+ await new Promise((resolve) => setTimeout(resolve, 1000)); //fake api call
296
+ return Promise.resolve();
297
+ },
298
+ //client side optimistic update
299
+ onMutate: (newUsers: User[]) => {
300
+ queryClient.setQueryData(['users'], (prevUsers: any) =>
301
+ prevUsers?.map((user: User) => {
302
+ const newUser = newUsers.find((u) => u.id === user.id);
303
+ return newUser ? newUser : user;
304
+ }),
305
+ );
306
+ },
307
+ // onSettled: () => queryClient.invalidateQueries({ queryKey: ['users'] }), //refetch users after mutation, disabled for demo
308
+ });
309
+ }
310
+
311
+ //DELETE hook (delete user in api)
312
+ function useDeleteUser() {
313
+ const queryClient = useQueryClient();
314
+ return useMutation({
315
+ mutationFn: async (userId: string) => {
316
+ //send api update request here
317
+ await new Promise((resolve) => setTimeout(resolve, 1000)); //fake api call
318
+ return Promise.resolve();
319
+ },
320
+ //client side optimistic update
321
+ onMutate: (userId: string) => {
322
+ queryClient.setQueryData(['users'], (prevUsers: any) =>
323
+ prevUsers?.filter((user: User) => user.id !== userId),
324
+ );
325
+ },
326
+ // onSettled: () => queryClient.invalidateQueries({ queryKey: ['users'] }), //refetch users after mutation, disabled for demo
327
+ });
328
+ }
329
+
330
+ //react query setup in App.tsx
331
+ const ReactQueryDevtoolsProduction = lazy(() =>
332
+ import('@tanstack/react-query-devtools/build/modern/production.js').then(
333
+ (d) => ({
334
+ default: d.ReactQueryDevtools,
335
+ }),
336
+ ),
337
+ );
338
+
339
+ const queryClient = new QueryClient();
340
+
341
+ export default function App() {
342
+ return (
343
+ <QueryClientProvider client={queryClient}>
344
+ <Example />
345
+ <Suspense fallback={null}>
346
+ <ReactQueryDevtoolsProduction />
347
+ </Suspense>
348
+ </QueryClientProvider>
349
+ );
350
+ }
351
+
352
+ const validateRequired = (value: string) => !!value.length;
353
+ const validateEmail = (email: string) =>
354
+ !!email.length &&
355
+ email
356
+ .toLowerCase()
357
+ .match(
358
+ /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,
359
+ );
360
+
361
+ function validateUser(user: User) {
362
+ return {
363
+ firstName: !validateRequired(user.firstName)
364
+ ? 'First Name is Required'
365
+ : '',
366
+ lastName: !validateRequired(user.lastName) ? 'Last Name is Required' : '',
367
+ email: !validateEmail(user.email) ? 'Incorrect Email Format' : '',
368
+ };
369
+ }