-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathProductCreate.tsx
100 lines (97 loc) · 3.53 KB
/
ProductCreate.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import React from 'react';
import {
Create,
FormTab,
NumberInput,
ReferenceInput,
SelectInput,
TabbedForm,
TextInput,
required,
} from 'react-admin';
import { InputAdornment, Stack } from '@mui/material';
import { useDefineAppLocation } from '@react-admin/ra-navigation';
const MarkdownInput = React.lazy(() =>
import('@react-admin/ra-markdown').then(module => ({
default: module.MarkdownInput,
}))
);
const ProductCreate = () => {
useDefineAppLocation('catalog.products.create');
return (
<Create>
<TabbedForm>
<FormTab label="resources.products.tabs.image">
<TextInput source="image" validate={required()} />
<TextInput source="thumbnail" validate={required()} />
</FormTab>
<FormTab
sx={{ maxWidth: '24em' }}
label="resources.products.tabs.details"
path="details"
>
<TextInput source="reference" validate={required()} />
<NumberInput
source="price"
validate={required()}
sx={{ width: '50%' }}
InputProps={{
startAdornment: (
<InputAdornment position="start">
€
</InputAdornment>
),
}}
/>
<Stack direction="row" gap={2} sx={{ width: '100%' }}>
<NumberInput
source="width"
validate={required()}
sx={{ width: '50%' }}
InputProps={{
endAdornment: (
<InputAdornment position="start">
cm
</InputAdornment>
),
}}
/>
<NumberInput
source="height"
validate={required()}
sx={{
width: '50%',
}}
InputProps={{
endAdornment: (
<InputAdornment position="start">
cm
</InputAdornment>
),
}}
/>
</Stack>
<ReferenceInput
source="category_id"
reference="categories"
allowEmpty
>
<SelectInput source="name" />
</ReferenceInput>
<NumberInput
source="stock"
validate={required()}
sx={{ width: '50%' }}
/>
</FormTab>
<FormTab
label="resources.products.tabs.description"
path="description"
>
<MarkdownInput source="description" label="" />
</FormTab>
</TabbedForm>
</Create>
);
};
export default ProductCreate;