@homefile/components-v2 2.24.26 → 2.25.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 (73) hide show
  1. package/dist/assets/images/shine/gutter-cleaning.png +0 -0
  2. package/dist/assets/images/shine/holiday-lights.png +0 -0
  3. package/dist/assets/images/shine/home-cleaning.png +0 -0
  4. package/dist/assets/images/shine/pressure.png +0 -0
  5. package/dist/assets/images/shine/roof-cleaning.png +0 -0
  6. package/dist/assets/images/shine/window.png +0 -0
  7. package/dist/components/forms/Collapsible.d.ts +1 -1
  8. package/dist/components/forms/Collapsible.js +3 -3
  9. package/dist/components/forms/dynamicForm/fields/uiFields/TileBody.js +1 -1
  10. package/dist/components/forms/dynamicForm/fields/uiFields/TileBody.tsx +1 -1
  11. package/dist/components/forms/dynamicForm/fields/uiFields/TileBodyHeader.js +1 -1
  12. package/dist/components/forms/dynamicForm/fields/uiFields/TileBodyHeader.tsx +3 -1
  13. package/dist/components/forms/dynamicForm/fields/uiFields/TileCta.js +1 -1
  14. package/dist/components/forms/dynamicForm/fields/uiFields/TileCta.tsx +1 -1
  15. package/dist/components/forms/dynamicForm/fields/uiFields/VerticalIcon.js +1 -1
  16. package/dist/components/forms/dynamicForm/fields/uiFields/VerticalIcon.tsx +8 -2
  17. package/dist/components/forms/readOnly/ReadOnlyDynamicForm.js +4 -2
  18. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyAppliances.js +16 -15
  19. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyAppliances.tsx +40 -35
  20. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyCollapsible.d.ts +2 -0
  21. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyCollapsible.js +19 -0
  22. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyCollapsible.tsx +34 -0
  23. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyGuidelines.js +1 -1
  24. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyGuidelines.tsx +2 -2
  25. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyHomeItemText.js +1 -1
  26. package/dist/components/forms/readOnly/fields/homeItem/ReadOnlyHomeItemText.tsx +1 -1
  27. package/dist/components/forms/readOnly/fields/homeItem/index.d.ts +1 -0
  28. package/dist/components/forms/readOnly/fields/homeItem/index.js +1 -0
  29. package/dist/components/forms/readOnly/fields/homeItem/index.ts +1 -0
  30. package/dist/components/headers/CollapsibleHeader.js +1 -1
  31. package/dist/components/partner/PartnerFooter.js +1 -1
  32. package/dist/components/partner/PartnerImage.js +2 -2
  33. package/dist/components/partner/ShortPartnerTile.d.ts +1 -1
  34. package/dist/components/partner/ShortPartnerTile.js +4 -5
  35. package/dist/interfaces/forms/Collapsible.interface.d.ts +2 -1
  36. package/dist/interfaces/forms/dynamicForm/DynamicForm.interface.d.ts +1 -1
  37. package/dist/interfaces/forms/readOnly/homeItem/ReadOnlyAppliances.interface.d.ts +1 -1
  38. package/dist/mocks/forms/dynamicForm.mock.js +36 -16
  39. package/dist/mocks/partner/dynamicTileForm.mock.d.ts +330 -1
  40. package/dist/mocks/partner/dynamicTileForm.mock.js +1210 -62
  41. package/dist/stories/forms/readOnly/ReadOnlyDynamicForm.stories.d.ts +1 -0
  42. package/dist/stories/forms/readOnly/ReadOnlyDynamicForm.stories.js +5 -1
  43. package/dist/stories/partner/DynamicTile.stories.d.ts +1 -2
  44. package/dist/stories/partner/DynamicTile.stories.js +9 -20
  45. package/package.json +1 -1
  46. package/src/assets/images/shine/gutter-cleaning.png +0 -0
  47. package/src/assets/images/shine/holiday-lights.png +0 -0
  48. package/src/assets/images/shine/home-cleaning.png +0 -0
  49. package/src/assets/images/shine/pressure.png +0 -0
  50. package/src/assets/images/shine/roof-cleaning.png +0 -0
  51. package/src/assets/images/shine/window.png +0 -0
  52. package/src/components/forms/Collapsible.tsx +3 -2
  53. package/src/components/forms/dynamicForm/fields/uiFields/TileBody.tsx +1 -1
  54. package/src/components/forms/dynamicForm/fields/uiFields/TileBodyHeader.tsx +3 -1
  55. package/src/components/forms/dynamicForm/fields/uiFields/TileCta.tsx +1 -1
  56. package/src/components/forms/dynamicForm/fields/uiFields/VerticalIcon.tsx +8 -2
  57. package/src/components/forms/readOnly/ReadOnlyDynamicForm.tsx +4 -1
  58. package/src/components/forms/readOnly/fields/homeItem/ReadOnlyAppliances.tsx +40 -35
  59. package/src/components/forms/readOnly/fields/homeItem/ReadOnlyCollapsible.tsx +34 -0
  60. package/src/components/forms/readOnly/fields/homeItem/ReadOnlyGuidelines.tsx +2 -2
  61. package/src/components/forms/readOnly/fields/homeItem/ReadOnlyHomeItemText.tsx +1 -1
  62. package/src/components/forms/readOnly/fields/homeItem/index.ts +1 -0
  63. package/src/components/headers/CollapsibleHeader.tsx +1 -1
  64. package/src/components/partner/PartnerFooter.tsx +2 -2
  65. package/src/components/partner/PartnerImage.tsx +2 -1
  66. package/src/components/partner/ShortPartnerTile.tsx +18 -12
  67. package/src/interfaces/forms/Collapsible.interface.ts +2 -1
  68. package/src/interfaces/forms/dynamicForm/DynamicForm.interface.ts +1 -0
  69. package/src/interfaces/forms/readOnly/homeItem/ReadOnlyAppliances.interface.ts +1 -1
  70. package/src/mocks/forms/dynamicForm.mock.ts +36 -16
  71. package/src/mocks/partner/dynamicTileForm.mock.ts +1221 -64
  72. package/src/stories/forms/readOnly/ReadOnlyDynamicForm.stories.tsx +13 -1
  73. package/src/stories/partner/DynamicTile.stories.tsx +24 -24
