-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
447 lines (445 loc) · 13.9 KB
/
config.js
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
const config = {
cms_manual_init: true,
backend: {
name: 'github',
repo: 'neontribe/my-best-life',
branch: 'development',
base_url: 'https://my-best-life.vercel.app',
auth_endpoint: 'api/auth',
},
publish_mode: 'editorial_workflow',
media_folder: 'public/img',
public_folder: 'img',
editor: {
preview: false,
},
collections: [
{
label: 'Services',
label_singular: 'Service',
name: 'service',
folder: 'content/services',
slug: '{{organisation}}-{{title}}',
create: true,
summary: '{{organisation}}: {{title}}',
fields: [
{
label: 'Organisation',
name: 'organisation',
widget: 'string',
hint: 'The name of the organisation or charity that runs the service',
},
{
label: 'Service or project name',
name: 'title',
widget: 'string',
},
{
label: 'Short description',
name: 'shortDescription',
widget: 'string',
hint: 'Friendly service name. This will be shown on the list view',
},
{
label: 'Promote this service',
name: 'promoted',
widget: 'boolean',
required: false,
hint: 'Check to move this service to the top of the list of all services',
},
{
label: 'Image',
name: 'image',
widget: 'object',
fields: [
{
label: 'Image file',
name: 'image',
widget: 'image',
required: false,
},
{
label: 'Image alt text',
name: 'imageAlt',
widget: 'string',
required: false,
hint: 'A concise text description of the image, for screen readers and other assistive technology.',
},
],
},
{
label: 'Description',
name: 'description',
widget: 'text',
hint: 'What I am going into and how could I get out? What does it do for me? We want to explain what it looks like when you take part and what are the benefits of being involved',
},
{
label: 'Categories',
name: 'categories',
widget: 'object',
hint: 'Add categories for the service. Not currently displayed, but influences the quiz results',
fields: [
{
label: 'Category 1',
name: 'category1',
widget: 'select',
required: false,
options: [
{ label: '-', value: '' },
{ label: 'Money', value: 'Money' },
{ label: 'School and College', value: 'School and College' },
{
label: 'Sex and Relationships',
value: 'Sex and Relationships',
},
{ label: 'Mental Health', value: 'Mental Health' },
{ label: 'Keeping Safe', value: 'Keeping Safe' },
{ label: 'Job Stuff', value: 'Job Stuff' },
{ label: 'Housing', value: 'Housing' },
{ label: 'Friends', value: 'Friends' },
{ label: 'Family', value: 'Family' },
{ label: 'Drink and Drugs', value: 'Drink and Drugs' },
{ label: 'Physical Health', value: 'Physical Health' },
{
label: 'My Rights and the Law',
value: 'My Rights and the Law',
},
],
},
{
label: 'Category 2',
name: 'category2',
widget: 'select',
required: false,
options: [
{ label: '-', value: '' },
{ label: 'Money', value: 'Money' },
{ label: 'School and College', value: 'School and College' },
{
label: 'Sex and Relationships',
value: 'Sex and Relationships',
},
{ label: 'Mental Health', value: 'Mental Health' },
{ label: 'Keeping Safe', value: 'Keeping Safe' },
{ label: 'Job Stuff', value: 'Job Stuff' },
{ label: 'Housing', value: 'Housing' },
{ label: 'Friends', value: 'Friends' },
{ label: 'Family', value: 'Family' },
{ label: 'Drink and Drugs', value: 'Drink and Drugs' },
{ label: 'Physical Health', value: 'Physical Health' },
{
label: 'My Rights and the Law',
value: 'My Rights and the Law',
},
],
},
],
},
{
label: 'Interest group',
name: 'interests',
widget: 'select',
multiple: true,
max: 3,
hint: 'Maximum 3 - Add interest groups for the service. Not currently displayed, but influences the quiz results',
required: false,
options: [
{ label: '-', value: '' },
{ label: 'Sports', value: 'Sports' },
{ label: 'Music', value: 'Music' },
{ label: 'Films and TV', value: 'Films and TV' },
{ label: 'Art and Design', value: 'Art and Design' },
{ label: 'Drama', value: 'Drama' },
{ label: 'Reading', value: 'Reading' },
{ label: 'Writing', value: 'Writing' },
{ label: 'Cooking', value: 'Cooking' },
{ label: 'Volunteering', value: 'Volunteering' },
{ label: 'Outdoor Activities', value: 'Outdoor Activities' },
{ label: 'Activism', value: 'Activism' },
{ label: 'Fashion and Beauty', value: 'Fashion and Beauty' },
{ label: 'Gaming', value: 'Gaming' },
],
},
{
label: 'Feelings',
name: 'feelings',
widget: 'select',
hint: 'Add feelings the service addresses. Not currently displayed, but influences the quiz results',
required: false,
multiple: true,
options: [
{ label: 'unsure', value: 'unsure' },
{ label: 'okay', value: 'okay' },
{ label: 'calm', value: 'calm' },
{ label: 'anxious', value: 'anxious' },
{ label: 'hopeful', value: 'hopeful' },
{ label: 'confused', value: 'confused' },
{ label: 'angry', value: 'angry' },
{ label: 'excited', value: 'excited' },
{ label: 'sad', value: 'sad' },
{ label: 'scared', value: 'scared' },
{ label: 'unsafe', value: 'unsafe' },
{ label: 'ignored', value: 'ignored' },
],
},
{
label: 'Cost value',
name: 'costValue',
widget: 'number',
hint: 'The numerical value used for filtering. Choose the lowest value if there are multiple prices',
value_type: 'float',
min: 0,
step: 0.01,
},
{
label: 'Cost qualifier',
name: 'costQualifier',
widget: 'string',
required: false,
hint: 'A very short cost qualifier for the list view, eg "£5 per week", "£12 per session", "From £18.50"',
},
{
label: 'Cost explanation',
name: 'costExplanation',
widget: 'string',
required: false,
hint: 'A longer space for more cost explanation on the details view',
},
{
label: 'Age',
name: 'age',
widget: 'object',
fields: [
{
label: 'Minimum age',
name: 'minAge',
widget: 'number',
required: false,
value_type: 'int',
min: 0,
},
{
label: 'Maximum age',
name: 'maxAge',
widget: 'number',
required: false,
value_type: 'int',
min: 0,
},
],
},
{
label: 'Gender',
name: 'gender',
widget: 'select',
multiple: true,
required: false,
hint: 'Specify if a service will only allow certain genders. Leave blank if unknown',
options: [
{ label: 'male', value: 'male' },
{ label: 'female', value: 'female' },
{
label: 'non-binary / non-conforming',
value: 'non-binary / non-conforming',
},
{ label: 'transgender', value: 'transgender' },
],
},
{
label: 'Eligibility',
name: 'eligibility',
widget: 'text',
required: false,
hint: 'Full eligibility requirements on the details view',
},
{
label: 'Format',
name: 'format',
widget: 'select',
required: true,
options: [
{ label: 'One to one chats', value: 'One to one chats' },
{
label: 'Meeting a group of people',
value: 'Meeting a group of people',
},
{ label: 'Online', value: 'Online' },
{ label: 'Over the phone', value: 'Over the phone' },
],
},
{
label: 'Location',
name: 'location',
widget: 'text',
required: false,
hint: 'Where possible an actual address of the service, not the head office',
},
{
label: 'Make map link from location',
name: 'makeMapLink',
widget: 'boolean',
required: false,
hint: 'Make a Google Maps link from the provided location, to be shown on the service page',
},
{
label: 'Ward',
name: 'area',
widget: 'select',
multiple: true,
required: false,
hint: 'Select the ward(s) the service operates in. Leave blank for online services',
options: [
{ label: 'Brixton/Stockwell', value: 'Brixton/Stockwell' },
{ label: 'Brixton/Tulse Hill', value: 'Brixton/Tulse Hill' },
{
label: 'Clapham/Brixton Hill',
value: 'Clapham/Brixton Hill',
},
{ label: 'Norwood', value: 'Norwood' },
{ label: 'Streatham', value: 'Streatham' },
{ label: 'North Lambeth', value: 'North Lambeth' },
],
},
{
label: 'Time',
name: 'time',
widget: 'string',
required: false,
hint: 'The actual value, this may be complex for opening hours.',
},
{
label: 'What to expect',
name: 'expectation',
widget: 'text',
hint: "Add some details to help set a service user's expectations before attending",
required: false,
},
{
label: 'How to get in touch',
name: 'contactExplanation',
widget: 'text',
required: false,
},
{
label: 'Email',
name: 'email',
widget: 'string',
required: false,
},
{
label: 'Form',
name: 'form',
widget: 'string',
required: false,
},
{
label: 'Phone',
name: 'phone',
widget: 'string',
required: false,
},
{
label: 'Website',
name: 'website',
widget: 'string',
required: false,
},
{
label: 'Reviews',
name: 'reviews',
widget: 'list',
summary: '{{fields.comment}}',
fields: [
{
label: 'Author',
name: 'author',
widget: 'string',
required: false,
hint: "Who wrote this review? Feel free to include more than the author's name, e.g. 'Isaac, age 17'",
},
{
label: 'Comment',
name: 'comment',
widget: 'text',
required: false,
hint: 'What did they have to say about it?',
},
{
label: 'Rating',
name: 'rating',
widget: 'number',
required: false,
hint: 'Rating out of 5 for this service',
min: 1,
max: 5,
step: 1,
},
],
required: false,
default: [],
},
],
},
{
label: 'Privacy Policy',
label_singular: 'Privacy Policy',
name: 'privacy',
folder: 'content/privacy',
slug: '{{title}}',
create: false,
fields: [
{
label: 'Content Name',
name: 'title',
widget: 'string',
},
{
label: 'Privacy Policy',
name: 'content',
widget: 'markdown',
buttons: [
'bold',
'italic',
'link',
'heading-two',
'heading-three',
'heading-four',
'bulleted-list',
],
hint: 'There will already be a heading level 1 in the page, so this content should use a maximum of heading level 2.',
},
],
},
{
label: 'About',
label_singular: 'About',
name: 'about',
folder: 'content/about',
slug: '{{title}}',
create: false,
fields: [
{
label: 'Content Name',
name: 'title',
widget: 'string',
},
{
label: 'About',
name: 'content',
widget: 'markdown',
buttons: [
'bold',
'italic',
'link',
'heading-two',
'heading-three',
'heading-four',
'bulleted-list',
],
hint: 'There will already be a heading level 1 in the page, so this content should use a maximum of heading level 2.',
},
],
},
],
}
export default config