-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathPostCreate.tsx
172 lines (165 loc) · 5.87 KB
/
PostCreate.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
import * as React from 'react';
import { useMemo } from 'react';
import { RichTextInput } from 'ra-input-rich-text';
import {
ArrayInput,
AutocompleteInput,
BooleanInput,
Create,
DateInput,
FormDataConsumer,
NumberInput,
ReferenceInput,
SaveButton,
SelectInput,
SimpleForm,
SimpleFormIterator,
TextInput,
Toolbar,
required,
FileInput,
FileField,
usePermissions,
} from 'react-admin'; // eslint-disable-line import/no-unresolved
import { FormSpy } from 'react-final-form';
const PostCreateToolbar = props => (
<Toolbar {...props}>
<SaveButton
label="post.action.save_and_edit"
redirect="edit"
submitOnEnter={true}
/>
<SaveButton
label="post.action.save_and_show"
redirect="show"
submitOnEnter={false}
variant="text"
/>
<SaveButton
label="post.action.save_and_add"
redirect={false}
submitOnEnter={false}
variant="text"
/>
<SaveButton
label="post.action.save_with_average_note"
transform={data => ({ ...data, average_note: 10 })}
redirect="show"
submitOnEnter={false}
variant="text"
/>
</Toolbar>
);
const backlinksDefaultValue = [
{
date: new Date(),
url: 'http://google.com',
},
];
const PostCreate = () => {
const initialValues = useMemo(
() => ({
average_note: 0,
}),
[]
);
const { permissions } = usePermissions();
const dateDefaultValue = useMemo(() => new Date(), []);
return (
<Create>
<SimpleForm
toolbar={<PostCreateToolbar />}
initialValues={initialValues}
validate={values => {
const errors = {} as any;
['title', 'teaser'].forEach(field => {
if (!values[field]) {
errors[field] = 'Required field';
}
});
if (values.average_note < 0 || values.average_note > 5) {
errors.average_note = 'Should be between 0 and 5';
}
return errors;
}}
>
<FileInput
source="pdffile"
label="PDF-Template"
accept="application/pdf"
>
<FileField source="src" title="title" />
</FileInput>
<TextInput autoFocus source="title" />
<TextInput source="teaser" fullWidth={true} multiline={true} />
<RichTextInput source="body" validate={required()} />
<FormSpy subscription={{ values: true }}>
{({ values }) =>
values.title ? (
<NumberInput source="average_note" />
) : null
}
</FormSpy>
<DateInput
source="published_at"
defaultValue={dateDefaultValue}
/>
<BooleanInput source="commentable" defaultValue />
<ArrayInput
source="backlinks"
defaultValue={backlinksDefaultValue}
validate={[required()]}
>
<SimpleFormIterator>
<DateInput source="date" />
<TextInput source="url" />
</SimpleFormIterator>
</ArrayInput>
{permissions === 'admin' && (
<ArrayInput source="authors">
<SimpleFormIterator>
<ReferenceInput
label="User"
source="user_id"
reference="users"
>
<AutocompleteInput />
</ReferenceInput>
<FormDataConsumer>
{({
formData,
scopedFormData,
getSource,
...rest
}) =>
scopedFormData && scopedFormData.user_id ? (
<SelectInput
label="Role"
source={getSource('role')}
choices={[
{
id: 'headwriter',
name: 'Head Writer',
},
{
id: 'proofreader',
name: 'Proof reader',
},
{
id: 'cowriter',
name: 'Co-Writer',
},
]}
{...rest}
/>
) : null
}
</FormDataConsumer>
</SimpleFormIterator>
</ArrayInput>
)}
</SimpleForm>
</Create>
);
};
export default PostCreate;