@@ -1,67 +1,1224 @@
1
- import { ReportI } from "@/interfaces";
1
+ import { ReportI } from '@/interfaces'
2
+ import { action } from '@storybook/addon-actions'
2
3
 
3
4
  export const dynamicTileFormMock: ReportI[] = [
4
- {
5
- "id": "stile1p",
6
- "name": "",
7
- "description": "",
8
- "comments": "",
9
- "value": "",
10
- "type": "tile-body",
11
- "visible": true,
12
- "children": [
13
- {
14
- "id": "stilec01",
15
- "name": "Shine",
16
- "description": "",
17
- "comments": "",
18
- "value": "https://storage.googleapis.com/homefile-images/shine_logo_updated.png",
19
- "type": "tile-body-logo"
20
- },
21
- {
22
- "id": "stilec01test",
23
- "name": "Partner Name Here",
24
- "description": "",
25
- "comments": "",
26
- "value": "https://storage.googleapis.com/homefile-images/audreybackgroundimage-update.jpg",
27
- "type": "tile-body-partner-image"
28
- },
29
- {
30
- "id": "stilec02test",
31
- "name": "Shine",
32
- "description": "",
33
- "comments": "",
34
- "value": "Test description will go here. Test.",
35
- "type": "tile-body-description"
36
- },
37
- {
38
- "id": "stile2p",
39
- "name": "",
40
- "description": "",
41
- "comments": "",
42
- "value": "",
43
- "type": "tile-body-action",
44
- "children": [
45
- {
46
- "id": "stilecta1",
47
- "name": "drawer-link",
48
- "description": "",
49
- "comments": "",
50
- "value": "Schedule Service",
51
- "type": "primary-cta",
52
- "link": "stiledf01"
53
- },
54
- {
55
- "id": "stilecta2",
56
- "name": "drawer-link",
57
- "description": "",
58
- "comments": "",
59
- "value": "Request Support",
60
- "type": "secondary-cta",
61
- "link": "stiledf02"
62
- }
63
- ]
64
- }
65
- ]
66
- }
5
+ {
6
+ id: 'stile1p',
7
+ name: '',
8
+ description: '',
9
+ comments: '',
10
+ value: '',
11
+ type: 'tile-body',
12
+ visible: true,
13
+ children: [
14
+ {
15
+ id: 'stilec01',
16
+ name: 'Shine',
17
+ description: '',
18
+ comments: '',
19
+ value:
20
+ 'https://storage.googleapis.com/homefile-images/shine_logo_updated.png',
21
+ type: 'tile-body-logo',
22
+ },
23
+ {
24
+ id: 'stilec01test',
25
+ name: 'Partner Name Here',
26
+ description: '',
27
+ comments: '',
28
+ value:
29
+ 'https://storage.googleapis.com/homefile-images/audreybackgroundimage-update.jpg',
30
+ type: 'tile-body-partner-image',
31
+ },
32
+ {
33
+ id: 'stilec02test',
34
+ name: 'Shine',
35
+ description: '',
36
+ comments: '',
37
+ value: 'Test description will go here. Test.',
38
+ type: 'tile-body-description',
39
+ },
40
+ {
41
+ id: 'stile2p',
42
+ name: '',
43
+ description: '',
44
+ comments: '',
45
+ value: '',
46
+ type: 'tile-body-action',
47
+ children: [
48
+ {
49
+ id: 'stilecta1',
50
+ name: 'drawer-link',
51
+ description: '',
52
+ comments: '',
53
+ value: 'Schedule Service',
54
+ type: 'primary-cta',
55
+ link: 'stiledf01',
56
+ },
57
+ {
58
+ id: 'stilecta2',
59
+ name: 'drawer-link',
60
+ description: '',
61
+ comments: '',
62
+ value: 'Request Support',
63
+ type: 'secondary-cta',
64
+ link: 'stiledf02',
65
+ },
66
+ ],
67
+ },
68
+ ],
69
+ },
70
+ ]
71
+
72
+ export const dynamicTilesMock = [
73
+ {
74
+ buttonText: 'View Before & After Pictures',
75
+ description: 'You name it, we organize it.',
76
+ logo: 'https://storage.googleapis.com/homefile-images/2BLogo%2Btagline_green-2.png',
77
+ partnerName: '2B Organized',
78
+ websiteUrl: 'https://2b-organized.com/',
79
+ form: [],
80
+ onClick: action('Tile Clicked'),
81
+ socialLinks: [
82
+ {
83
+ name: 'instagram',
84
+ link: 'https://www.instagram.com/2borganizedaustin/',
85
+ },
86
+ ],
87
+ _id: '65a8114330d79f807e998b17',
88
+ menuItems: [
89
+ {
90
+ label: 'Remove Tile',
91
+ handleClick: action('Remove Tile Clicked'),
92
+ },
93
+ ],
94
+ },
95
+ {
96
+ buttonText: '',
97
+ description: 'Sam created this partner to test.',
98
+ logo: 'https://storage.googleapis.com/homefile-images/hf_test_partner_logo.png',
99
+ partnerName: 'Test Partner Sam',
100
+ onClick: action('Tile Clicked'),
101
+ websiteUrl: '',
102
+ imageUrl: 'https://storage.googleapis.com/homefile-images/tview.jpeg',
103
+ socialLinks: [],
104
+ _id: '67508e82eb361e47d7b22cb6',
105
+ menuItems: [
106
+ {
107
+ label: 'Remove Tile',
108
+ handleClick: action('Remove Tile Clicked'),
109
+ },
110
+ ],
111
+ type: 'dynamic-tile-form',
112
+ form: [
113
+ {
114
+ id: 'stile1p',
115
+ name: '',
116
+ description: '',
117
+ comments: '',
118
+ value: '',
119
+ type: 'tile-body',
120
+ visible: true,
121
+ children: [
122
+ {
123
+ id: 'stilec01',
124
+ name: 'Test Partner',
125
+ description: '',
126
+ comments: '',
127
+ value:
128
+ 'https://storage.googleapis.com/homefile-images/hf_test_partner_logo.png',
129
+ type: 'tile-body-logo',
130
+ },
131
+ {
132
+ id: 'stilec02',
133
+ name: '',
134
+ description: '',
135
+ comments: '',
136
+ value: 'Test Partner',
137
+ type: 'tile-body-header',
138
+ },
139
+ {
140
+ id: 'stilec03',
141
+ name: '',
142
+ description: '',
143
+ comments: '',
144
+ value: '',
145
+ type: 'tile-body-section-grid',
146
+ children: [
147
+ {
148
+ id: 'stilevi01',
149
+ name: '',
150
+ description: '',
151
+ comments: '',
152
+ value: 'Pressure Washing',
153
+ type: 'vertical-icon',
154
+ icon: 'sh-pressure',
155
+ },
156
+ {
157
+ id: 'stilevi02',
158
+ name: '',
159
+ description: '',
160
+ comments: '',
161
+ value: 'Widow Cleaning',
162
+ type: 'vertical-icon',
163
+ icon: 'sh-window',
164
+ },
165
+ {
166
+ id: 'stilevi03',
167
+ name: '',
168
+ description: '',
169
+ comments: '',
170
+ value: 'Roof Cleaning',
171
+ type: 'vertical-icon',
172
+ icon: 'sh-roof',
173
+ },
174
+ {
175
+ id: 'stilevi04',
176
+ name: '',
177
+ description: '',
178
+ comments: '',
179
+ value: 'Holiday Lights',
180
+ type: 'vertical-icon',
181
+ icon: 'sh-lights',
182
+ },
183
+ {
184
+ id: 'stilevi05',
185
+ name: '',
186
+ description: '',
187
+ comments: '',
188
+ value: 'Gutter Cleaning',
189
+ type: 'vertical-icon',
190
+ icon: 'sh-gutter',
191
+ },
192
+ {
193
+ id: 'stilevi06',
194
+ name: '',
195
+ description: '',
196
+ comments: '',
197
+ value: 'House Washing',
198
+ type: 'vertical-icon',
199
+ icon: 'sh-house',
200
+ },
201
+ ],
202
+ },
203
+ {
204
+ id: 'stile2p',
205
+ name: '',
206
+ description: '',
207
+ comments: '',
208
+ value: '',
209
+ type: 'tile-body-action',
210
+ children: [
211
+ {
212
+ id: 'stilecta1',
213
+ name: 'drawer-link',
214
+ description: '',
215
+ comments: '',
216
+ value: 'Schedule Service',
217
+ type: 'primary-cta',
218
+ link: 'stiledf01',
219
+ },
220
+ ],
221
+ },
222
+ ],
223
+ },
224
+ {
225
+ id: 'stiledf01',
226
+ name: 'Request Service',
227
+ description: '',
228
+ comments: '',
229
+ value: 'service',
230
+ type: 'tile-form',
231
+ visible: true,
232
+ children: [
233
+ {
234
+ id: 'stiledfchild01',
235
+ name: '',
236
+ description: 'Select the services you are interested in:',
237
+ comments: '',
238
+ value: '',
239
+ options: '',
240
+ type: 'checkbox-group',
241
+ children: [
242
+ {
243
+ id: 'stiledfchild01a',
244
+ name: 'Pressure Washing',
245
+ description: '',
246
+ comments: '',
247
+ value: false,
248
+ visible: true,
249
+ type: 'checkbox',
250
+ },
251
+ {
252
+ id: 'stiledfchild01b',
253
+ name: 'Gutter Cleaning',
254
+ description: '',
255
+ comments: '',
256
+ value: false,
257
+ visible: true,
258
+ type: 'checkbox',
259
+ },
260
+ {
261
+ id: 'stiledfchild01c',
262
+ name: 'Window Cleaning',
263
+ description: '',
264
+ comments: '',
265
+ value: false,
266
+ visible: true,
267
+ type: 'checkbox',
268
+ },
269
+ {
270
+ id: 'stiledfchild01d',
271
+ name: 'Holiday Lights',
272
+ description: '',
273
+ comments: '',
274
+ value: false,
275
+ visible: true,
276
+ type: 'checkbox',
277
+ },
278
+ {
279
+ id: 'stiledfchild01e',
280
+ name: 'Roof Cleaning',
281
+ description: '',
282
+ comments: '',
283
+ value: false,
284
+ visible: true,
285
+ type: 'checkbox',
286
+ },
287
+ {
288
+ id: 'stiledfchild01f',
289
+ name: 'Exterior Cleaning',
290
+ description: '',
291
+ comments: '',
292
+ value: false,
293
+ visible: true,
294
+ type: 'checkbox',
295
+ },
296
+ ],
297
+ icon: 'pressure-washer',
298
+ },
299
+ {
300
+ id: 'stiledfchild02',
301
+ name: 'Notes',
302
+ description: '',
303
+ comments: '',
304
+ value: '',
305
+ icon: 'notes',
306
+ type: 'textarea',
307
+ },
308
+ {
309
+ id: 'stiledfchild03',
310
+ name: 'Timeframe',
311
+ description: '',
312
+ comments: '',
313
+ value: 'What is your timeframe?',
314
+ icon: '',
315
+ type: 'select',
316
+ options: [
317
+ 'What is your timeframe?',
318
+ 'As soon as possible',
319
+ 'A week out',
320
+ 'A couple of weeks out',
321
+ 'I am flexible',
322
+ ],
323
+ },
324
+ {
325
+ id: 'stiledfchild04',
326
+ icon: 'contact',
327
+ name: 'Contact Info',
328
+ description: '',
329
+ comments: '',
330
+ value: '',
331
+ type: 'grid',
332
+ children: [
333
+ {
334
+ id: 'stiledfchild04a',
335
+ name: '',
336
+ description: 'Contact Phone',
337
+ comments: '',
338
+ value: '',
339
+ type: 'telephone',
340
+ icon: 'contact',
341
+ },
342
+ {
343
+ id: 'stiledfchild04b',
344
+ name: '',
345
+ description: 'Contact Email',
346
+ comments: '',
347
+ value: '',
348
+ type: 'email',
349
+ },
350
+ ],
351
+ },
352
+ ],
353
+ icon: 'Calendar',
354
+ },
355
+ ],
356
+ },
357
+ {
358
+ buttonText: '',
359
+ description:
360
+ 'Pool care done right. We provide professional, timely, and consistent maintenance, repair, and remodeling services.',
361
+ logo: 'https://storage.googleapis.com/homefile-images/blue_ocean_logo.png',
362
+ partnerName: 'Blue Ocean',
363
+ websiteUrl: 'https://blueoceanps.co/',
364
+ imageUrl: '',
365
+ socialLinks: [
366
+ {
367
+ link: 'https://www.instagram.com/blueoceanpoolservices/',
368
+ name: 'instagram',
369
+ },
370
+ {
371
+ link: 'https://www.facebook.com/blueoceanpoolservices/',
372
+ name: 'facebook',
373
+ },
374
+ ],
375
+ _id: '6865628647deac6626315078',
376
+ menuItems: [
377
+ {
378
+ label: 'Remove Tile',
379
+ handleClick: action('Remove Tile Clicked'),
380
+ },
381
+ ],
382
+ type: 'dynamic-tile-form',
383
+ form: [
384
+ {
385
+ id: 'boctile1p',
386
+ name: '',
387
+ description: '',
388
+ comments: '',
389
+ value: '',
390
+ type: 'tile-body',
391
+ visible: true,
392
+ children: [
393
+ {
394
+ id: 'boctilec01',
395
+ name: 'Blue Ocean',
396
+ description: '',
397
+ comments: '',
398
+ value:
399
+ 'https://storage.googleapis.com/homefile-images/blue_ocean_logo.png',
400
+ type: 'tile-body-logo',
401
+ },
402
+ {
403
+ id: 'boctilec02',
404
+ name: '',
405
+ description: '',
406
+ comments: '',
407
+ value: 'Delivering Smiles one pool at a time.',
408
+ type: 'tile-body-header',
409
+ },
410
+ {
411
+ id: 'boctilec03',
412
+ name: '',
413
+ description: '',
414
+ comments: '',
415
+ value: '',
416
+ type: 'tile-body-section-grid',
417
+ children: [
418
+ {
419
+ id: 'boctilevi01',
420
+ name: '',
421
+ description: '',
422
+ comments: '',
423
+ value: 'Weekly Pool Service',
424
+ type: 'vertical-icon',
425
+ icon: 'boc-service',
426
+ },
427
+ {
428
+ id: 'boctilevi02',
429
+ name: '',
430
+ description: '',
431
+ comments: '',
432
+ value: 'Filter Cleans',
433
+ type: 'vertical-icon',
434
+ icon: 'boc-filter',
435
+ },
436
+ {
437
+ id: 'boctilevi03',
438
+ name: '',
439
+ description: '',
440
+ comments: '',
441
+ value: 'Pool Repair',
442
+ type: 'vertical-icon',
443
+ icon: 'boc-repair',
444
+ },
445
+ {
446
+ id: 'boctilevi04',
447
+ name: '',
448
+ description: '',
449
+ comments: '',
450
+ value: 'Pool Renovations',
451
+ type: 'vertical-icon',
452
+ icon: 'boc-renovation',
453
+ },
454
+ {
455
+ id: 'boctilevi05',
456
+ name: '',
457
+ description: '',
458
+ comments: '',
459
+ value: 'Green Pool Recovery',
460
+ type: 'vertical-icon',
461
+ icon: 'boc-green',
462
+ },
463
+ {
464
+ id: 'boctilevi06',
465
+ name: '',
466
+ description: '',
467
+ comments: '',
468
+ value: 'Warranty Service',
469
+ type: 'vertical-icon',
470
+ icon: 'boc-warranty',
471
+ },
472
+ ],
473
+ },
474
+ {
475
+ id: 'boctile2p',
476
+ name: '',
477
+ description: '',
478
+ comments: '',
479
+ value: '',
480
+ type: 'tile-body-action',
481
+ children: [
482
+ {
483
+ id: 'boctilecta1',
484
+ name: 'drawer-link',
485
+ description: '',
486
+ comments: '',
487
+ value: 'Get Estimate',
488
+ type: 'secondary-cta',
489
+ link: 'boctiledf01',
490
+ },
491
+ {
492
+ id: 'boctilecta2',
493
+ name: 'drawer-link',
494
+ description: '',
495
+ comments: '',
496
+ value: 'Schedule Service',
497
+ type: 'primary-cta',
498
+ link: 'boctiledf01',
499
+ },
500
+ ],
501
+ },
502
+ ],
503
+ },
504
+ {
505
+ id: 'boctiledf01',
506
+ name: 'Connect',
507
+ description: '',
508
+ comments: '',
509
+ value: 'service',
510
+ type: 'tile-form',
511
+ visible: true,
512
+ children: [
513
+ {
514
+ id: 'boctiledfchild01',
515
+ name: '',
516
+ description: 'Select the services you are interested in:',
517
+ comments: '',
518
+ value: '',
519
+ options: '',
520
+ type: 'checkbox-group',
521
+ children: [
522
+ {
523
+ id: 'boctiledfchild01a',
524
+ name: 'Weekly Pool Service',
525
+ placeholder: 'Weekly Pool Service',
526
+ description: '',
527
+ comments: '',
528
+ value: false,
529
+ visible: true,
530
+ type: 'checkbox',
531
+ },
532
+ {
533
+ id: 'boctiledfchild01b',
534
+ name: 'Pool Renovations',
535
+ placeholder: 'Pool Renovations',
536
+ description: '',
537
+ comments: '',
538
+ value: false,
539
+ visible: true,
540
+ type: 'checkbox',
541
+ },
542
+ {
543
+ id: 'boctiledfchild01c',
544
+ name: 'Filter Cleaning',
545
+ placeholder: 'Filter Cleaning',
546
+ description: '',
547
+ comments: '',
548
+ value: false,
549
+ visible: true,
550
+ type: 'checkbox',
551
+ },
552
+ {
553
+ id: 'boctiledfchild01d',
554
+ name: 'Green Pool Recovery',
555
+ placeholder: 'Green Pool Recovery',
556
+ description: '',
557
+ comments: '',
558
+ value: false,
559
+ visible: true,
560
+ type: 'checkbox',
561
+ },
562
+ {
563
+ id: 'boctiledfchild01e',
564
+ name: 'Pool Repair',
565
+ placeholder: 'Pool Repair',
566
+ description: '',
567
+ comments: '',
568
+ value: false,
569
+ visible: true,
570
+ type: 'checkbox',
571
+ },
572
+ {
573
+ id: 'boctiledfchild01f',
574
+ name: 'Warranty Service',
575
+ placeholder: 'Warranty Service',
576
+ description: '',
577
+ comments: '',
578
+ value: false,
579
+ visible: true,
580
+ type: 'checkbox',
581
+ },
582
+ ],
583
+ icon: 'life-preserver',
584
+ },
585
+ {
586
+ id: 'boctiledfchild02',
587
+ name: 'Notes',
588
+ placeholder: 'Notes',
589
+ description: '',
590
+ comments: '',
591
+ value: '',
592
+ icon: 'notes',
593
+ type: 'textarea',
594
+ },
595
+ {
596
+ id: 'boctiledfchild03',
597
+ name: 'Timeframe',
598
+ placeholder: 'Timeframe',
599
+ description: '',
600
+ comments: '',
601
+ value: 'What is your timeframe?',
602
+ icon: 'calendar',
603
+ type: 'select',
604
+ options: [
605
+ 'What is your timeframe?',
606
+ 'As soon as possible',
607
+ 'A week out',
608
+ 'A couple of weeks out',
609
+ 'I am flexible',
610
+ ],
611
+ },
612
+ {
613
+ id: 'boctiledfchild04',
614
+ icon: 'contact',
615
+ name: 'My Contact Information',
616
+ placeholder: 'My Contact Information',
617
+ description: '',
618
+ comments: '',
619
+ value: '',
620
+ type: 'grid',
621
+ children: [
622
+ {
623
+ id: 'boctiledfchild04a',
624
+ name: '',
625
+ placeholder: 'Phone',
626
+ description: 'Phone',
627
+ comments: '',
628
+ value: '',
629
+ type: 'telephone',
630
+ icon: 'contact',
631
+ },
632
+ {
633
+ id: 'boctiledfchild04b',
634
+ name: '',
635
+ placeholder: 'Email',
636
+ description: 'Email',
637
+ comments: '',
638
+ value: '',
639
+ type: 'email',
640
+ },
641
+ ],
642
+ },
643
+ ],
644
+ icon: 'Calendar',
645
+ },
646
+ ],
647
+ },
648
+ {
649
+ buttonText: 'View Before & After Pictures',
650
+ description: 'You name it, we organize it.',
651
+ logo: 'https://storage.googleapis.com/homefile-images/2BLogo%2Btagline_green-2.png',
652
+ partnerName: '2B Organized',
653
+ websiteUrl: 'https://2b-organized.com/',
654
+ imageUrl: 'https://storage.googleapis.com/homefile-images/2b-main.JPG',
655
+ form: [],
656
+ onClick: action('Tile Clicked'),
657
+ socialLinks: [
658
+ {
659
+ name: 'instagram',
660
+ link: 'https://www.instagram.com/2borganizedaustin/',
661
+ },
662
+ ],
663
+ _id: '65a8114330d79f807e998b17',
664
+ menuItems: [
665
+ {
666
+ label: 'Remove Tile',
667
+ handleClick: action('Remove Tile Clicked'),
668
+ },
669
+ ],
670
+ },
671
+ {
672
+ buttonText: '',
673
+ description: 'Sam created this partner to test.',
674
+ logo: 'https://storage.googleapis.com/homefile-images/hf_test_partner_logo.png',
675
+ partnerName: 'Test Partner Sam',
676
+ onClick: action('Tile Clicked'),
677
+ websiteUrl: '',
678
+ imageUrl: 'https://storage.googleapis.com/homefile-images/tview.jpeg',
679
+ socialLinks: [],
680
+ _id: '67508e82eb361e47d7b22cb6',
681
+ menuItems: [
682
+ {
683
+ label: 'Remove Tile',
684
+ handleClick: action('Remove Tile Clicked'),
685
+ },
686
+ ],
687
+ type: 'dynamic-tile-form',
688
+ form: [
689
+ {
690
+ id: 'stile1p',
691
+ name: '',
692
+ description: '',
693
+ comments: '',
694
+ value: '',
695
+ type: 'tile-body',
696
+ visible: true,
697
+ children: [
698
+ {
699
+ id: 'stilec01',
700
+ name: 'Test Partner',
701
+ description: '',
702
+ comments: '',
703
+ value:
704
+ 'https://storage.googleapis.com/homefile-images/hf_test_partner_logo.png',
705
+ type: 'tile-body-logo',
706
+ },
707
+ {
708
+ id: 'stilec02',
709
+ name: '',
710
+ description: '',
711
+ comments: '',
712
+ value: 'Test Partner',
713
+ type: 'tile-body-header',
714
+ },
715
+ {
716
+ id: 'stilec03',
717
+ name: '',
718
+ description: '',
719
+ comments: '',
720
+ value: '',
721
+ type: 'tile-body-section-grid',
722
+ children: [
723
+ {
724
+ id: 'stilevi01',
725
+ name: '',
726
+ description: '',
727
+ comments: '',
728
+ value: 'Pressure Washing',
729
+ type: 'vertical-icon',
730
+ icon: 'sh-pressure',
731
+ },
732
+ {
733
+ id: 'stilevi02',
734
+ name: '',
735
+ description: '',
736
+ comments: '',
737
+ value: 'Widow Cleaning',
738
+ type: 'vertical-icon',
739
+ icon: 'sh-window',
740
+ },
741
+ {
742
+ id: 'stilevi03',
743
+ name: '',
744
+ description: '',
745
+ comments: '',
746
+ value: 'Roof Cleaning',
747
+ type: 'vertical-icon',
748
+ icon: 'sh-roof',
749
+ },
750
+ {
751
+ id: 'stilevi04',
752
+ name: '',
753
+ description: '',
754
+ comments: '',
755
+ value: 'Holiday Lights',
756
+ type: 'vertical-icon',
757
+ icon: 'sh-lights',
758
+ },
759
+ {
760
+ id: 'stilevi05',
761
+ name: '',
762
+ description: '',
763
+ comments: '',
764
+ value: 'Gutter Cleaning',
765
+ type: 'vertical-icon',
766
+ icon: 'sh-gutter',
767
+ },
768
+ {
769
+ id: 'stilevi06',
770
+ name: '',
771
+ description: '',
772
+ comments: '',
773
+ value: 'House Washing',
774
+ type: 'vertical-icon',
775
+ icon: 'sh-house',
776
+ },
777
+ ],
778
+ },
779
+ {
780
+ id: 'stile2p',
781
+ name: '',
782
+ description: '',
783
+ comments: '',
784
+ value: '',
785
+ type: 'tile-body-action',
786
+ children: [
787
+ {
788
+ id: 'stilecta1',
789
+ name: 'drawer-link',
790
+ description: '',
791
+ comments: '',
792
+ value: 'Schedule Service',
793
+ type: 'primary-cta',
794
+ link: 'stiledf01',
795
+ },
796
+ ],
797
+ },
798
+ ],
799
+ },
800
+ {
801
+ id: 'stiledf01',
802
+ name: 'Request Service',
803
+ description: '',
804
+ comments: '',
805
+ value: 'service',
806
+ type: 'tile-form',
807
+ visible: true,
808
+ children: [
809
+ {
810
+ id: 'stiledfchild01',
811
+ name: '',
812
+ description: 'Select the services you are interested in:',
813
+ comments: '',
814
+ value: '',
815
+ options: '',
816
+ type: 'checkbox-group',
817
+ children: [
818
+ {
819
+ id: 'stiledfchild01a',
820
+ name: 'Pressure Washing',
821
+ description: '',
822
+ comments: '',
823
+ value: false,
824
+ visible: true,
825
+ type: 'checkbox',
826
+ },
827
+ {
828
+ id: 'stiledfchild01b',
829
+ name: 'Gutter Cleaning',
830
+ description: '',
831
+ comments: '',
832
+ value: false,
833
+ visible: true,
834
+ type: 'checkbox',
835
+ },
836
+ {
837
+ id: 'stiledfchild01c',
838
+ name: 'Window Cleaning',
839
+ description: '',
840
+ comments: '',
841
+ value: false,
842
+ visible: true,
843
+ type: 'checkbox',
844
+ },
845
+ {
846
+ id: 'stiledfchild01d',
847
+ name: 'Holiday Lights',
848
+ description: '',
849
+ comments: '',
850
+ value: false,
851
+ visible: true,
852
+ type: 'checkbox',
853
+ },
854
+ {
855
+ id: 'stiledfchild01e',
856
+ name: 'Roof Cleaning',
857
+ description: '',
858
+ comments: '',
859
+ value: false,
860
+ visible: true,
861
+ type: 'checkbox',
862
+ },
863
+ {
864
+ id: 'stiledfchild01f',
865
+ name: 'Exterior Cleaning',
866
+ description: '',
867
+ comments: '',
868
+ value: false,
869
+ visible: true,
870
+ type: 'checkbox',
871
+ },
872
+ ],
873
+ icon: 'pressure-washer',
874
+ },
875
+ {
876
+ id: 'stiledfchild02',
877
+ name: 'Notes',
878
+ description: '',
879
+ comments: '',
880
+ value: '',
881
+ icon: 'notes',
882
+ type: 'textarea',
883
+ },
884
+ {
885
+ id: 'stiledfchild03',
886
+ name: 'Timeframe',
887
+ description: '',
888
+ comments: '',
889
+ value: 'What is your timeframe?',
890
+ icon: '',
891
+ type: 'select',
892
+ options: [
893
+ 'What is your timeframe?',
894
+ 'As soon as possible',
895
+ 'A week out',
896
+ 'A couple of weeks out',
897
+ 'I am flexible',
898
+ ],
899
+ },
900
+ {
901
+ id: 'stiledfchild04',
902
+ icon: 'contact',
903
+ name: 'Contact Info',
904
+ description: '',
905
+ comments: '',
906
+ value: '',
907
+ type: 'grid',
908
+ children: [
909
+ {
910
+ id: 'stiledfchild04a',
911
+ name: '',
912
+ description: 'Contact Phone',
913
+ comments: '',
914
+ value: '',
915
+ type: 'telephone',
916
+ icon: 'contact',
917
+ },
918
+ {
919
+ id: 'stiledfchild04b',
920
+ name: '',
921
+ description: 'Contact Email',
922
+ comments: '',
923
+ value: '',
924
+ type: 'email',
925
+ },
926
+ ],
927
+ },
928
+ ],
929
+ icon: 'Calendar',
930
+ },
931
+ ],
932
+ },
933
+ {
934
+ buttonText: '',
935
+ description:
936
+ 'Pool care done right. We provide professional, timely, and consistent maintenance, repair, and remodeling services.',
937
+ logo: 'https://storage.googleapis.com/homefile-images/blue_ocean_logo.png',
938
+ partnerName: 'Blue Ocean',
939
+ websiteUrl: 'https://blueoceanps.co/',
940
+ imageUrl: '',
941
+ socialLinks: [
942
+ {
943
+ link: 'https://www.instagram.com/blueoceanpoolservices/',
944
+ name: 'instagram',
945
+ },
946
+ {
947
+ link: 'https://www.facebook.com/blueoceanpoolservices/',
948
+ name: 'facebook',
949
+ },
950
+ ],
951
+ _id: '6865628647deac6626315078',
952
+ menuItems: [
953
+ {
954
+ label: 'Remove Tile',
955
+ handleClick: action('Remove Tile Clicked'),
956
+ },
957
+ ],
958
+ type: 'dynamic-tile-form',
959
+ form: [
960
+ {
961
+ id: 'boctile1p',
962
+ name: '',
963
+ description: '',
964
+ comments: '',
965
+ value: '',
966
+ type: 'tile-body',
967
+ visible: true,
968
+ children: [
969
+ {
970
+ id: 'boctilec01',
971
+ name: 'Blue Ocean',
972
+ description: '',
973
+ comments: '',
974
+ value:
975
+ 'https://storage.googleapis.com/homefile-images/blue_ocean_logo.png',
976
+ type: 'tile-body-logo',
977
+ },
978
+ {
979
+ id: 'boctilec02',
980
+ name: '',
981
+ description: '',
982
+ comments: '',
983
+ value: 'Delivering Smiles one pool at a time.',
984
+ type: 'tile-body-header',
985
+ },
986
+ {
987
+ id: 'boctilec03',
988
+ name: '',
989
+ description: '',
990
+ comments: '',
991
+ value: '',
992
+ type: 'tile-body-section-grid',
993
+ children: [
994
+ {
995
+ id: 'boctilevi01',
996
+ name: '',
997
+ description: '',
998
+ comments: '',
999
+ value: 'Weekly Pool Service',
1000
+ type: 'vertical-icon',
1001
+ icon: 'boc-service',
1002
+ },
1003
+ {
1004
+ id: 'boctilevi02',
1005
+ name: '',
1006
+ description: '',
1007
+ comments: '',
1008
+ value: 'Filter Cleans',
1009
+ type: 'vertical-icon',
1010
+ icon: 'boc-filter',
1011
+ },
1012
+ {
1013
+ id: 'boctilevi03',
1014
+ name: '',
1015
+ description: '',
1016
+ comments: '',
1017
+ value: 'Pool Repair',
1018
+ type: 'vertical-icon',
1019
+ icon: 'boc-repair',
1020
+ },
1021
+ {
1022
+ id: 'boctilevi04',
1023
+ name: '',
1024
+ description: '',
1025
+ comments: '',
1026
+ value: 'Pool Renovations',
1027
+ type: 'vertical-icon',
1028
+ icon: 'boc-renovation',
1029
+ },
1030
+ {
1031
+ id: 'boctilevi05',
1032
+ name: '',
1033
+ description: '',
1034
+ comments: '',
1035
+ value: 'Green Pool Recovery',
1036
+ type: 'vertical-icon',
1037
+ icon: 'boc-green',
1038
+ },
1039
+ {
1040
+ id: 'boctilevi06',
1041
+ name: '',
1042
+ description: '',
1043
+ comments: '',
1044
+ value: 'Warranty Service',
1045
+ type: 'vertical-icon',
1046
+ icon: 'boc-warranty',
1047
+ },
1048
+ ],
1049
+ },
1050
+ {
1051
+ id: 'boctile2p',
1052
+ name: '',
1053
+ description: '',
1054
+ comments: '',
1055
+ value: '',
1056
+ type: 'tile-body-action',
1057
+ children: [
1058
+ {
1059
+ id: 'boctilecta1',
1060
+ name: 'drawer-link',
1061
+ description: '',
1062
+ comments: '',
1063
+ value: 'Get Estimate',
1064
+ type: 'secondary-cta',
1065
+ link: 'boctiledf01',
1066
+ },
1067
+ {
1068
+ id: 'boctilecta2',
1069
+ name: 'drawer-link',
1070
+ description: '',
1071
+ comments: '',
1072
+ value: 'Schedule Service',
1073
+ type: 'primary-cta',
1074
+ link: 'boctiledf01',
1075
+ },
1076
+ ],
1077
+ },
1078
+ ],
1079
+ },
1080
+ {
1081
+ id: 'boctiledf01',
1082
+ name: 'Connect',
1083
+ description: '',
1084
+ comments: '',
1085
+ value: 'service',
1086
+ type: 'tile-form',
1087
+ visible: true,
1088
+ children: [
1089
+ {
1090
+ id: 'boctiledfchild01',
1091
+ name: '',
1092
+ description: 'Select the services you are interested in:',
1093
+ comments: '',
1094
+ value: '',
1095
+ options: '',
1096
+ type: 'checkbox-group',
1097
+ children: [
1098
+ {
1099
+ id: 'boctiledfchild01a',
1100
+ name: 'Weekly Pool Service',
1101
+ placeholder: 'Weekly Pool Service',
1102
+ description: '',
1103
+ comments: '',
1104
+ value: false,
1105
+ visible: true,
1106
+ type: 'checkbox',
1107
+ },
1108
+ {
1109
+ id: 'boctiledfchild01b',
1110
+ name: 'Pool Renovations',
1111
+ placeholder: 'Pool Renovations',
1112
+ description: '',
1113
+ comments: '',
1114
+ value: false,
1115
+ visible: true,
1116
+ type: 'checkbox',
1117
+ },
1118
+ {
1119
+ id: 'boctiledfchild01c',
1120
+ name: 'Filter Cleaning',
1121
+ placeholder: 'Filter Cleaning',
1122
+ description: '',
1123
+ comments: '',
1124
+ value: false,
1125
+ visible: true,
1126
+ type: 'checkbox',
1127
+ },
1128
+ {
1129
+ id: 'boctiledfchild01d',
1130
+ name: 'Green Pool Recovery',
1131
+ placeholder: 'Green Pool Recovery',
1132
+ description: '',
1133
+ comments: '',
1134
+ value: false,
1135
+ visible: true,
1136
+ type: 'checkbox',
1137
+ },
1138
+ {
1139
+ id: 'boctiledfchild01e',
1140
+ name: 'Pool Repair',
1141
+ placeholder: 'Pool Repair',
1142
+ description: '',
1143
+ comments: '',
1144
+ value: false,
1145
+ visible: true,
1146
+ type: 'checkbox',
1147
+ },
1148
+ {
1149
+ id: 'boctiledfchild01f',
1150
+ name: 'Warranty Service',
1151
+ placeholder: 'Warranty Service',
1152
+ description: '',
1153
+ comments: '',
1154
+ value: false,
1155
+ visible: true,
1156
+ type: 'checkbox',
1157
+ },
1158
+ ],
1159
+ icon: 'life-preserver',
1160
+ },
1161
+ {
1162
+ id: 'boctiledfchild02',
1163
+ name: 'Notes',
1164
+ placeholder: 'Notes',
1165
+ description: '',
1166
+ comments: '',
1167
+ value: '',
1168
+ icon: 'notes',
1169
+ type: 'textarea',
1170
+ },
1171
+ {
1172
+ id: 'boctiledfchild03',
1173
+ name: 'Timeframe',
1174
+ placeholder: 'Timeframe',
1175
+ description: '',
1176
+ comments: '',
1177
+ value: 'What is your timeframe?',
1178
+ icon: 'calendar',
1179
+ type: 'select',
1180
+ options: [
1181
+ 'What is your timeframe?',
1182
+ 'As soon as possible',
1183
+ 'A week out',
1184
+ 'A couple of weeks out',
1185
+ 'I am flexible',
1186
+ ],
1187
+ },
1188
+ {
1189
+ id: 'boctiledfchild04',
1190
+ icon: 'contact',
1191
+ name: 'My Contact Information',
1192
+ placeholder: 'My Contact Information',
1193
+ description: '',
1194
+ comments: '',
1195
+ value: '',
1196
+ type: 'grid',
1197
+ children: [
1198
+ {
1199
+ id: 'boctiledfchild04a',
1200
+ name: '',
1201
+ placeholder: 'Phone',
1202
+ description: 'Phone',
1203
+ comments: '',
1204
+ value: '',
1205
+ type: 'telephone',
1206
+ icon: 'contact',
1207
+ },
1208
+ {
1209
+ id: 'boctiledfchild04b',
1210
+ name: '',
1211
+ placeholder: 'Email',
1212
+ description: 'Email',
1213
+ comments: '',
1214
+ value: '',
1215
+ type: 'email',
1216
+ },
1217
+ ],
1218
+ },
1219
+ ],
1220
+ icon: 'Calendar',
1221
+ },
1222
+ ],
1223
+ },
67
1224
  ]