bhl-forms 0.6.6 → 0.6.7
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.
- package/dist/forms/accidentsAndInjuries.es.js +1 -1
- package/dist/forms/accidentsAndInjuries.iife.js +1 -1
- package/dist/forms/accidentsAndInjuries.json +1 -1
- package/dist/forms/childAndFamily.es.js +1 -1
- package/dist/forms/childAndFamily.iife.js +1 -1
- package/dist/forms/childAndFamily.json +1 -1
- package/dist/forms/childAndFamilySingle.es.js +422 -53
- package/dist/forms/childAndFamilySingle.iife.js +1 -1
- package/dist/forms/childAndFamilySingle.json +1 -1
- package/dist/forms/civilLawsuit.es.js +878 -260
- package/dist/forms/civilLawsuit.iife.js +1 -1
- package/dist/forms/civilLawsuit.json +1 -1
- package/dist/forms/contracts.es.js +1 -1
- package/dist/forms/contracts.iife.js +1 -1
- package/dist/forms/contracts.json +1 -1
- package/dist/forms/criminal.es.js +833 -1471
- package/dist/forms/criminal.iife.js +1 -1
- package/dist/forms/criminal.json +1 -1
- package/dist/forms/employmentAndWorkplace.es.js +789 -184
- package/dist/forms/employmentAndWorkplace.iife.js +1 -1
- package/dist/forms/employmentAndWorkplace.json +1 -1
- package/dist/forms/generalLegal.es.js +2 -2
- package/dist/forms/generalLegal.iife.js +1 -1
- package/dist/forms/generalLegal.json +1 -1
- package/dist/forms/generalLegalPopUnder.es.js +2 -2
- package/dist/forms/generalLegalPopUnder.iife.js +1 -1
- package/dist/forms/generalLegalPopUnder.json +1 -1
- package/dist/forms/generalLegalPopUnderSingle.es.js +4383 -0
- package/dist/forms/generalLegalPopUnderSingle.iife.js +1 -0
- package/dist/forms/generalLegalPopUnderSingle.json +1 -0
- package/dist/forms/generalLegalSingle.es.js +24 -5
- package/dist/forms/generalLegalSingle.iife.js +1 -1
- package/dist/forms/generalLegalSingle.json +1 -1
- package/dist/forms/generalLegalThankYou.es.js +2 -2
- package/dist/forms/generalLegalThankYou.iife.js +1 -1
- package/dist/forms/generalLegalThankYou.json +1 -1
- package/dist/forms/harassmentAndDiscrimination.es.js +1 -1
- package/dist/forms/harassmentAndDiscrimination.iife.js +1 -1
- package/dist/forms/harassmentAndDiscrimination.json +1 -1
- package/dist/forms/malpractice.es.js +1 -1
- package/dist/forms/malpractice.iife.js +1 -1
- package/dist/forms/malpractice.json +1 -1
- package/dist/forms/realEstate.es.js +1 -1
- package/dist/forms/realEstate.iife.js +1 -1
- package/dist/forms/realEstate.json +1 -1
- package/dist/forms/repossession.es.js +1 -1
- package/dist/forms/repossession.iife.js +1 -1
- package/dist/forms/repossession.json +1 -1
- package/dist/forms/testRedirects.es.js +1 -1
- package/dist/forms/testRedirects.iife.js +1 -1
- package/dist/forms/testRedirects.json +1 -1
- package/dist/forms/willsAndTrusts.es.js +1 -1
- package/dist/forms/willsAndTrusts.iife.js +1 -1
- package/dist/forms/willsAndTrusts.json +1 -1
- package/package.json +1 -1
|
@@ -65,12 +65,17 @@ const radio = (updates) => {
|
|
|
65
65
|
}, updates)
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
-
const
|
|
69
|
-
updates.legendClass = 'required';
|
|
70
|
-
updates.fieldsetClass
|
|
71
|
-
|
|
68
|
+
const col2RadioCenter = (updates) => {
|
|
69
|
+
updates.legendClass = 'required t-w-[100%] t-text-center';
|
|
70
|
+
if (typeof updates.fieldsetClass === 'undefined') {
|
|
71
|
+
updates.fieldsetClass = '$reset t-flex t-justify-center';
|
|
72
|
+
}
|
|
73
|
+
updates.optionsClass = 't-pl-4 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2';
|
|
72
74
|
updates.innerClass = 't-items-start';
|
|
73
75
|
updates.wrapperClass = '$reset t-flex t-cursor-pointer t-mb-3';
|
|
76
|
+
updates.optionClass = 't-pl-4 md:t-pl-8 md:t-min-w-[200px]';
|
|
77
|
+
updates.messagesClass = 't-flex t-justify-center';
|
|
78
|
+
updates.helpClass = 't-mt-0 t-mb-4 !t-text-sm t-text-center';
|
|
74
79
|
return radio(updates)
|
|
75
80
|
};
|
|
76
81
|
|
|
@@ -97,6 +102,37 @@ const sbsYesNoRadio = (updates) => {
|
|
|
97
102
|
return sbs2ItemRadio(updates)
|
|
98
103
|
};
|
|
99
104
|
|
|
105
|
+
const verticalButtonRadio = (updates) => {
|
|
106
|
+
updates.legendClass = 'legend-left';
|
|
107
|
+
updates.fieldsetClass = '$reset t-flex t-justify-center t-items-center';
|
|
108
|
+
if (typeof updates.optionsClass === 'undefined') {
|
|
109
|
+
updates.optionsClass = 't-flex t-flex-col sm:t-flex-row t-justify-center t-my-3';
|
|
110
|
+
}
|
|
111
|
+
updates.optionClass = 'radiobtn t-my-2 sm:t-my-0 t-mx-2 md:t-mx-5';
|
|
112
|
+
updates.wrapperClass = '$reset formkit-wrapper t-mb-0 t-flex t-items-center t-h-[100%]';
|
|
113
|
+
updates.labelClass = 't-font-semibold t-text-[#1e448f] t-w-[100%]';
|
|
114
|
+
updates.decoratorIcon = false;
|
|
115
|
+
updates.messagesClass = 't-flex t-justify-center';
|
|
116
|
+
return radio(updates)
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
const verticalYesNoRadio = (updates) => {
|
|
120
|
+
updates.options = ['Yes', 'No'];
|
|
121
|
+
updates.optionsClass = 't-flex t-justify-center t-my-3';
|
|
122
|
+
return verticalButtonRadio(updates)
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
const verticalRadio = (updates) => {
|
|
126
|
+
updates.legendClass = 'required';
|
|
127
|
+
updates.fieldsetClass = '$reset t-flex t-justify-center';
|
|
128
|
+
updates.optionsClass = 't-pl-2 t-pt-3';
|
|
129
|
+
updates.innerClass = 't-items-center';
|
|
130
|
+
updates.wrapperClass = '$reset t-flex t-cursor-pointer t-mb-3';
|
|
131
|
+
updates.optionClass = 't-pl-4 md:t-pl-12';
|
|
132
|
+
updates.messagesClass = 't-flex t-justify-center';
|
|
133
|
+
return radio(updates)
|
|
134
|
+
};
|
|
135
|
+
|
|
100
136
|
const select = (updates) => {
|
|
101
137
|
if (updates.name && !updates.id) {
|
|
102
138
|
updates.id = updates.name;
|
|
@@ -177,6 +213,13 @@ const sbsDate = (updates) => {
|
|
|
177
213
|
return date(updates)
|
|
178
214
|
};
|
|
179
215
|
|
|
216
|
+
const verticalDate = (updates) => {
|
|
217
|
+
updates.wrapperClass = 't-flex t-justify-center';
|
|
218
|
+
updates.inputClass = 't-text-center';
|
|
219
|
+
updates.messagesClass = 't-flex t-justify-center';
|
|
220
|
+
return date(updates)
|
|
221
|
+
};
|
|
222
|
+
|
|
180
223
|
const applicantAge = (scope) => sbsText({
|
|
181
224
|
name: scope ? scope + ':' + 'Applicant_Age' : 'Applicant_Age',
|
|
182
225
|
label: 'Age of Applicant?',
|
|
@@ -191,11 +234,15 @@ const applicantAge = (scope) => sbsText({
|
|
|
191
234
|
}
|
|
192
235
|
});
|
|
193
236
|
|
|
194
|
-
const atFault = (scope) => sbsYesNoRadio({
|
|
237
|
+
const atFault$1 = (scope) => sbsYesNoRadio({
|
|
195
238
|
name: scope ? scope + ':' + 'At_Fault' : 'At_Fault',
|
|
196
239
|
label: 'Were You at Fault?'
|
|
197
240
|
});
|
|
198
241
|
|
|
242
|
+
const atFaultCenter = (scope) => verticalYesNoRadio({
|
|
243
|
+
name: scope ? scope + ':' + 'At_Fault' : 'At_Fault',
|
|
244
|
+
});
|
|
245
|
+
|
|
199
246
|
const bankruptcyCrossSell = () => sbsCheckbox({
|
|
200
247
|
label: "I'd also like a consult for bankruptcy or debt elimination (optional)",
|
|
201
248
|
help: "Note: you will be contacted separately by a bankruptcy/debt expert",
|
|
@@ -221,7 +268,7 @@ const bloodContentAlcoholTest = (scope) => sbsSelect({
|
|
|
221
268
|
]
|
|
222
269
|
});
|
|
223
270
|
|
|
224
|
-
const causeOfInjury = (scope) => sbsSelect({
|
|
271
|
+
const causeOfInjury$1 = (scope) => sbsSelect({
|
|
225
272
|
name: scope ? scope + ':' + 'Cause_Of_Injury' : 'Cause_Of_Injury',
|
|
226
273
|
label: 'Cause of Injury:',
|
|
227
274
|
options: [
|
|
@@ -233,6 +280,27 @@ const causeOfInjury = (scope) => sbsSelect({
|
|
|
233
280
|
]
|
|
234
281
|
});
|
|
235
282
|
|
|
283
|
+
const causeOfInjuryCenter = (scope) => col2RadioCenter({
|
|
284
|
+
name: scope ? scope + ':' + 'Cause_Of_Injury' : 'Cause_Of_Injury',
|
|
285
|
+
options: [
|
|
286
|
+
"Traumatic Physical Injury (Accident)",
|
|
287
|
+
"Repeated Trauma Injury",
|
|
288
|
+
"Mental Injury",
|
|
289
|
+
"Occupational Disease",
|
|
290
|
+
"Not Sure"
|
|
291
|
+
]
|
|
292
|
+
});
|
|
293
|
+
|
|
294
|
+
const causeOfDeathCenter = () => col2RadioCenter({
|
|
295
|
+
name: 'Cause_Of_Death',
|
|
296
|
+
options: [
|
|
297
|
+
"Vehicle Accident",
|
|
298
|
+
"Negligent/Careless Act",
|
|
299
|
+
"Reckless Act",
|
|
300
|
+
"Other"
|
|
301
|
+
]
|
|
302
|
+
});
|
|
303
|
+
|
|
236
304
|
const childHome = (scope) => sbsSelect({
|
|
237
305
|
name: scope ? scope + ':' + 'Child_Home' : 'Child_Home',
|
|
238
306
|
label: 'With Whom Do the Children Currently Live?',
|
|
@@ -266,7 +334,7 @@ const childRelationship = (scope) => sbsSelect({
|
|
|
266
334
|
]
|
|
267
335
|
});
|
|
268
336
|
|
|
269
|
-
const claimStatus = (scope) => sbsSelect({
|
|
337
|
+
const claimStatus$1 = (scope) => sbsSelect({
|
|
270
338
|
name: scope ? scope + ':' + 'Claim_Status' : 'Claim_Status',
|
|
271
339
|
label: "Status of Claim:",
|
|
272
340
|
options: [
|
|
@@ -277,6 +345,16 @@ const claimStatus = (scope) => sbsSelect({
|
|
|
277
345
|
]
|
|
278
346
|
});
|
|
279
347
|
|
|
348
|
+
const claimStatusCenter = (scope) => col2RadioCenter({
|
|
349
|
+
name: scope ? scope + ':' + 'Claim_Status' : 'Claim_Status',
|
|
350
|
+
options: [
|
|
351
|
+
"No action taken yet",
|
|
352
|
+
"Demand for compensation made",
|
|
353
|
+
"Lawsuit filed",
|
|
354
|
+
"Other"
|
|
355
|
+
]
|
|
356
|
+
});
|
|
357
|
+
|
|
280
358
|
const comments = (updates, scope) => textArea(
|
|
281
359
|
merge({
|
|
282
360
|
name: scope ? scope + ':' + 'Comments' : 'Comments',
|
|
@@ -285,7 +363,16 @@ const comments = (updates, scope) => textArea(
|
|
|
285
363
|
}, updates)
|
|
286
364
|
);
|
|
287
365
|
|
|
288
|
-
const
|
|
366
|
+
const criminalChargesFiledCenter = () => verticalRadio({
|
|
367
|
+
name: 'Criminal_Charges_Filed',
|
|
368
|
+
options: [
|
|
369
|
+
"Yes",
|
|
370
|
+
"No",
|
|
371
|
+
"Not Sure"
|
|
372
|
+
]
|
|
373
|
+
});
|
|
374
|
+
|
|
375
|
+
const degreeOfInterest$1 = (scope, help) => sbsSelect({
|
|
289
376
|
name: scope ? scope + ':' + 'Degree_Of_Interest' : 'Degree_Of_Interest',
|
|
290
377
|
id: scope ? scope + ':' + 'Degree_Of_Interest' : 'Degree_Of_Interest',
|
|
291
378
|
label: 'How Likely Are You to Pay if Your Issue Could be Resolved?',
|
|
@@ -298,7 +385,19 @@ const degreeOfInterest = (scope, help) => sbsSelect({
|
|
|
298
385
|
]
|
|
299
386
|
});
|
|
300
387
|
|
|
301
|
-
const
|
|
388
|
+
const degreeOfInterestCenter = (scope, help) => col2RadioCenter({
|
|
389
|
+
name: scope ? scope + ':' + 'Degree_Of_Interest' : 'Degree_Of_Interest',
|
|
390
|
+
id: scope ? scope + ':' + 'Degree_Of_Interest' : 'Degree_Of_Interest',
|
|
391
|
+
help: help,
|
|
392
|
+
options: [
|
|
393
|
+
'Definitely',
|
|
394
|
+
'Probably',
|
|
395
|
+
'Maybe',
|
|
396
|
+
"Absolutely Can't Afford"
|
|
397
|
+
]
|
|
398
|
+
});
|
|
399
|
+
|
|
400
|
+
const degreeOfInterestHelp = (scope) => degreeOfInterest$1(scope, 'No payment necessary to speak with lawyers.');
|
|
302
401
|
|
|
303
402
|
const disabilityConditionStopWork = (scope) => sbsYesNoRadio({
|
|
304
403
|
name: scope ? scope + ':' + 'Disability_Condition_Stop_Work' : 'Disability_Condition_Stop_Work',
|
|
@@ -310,11 +409,15 @@ const disabilityWorkHistory = (scope) => sbsYesNoRadio({
|
|
|
310
409
|
label: 'Have You Had a Full-Time Job Within the Past 5 Years?'
|
|
311
410
|
});
|
|
312
411
|
|
|
313
|
-
const doctorTreatment = (scope) => sbsYesNoRadio({
|
|
412
|
+
const doctorTreatment$1 = (scope) => sbsYesNoRadio({
|
|
314
413
|
name: scope ? scope + ':' + 'Doctor_Treatment' : 'Doctor_Treatment',
|
|
315
414
|
label: 'Have You Recently Been Treated by a Doctor, Hospital or Clinic?',
|
|
316
415
|
});
|
|
317
416
|
|
|
417
|
+
const doctorTreatmentCenter = () => verticalYesNoRadio({
|
|
418
|
+
name: 'Doctor_Treatment',
|
|
419
|
+
});
|
|
420
|
+
|
|
318
421
|
const email = () => sbsText({
|
|
319
422
|
$formkit: 'email',
|
|
320
423
|
name: 'Email',
|
|
@@ -329,8 +432,7 @@ const email = () => sbsText({
|
|
|
329
432
|
}
|
|
330
433
|
});
|
|
331
434
|
|
|
332
|
-
const
|
|
333
|
-
label: 'The Employer Is a:',
|
|
435
|
+
const employerTypeCenter = () => col2RadioCenter({
|
|
334
436
|
name: 'Employer_Type',
|
|
335
437
|
options: [
|
|
336
438
|
"Sole proprietorship (mom and pop)",
|
|
@@ -343,15 +445,12 @@ const employerType = () => sbsSelect({
|
|
|
343
445
|
]
|
|
344
446
|
});
|
|
345
447
|
|
|
346
|
-
const
|
|
448
|
+
const employeeAtCompanyCenter = (scope) => verticalYesNoRadio({
|
|
347
449
|
name: scope ? scope + ':' + 'Employee_At_Company' : 'Employee_At_Company',
|
|
348
|
-
label: 'Do you/they still work at the company?'
|
|
349
450
|
});
|
|
350
451
|
|
|
351
|
-
const
|
|
452
|
+
const employmentAndWorkplaceTOLPDisplayCenter = (updates) => col2RadioCenter(merge({
|
|
352
453
|
name: 'Type_Of_Legal_Problem_Display',
|
|
353
|
-
if: '$get(Type_Of_Legal_Problem).value == "Employment and Workplace"',
|
|
354
|
-
label: 'Select The Workplace Issue:',
|
|
355
454
|
options: [
|
|
356
455
|
'Workplace Harassment',
|
|
357
456
|
'Workplace Discrimination',
|
|
@@ -388,21 +487,29 @@ const firstName = () => sbsText({
|
|
|
388
487
|
}
|
|
389
488
|
});
|
|
390
489
|
|
|
391
|
-
const haveAttorney = (scope) => sbsYesNoRadio({
|
|
490
|
+
const haveAttorney$1 = (scope) => sbsYesNoRadio({
|
|
392
491
|
name: scope ? scope + ':' + 'Have_Attorney' : 'Have_Attorney',
|
|
393
492
|
label: 'Already Working with An Attorney?'
|
|
394
493
|
});
|
|
395
494
|
|
|
495
|
+
const haveAttorneyCenter = () => verticalYesNoRadio({
|
|
496
|
+
name: 'Have_Attorney',
|
|
497
|
+
});
|
|
498
|
+
|
|
396
499
|
const haveChildren = (scope) => sbsYesNoRadio({
|
|
397
500
|
name: scope ? scope + ':' + 'Have_Children' : 'Have_Children',
|
|
398
501
|
label: 'Do You Have Children?'
|
|
399
502
|
});
|
|
400
503
|
|
|
401
|
-
const incidentDate = (scope) => sbsDate({
|
|
504
|
+
const incidentDate$1 = (scope) => sbsDate({
|
|
402
505
|
name: scope ? scope + ':' + 'Incident_Date' : 'Incident_Date',
|
|
403
506
|
label: 'Date of Incident:',
|
|
404
507
|
});
|
|
405
508
|
|
|
509
|
+
const incidentDateCenter = (scope) => verticalDate({
|
|
510
|
+
name: scope ? scope + ':' + 'Incident_Date' : 'Incident_Date',
|
|
511
|
+
});
|
|
512
|
+
|
|
406
513
|
const lastName = () => sbsText({
|
|
407
514
|
$formkit: 'text',
|
|
408
515
|
label: 'Last Name:',
|
|
@@ -512,9 +619,7 @@ const maritalStatus = (scope) => sbsSelect({
|
|
|
512
619
|
]
|
|
513
620
|
});
|
|
514
621
|
|
|
515
|
-
|
|
516
|
-
const numEmployeesOfBusiness = () => sbsSelect({
|
|
517
|
-
label: 'Total Employees of Business? (estimated)',
|
|
622
|
+
const numEmployeesOfBusinessCenter = () => col2RadioCenter({
|
|
518
623
|
name: 'Num_Employees_Of_Business',
|
|
519
624
|
options: [
|
|
520
625
|
"1-5",
|
|
@@ -550,7 +655,7 @@ const phone = () => sbsText({
|
|
|
550
655
|
helpClass: "t-mt-2.5 md:t-text-right md:t-mt-[-2px]"
|
|
551
656
|
});
|
|
552
657
|
|
|
553
|
-
const primaryInjury = (scope) => sbs2ColRadio({
|
|
658
|
+
const primaryInjury$1 = (scope) => sbs2ColRadio({
|
|
554
659
|
name: scope ? scope + ':' + 'Primary_Injury' : 'Primary_Injury',
|
|
555
660
|
label: 'Primary Injury:',
|
|
556
661
|
options: [
|
|
@@ -561,7 +666,21 @@ const primaryInjury = (scope) => sbs2ColRadio({
|
|
|
561
666
|
"Headaches",
|
|
562
667
|
"Memory Loss",
|
|
563
668
|
"Loss of Limb",
|
|
564
|
-
"
|
|
669
|
+
"Not Sure or Other"
|
|
670
|
+
]
|
|
671
|
+
});
|
|
672
|
+
|
|
673
|
+
const primaryInjuryCenter = (scope) => col2RadioCenter({
|
|
674
|
+
name: scope ? scope + ':' + 'Primary_Injury' : 'Primary_Injury',
|
|
675
|
+
options: [
|
|
676
|
+
"Anxiety",
|
|
677
|
+
"Back or Neck Pain",
|
|
678
|
+
"Broken Bones",
|
|
679
|
+
"Cuts and Bruises",
|
|
680
|
+
"Headaches",
|
|
681
|
+
"Memory Loss",
|
|
682
|
+
"Loss of Limb",
|
|
683
|
+
"Not Sure or Other"
|
|
565
684
|
]
|
|
566
685
|
});
|
|
567
686
|
|
|
@@ -575,6 +694,17 @@ const policeReportFiled = (scope) => sbsYesNoRadio({
|
|
|
575
694
|
label: 'Was a Police Report Filed?'
|
|
576
695
|
});
|
|
577
696
|
|
|
697
|
+
const relationshipToVictimCenter = () => col2RadioCenter({
|
|
698
|
+
name: 'Relationship_To_Victim',
|
|
699
|
+
options: [
|
|
700
|
+
"Parent",
|
|
701
|
+
"Spouse",
|
|
702
|
+
"Sibling",
|
|
703
|
+
"Friend",
|
|
704
|
+
"Other"
|
|
705
|
+
]
|
|
706
|
+
});
|
|
707
|
+
|
|
578
708
|
const roleInMatterProbate = (scope) => sbsSelect({
|
|
579
709
|
name: scope ? scope + ':' + 'Role_In_Matter_Probate' : 'Role_In_Matter_Probate',
|
|
580
710
|
label: "What Is Your Role in this Matter?",
|
|
@@ -646,9 +776,9 @@ const valueOfAssets = (scope) => sbsSelect({
|
|
|
646
776
|
]
|
|
647
777
|
});
|
|
648
778
|
|
|
649
|
-
const
|
|
650
|
-
label: 'Zip Code:',
|
|
779
|
+
const zipcodeCenter = () => text({
|
|
651
780
|
placeholder: '#####',
|
|
781
|
+
help: "We try to match you with local legal help",
|
|
652
782
|
name: 'Zip',
|
|
653
783
|
maxlength: 5,
|
|
654
784
|
inputmode: "numeric",
|
|
@@ -657,7 +787,11 @@ const zipcode = () => sbsText({
|
|
|
657
787
|
validationMessages: {
|
|
658
788
|
required: 'Zip Code is required',
|
|
659
789
|
matches: 'Invalid Zip Code'
|
|
660
|
-
}
|
|
790
|
+
},
|
|
791
|
+
wrapperClass: 't-flex t-justify-center',
|
|
792
|
+
messagesClass: 't-flex t-justify-center',
|
|
793
|
+
inputClass: 't-text-center',
|
|
794
|
+
helpClass: 't-mt-2.5 !t-text-sm t-text-center'
|
|
661
795
|
});
|
|
662
796
|
|
|
663
797
|
|
|
@@ -681,11 +815,11 @@ const AutoAndCarAccidentsQuestions = (condition, scope) => group(
|
|
|
681
815
|
{
|
|
682
816
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "Auto and Car Accidents"'),
|
|
683
817
|
children: [
|
|
684
|
-
haveAttorney(scope),
|
|
685
|
-
incidentDate(scope),
|
|
686
|
-
atFault(scope),
|
|
687
|
-
primaryInjury(scope),
|
|
688
|
-
doctorTreatment(scope),
|
|
818
|
+
haveAttorney$1(scope),
|
|
819
|
+
incidentDate$1(scope),
|
|
820
|
+
atFault$1(scope),
|
|
821
|
+
primaryInjury$1(scope),
|
|
822
|
+
doctorTreatment$1(scope),
|
|
689
823
|
policeReportFiled(scope)
|
|
690
824
|
]
|
|
691
825
|
}
|
|
@@ -696,11 +830,11 @@ const ChildCustodyQuestions = (condition, scope) => group(
|
|
|
696
830
|
{
|
|
697
831
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "Child Custody"'),
|
|
698
832
|
children: [
|
|
699
|
-
haveAttorney(scope),
|
|
833
|
+
haveAttorney$1(scope),
|
|
700
834
|
childRelationship(scope),
|
|
701
835
|
childHome(scope),
|
|
702
836
|
childPrimaryCaregiver(scope),
|
|
703
|
-
degreeOfInterest(scope),
|
|
837
|
+
degreeOfInterest$1(scope),
|
|
704
838
|
lawyerPaymentMethod(scope)
|
|
705
839
|
]
|
|
706
840
|
}
|
|
@@ -711,10 +845,10 @@ const DivorceQuestions = (condition, scope) => group(
|
|
|
711
845
|
{
|
|
712
846
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "Divorce and Separation"'),
|
|
713
847
|
children: [
|
|
714
|
-
haveAttorney(scope),
|
|
848
|
+
haveAttorney$1(scope),
|
|
715
849
|
maritalStatus(scope),
|
|
716
850
|
haveChildren(scope),
|
|
717
|
-
degreeOfInterest(scope),
|
|
851
|
+
degreeOfInterest$1(scope),
|
|
718
852
|
lawyerPaymentMethod(scope)
|
|
719
853
|
]
|
|
720
854
|
}
|
|
@@ -725,8 +859,8 @@ const DUIAndDWIQuestions = (condition, scope) => group(
|
|
|
725
859
|
{
|
|
726
860
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "DUI and DWI"'),
|
|
727
861
|
children: [
|
|
728
|
-
haveAttorney(scope),
|
|
729
|
-
incidentDate(scope),
|
|
862
|
+
haveAttorney$1(scope),
|
|
863
|
+
incidentDate$1(scope),
|
|
730
864
|
priorAlcoholOffenses(scope),
|
|
731
865
|
typeOfAlcoholTest(scope),
|
|
732
866
|
bloodContentAlcoholTest(scope),
|
|
@@ -736,59 +870,17 @@ const DUIAndDWIQuestions = (condition, scope) => group(
|
|
|
736
870
|
}
|
|
737
871
|
);
|
|
738
872
|
|
|
739
|
-
const EmploymentAndWorkplaceQuestions = () => group(
|
|
740
|
-
'EmploymentAndWorkplaceQuestions',
|
|
741
|
-
{
|
|
742
|
-
if: '$get(Type_Of_Legal_Problem).value == "Employment and Workplace"',
|
|
743
|
-
children: [
|
|
744
|
-
haveAttorney(),
|
|
745
|
-
numEmployeesOfBusiness(),
|
|
746
|
-
employerType(),
|
|
747
|
-
employeeAtCompany(),
|
|
748
|
-
degreeOfInterestHelp()
|
|
749
|
-
]
|
|
750
|
-
}
|
|
751
|
-
);
|
|
752
|
-
|
|
753
|
-
const WorkplaceHarassmentQuestions = () => group(
|
|
754
|
-
'WorkplaceHarassmentQuestions',
|
|
755
|
-
{
|
|
756
|
-
if: '$get(Type_Of_Legal_Problem).value == "Workplace Harassment"',
|
|
757
|
-
children: [
|
|
758
|
-
haveAttorney(),
|
|
759
|
-
numEmployeesOfBusiness(),
|
|
760
|
-
employerType(),
|
|
761
|
-
employeeAtCompany(),
|
|
762
|
-
degreeOfInterestHelp()
|
|
763
|
-
]
|
|
764
|
-
}
|
|
765
|
-
);
|
|
766
|
-
|
|
767
|
-
const WorkplaceDiscriminationQuestions = () => group(
|
|
768
|
-
'WorkplaceDiscriminationQuestions',
|
|
769
|
-
{
|
|
770
|
-
if: '$get(Type_Of_Legal_Problem).value == "Workplace Discrimination"',
|
|
771
|
-
children: [
|
|
772
|
-
haveAttorney(),
|
|
773
|
-
numEmployeesOfBusiness(),
|
|
774
|
-
employerType(),
|
|
775
|
-
employeeAtCompany(),
|
|
776
|
-
degreeOfInterestHelp()
|
|
777
|
-
]
|
|
778
|
-
}
|
|
779
|
-
);
|
|
780
|
-
|
|
781
873
|
const PersonalInjuryQuestions = (condition, scope) => group(
|
|
782
874
|
'PersonalInjuryQuestions',
|
|
783
875
|
{
|
|
784
876
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "Personal Injury"'),
|
|
785
877
|
children: [
|
|
786
|
-
haveAttorney(scope),
|
|
787
|
-
incidentDate(scope),
|
|
788
|
-
claimStatus(scope),
|
|
789
|
-
atFault(scope),
|
|
790
|
-
primaryInjury(scope),
|
|
791
|
-
doctorTreatment(scope)
|
|
878
|
+
haveAttorney$1(scope),
|
|
879
|
+
incidentDate$1(scope),
|
|
880
|
+
claimStatus$1(scope),
|
|
881
|
+
atFault$1(scope),
|
|
882
|
+
primaryInjury$1(scope),
|
|
883
|
+
doctorTreatment$1(scope)
|
|
792
884
|
]
|
|
793
885
|
}
|
|
794
886
|
);
|
|
@@ -798,7 +890,7 @@ const PowerofAttorneyQuestions = (condition, scope) => group(
|
|
|
798
890
|
{
|
|
799
891
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "Power of Attorney"'),
|
|
800
892
|
children: [
|
|
801
|
-
haveAttorney(scope),
|
|
893
|
+
haveAttorney$1(scope),
|
|
802
894
|
degreeOfInterestHelp(scope)
|
|
803
895
|
]
|
|
804
896
|
}
|
|
@@ -809,24 +901,12 @@ const SocialSecurityDisabilityAndInsuranceQuestions = (condition, scope) => grou
|
|
|
809
901
|
{
|
|
810
902
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "Social Security Disability and Insurance"'),
|
|
811
903
|
children: [
|
|
812
|
-
haveAttorney(scope),
|
|
904
|
+
haveAttorney$1(scope),
|
|
813
905
|
applicantAge(scope),
|
|
814
906
|
disabilityConditionStopWork(scope),
|
|
815
907
|
disabilityWorkHistory(scope),
|
|
816
908
|
socialSecurityDisabilityReceivingBenefits(scope),
|
|
817
|
-
doctorTreatment(scope)
|
|
818
|
-
]
|
|
819
|
-
}
|
|
820
|
-
);
|
|
821
|
-
|
|
822
|
-
const UnemploymentQuestions = () => group(
|
|
823
|
-
'UnemploymentQuestions',
|
|
824
|
-
{
|
|
825
|
-
if: '$get(Type_Of_Legal_Problem).value == "Unemployment"',
|
|
826
|
-
children: [
|
|
827
|
-
numEmployeesOfBusiness(),
|
|
828
|
-
employerType(),
|
|
829
|
-
degreeOfInterestHelp()
|
|
909
|
+
doctorTreatment$1(scope)
|
|
830
910
|
]
|
|
831
911
|
}
|
|
832
912
|
);
|
|
@@ -836,7 +916,7 @@ const WillsAndTrustsQuestions = (condition, scope) => group(
|
|
|
836
916
|
{
|
|
837
917
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "Wills and Trusts"'),
|
|
838
918
|
children: [
|
|
839
|
-
haveAttorney(scope),
|
|
919
|
+
haveAttorney$1(scope),
|
|
840
920
|
valueOfAssets(scope),
|
|
841
921
|
typeOfAssets(scope),
|
|
842
922
|
roleInMatterProbate(scope),
|
|
@@ -851,36 +931,12 @@ const WorkersCompensationQuestions = (condition, scope) => group(
|
|
|
851
931
|
{
|
|
852
932
|
if: (condition || '$get(Type_Of_Legal_Problem).value == "Workers Compensation"'),
|
|
853
933
|
children: [
|
|
854
|
-
haveAttorney(scope),
|
|
855
|
-
incidentDate(scope),
|
|
856
|
-
claimStatus(scope),
|
|
857
|
-
primaryInjury(scope),
|
|
858
|
-
causeOfInjury(scope),
|
|
859
|
-
doctorTreatment(scope)
|
|
860
|
-
]
|
|
861
|
-
}
|
|
862
|
-
);
|
|
863
|
-
|
|
864
|
-
const WrongfulTerminationQuestions = () => group(
|
|
865
|
-
'WrongfulTerminationQuestions',
|
|
866
|
-
{
|
|
867
|
-
if: '$get(Type_Of_Legal_Problem).value == "Wrongful Termination"',
|
|
868
|
-
children: [
|
|
869
|
-
haveAttorney(),
|
|
870
|
-
numEmployeesOfBusiness(),
|
|
871
|
-
employerType(),
|
|
872
|
-
degreeOfInterestHelp()
|
|
873
|
-
]
|
|
874
|
-
}
|
|
875
|
-
);
|
|
876
|
-
|
|
877
|
-
const NotSureOrOtherQuestions = () => group(
|
|
878
|
-
'NotSureOrOtherQuestions',
|
|
879
|
-
{
|
|
880
|
-
if: '$get(Type_Of_Legal_Problem).value == "Not Sure or Other"',
|
|
881
|
-
children: [
|
|
882
|
-
haveAttorney(),
|
|
883
|
-
degreeOfInterestHelp()
|
|
934
|
+
haveAttorney$1(scope),
|
|
935
|
+
incidentDate$1(scope),
|
|
936
|
+
claimStatus$1(scope),
|
|
937
|
+
primaryInjury$1(scope),
|
|
938
|
+
causeOfInjury$1(scope),
|
|
939
|
+
doctorTreatment$1(scope)
|
|
884
940
|
]
|
|
885
941
|
}
|
|
886
942
|
);
|
|
@@ -947,7 +1003,7 @@ function secureIcon(updates) {
|
|
|
947
1003
|
)
|
|
948
1004
|
}
|
|
949
1005
|
|
|
950
|
-
function
|
|
1006
|
+
function crossSellQuestionsStepHeadline(updates) {
|
|
951
1007
|
return {
|
|
952
1008
|
$el: 'h3',
|
|
953
1009
|
children: updates.headline || 'Tell Us About Your Situation',
|
|
@@ -957,22 +1013,32 @@ function questionsStepHeadline(updates) {
|
|
|
957
1013
|
}
|
|
958
1014
|
}
|
|
959
1015
|
|
|
960
|
-
function
|
|
1016
|
+
function crossSellQuestionsStepSubHeadline(updates) {
|
|
1017
|
+
return {
|
|
1018
|
+
$el: 'h5',
|
|
1019
|
+
children: updates.subheadline || 'Tell us about your situation:',
|
|
1020
|
+
attrs: {
|
|
1021
|
+
class: 't-flex t-justify-center t-text-dark t-text-center !t-text-lg t-font-semibold t-pb-4 t-pt-0 t-px-3'
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
function verticalStepHeadline(updates) {
|
|
961
1027
|
return {
|
|
962
1028
|
$el: 'h3',
|
|
963
1029
|
children: updates.headline || 'Tell Us About Your Situation',
|
|
964
1030
|
attrs: {
|
|
965
|
-
class: 't-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-
|
|
1031
|
+
class: 't-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-dark t-pb-5 t-pt-0 t-px-1' + ' ' + (updates.headlineClass || '')
|
|
966
1032
|
}
|
|
967
1033
|
}
|
|
968
1034
|
}
|
|
969
1035
|
|
|
970
|
-
function
|
|
1036
|
+
function verticalStepSubHeadline(updates) {
|
|
971
1037
|
return {
|
|
972
1038
|
$el: 'h5',
|
|
973
|
-
children: updates.subheadline || '
|
|
1039
|
+
children: updates.subheadline || '',
|
|
974
1040
|
attrs: {
|
|
975
|
-
class: 't-flex t-justify-center t-text-
|
|
1041
|
+
class: 't-flex t-justify-center t-text-center !t-text-lg t-font-normal t-text-dark t-pb-5 t-pt-0 t-px-1' + ' ' + (updates.subheadlineClass || '')
|
|
976
1042
|
}
|
|
977
1043
|
}
|
|
978
1044
|
}
|
|
@@ -1091,6 +1157,21 @@ function step(name, inputs, nextOnEnter = true, nextOnInput = false, stepKey = u
|
|
|
1091
1157
|
)
|
|
1092
1158
|
}
|
|
1093
1159
|
|
|
1160
|
+
// Single question step
|
|
1161
|
+
function sqstep(name, input, defaultHeadline, updates = {}) {
|
|
1162
|
+
return step(
|
|
1163
|
+
name,
|
|
1164
|
+
[
|
|
1165
|
+
verticalStepHeadline({ headline: updates.headline ?? defaultHeadline, headlineClass: updates.headlineClass }),
|
|
1166
|
+
...Array.isArray(input) ? input : [input],
|
|
1167
|
+
],
|
|
1168
|
+
updates.nextOnEnter,
|
|
1169
|
+
typeof updates.nextOnInput === 'undefined' ? true : updates.nextOnInput,
|
|
1170
|
+
updates.stepKey,
|
|
1171
|
+
updates.nextStepMap
|
|
1172
|
+
)
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1094
1175
|
function commentsWithBankruptcy(updates = {}) {
|
|
1095
1176
|
return step(
|
|
1096
1177
|
'commentsWithBankruptcy',
|
|
@@ -1134,11 +1215,18 @@ function contactInfo(updates = {}) {
|
|
|
1134
1215
|
)
|
|
1135
1216
|
}
|
|
1136
1217
|
|
|
1137
|
-
function
|
|
1218
|
+
function firstAndLastV3(updates = {}) {
|
|
1138
1219
|
return step(
|
|
1139
1220
|
'firstAndLast',
|
|
1140
1221
|
[
|
|
1141
|
-
firstAndLastStepHeadline(
|
|
1222
|
+
firstAndLastStepHeadline({
|
|
1223
|
+
headline: updates.headline ?? 'Who is looking for help?',
|
|
1224
|
+
headlineClass: updates.headlineClass
|
|
1225
|
+
}),
|
|
1226
|
+
verticalStepSubHeadline({
|
|
1227
|
+
subheadline: updates.subheadline ?? 'Note: we never share info without consent',
|
|
1228
|
+
subheadlineClass: '!t-text-sm !t-text-gray-500'
|
|
1229
|
+
}),
|
|
1142
1230
|
firstName(),
|
|
1143
1231
|
lastName()
|
|
1144
1232
|
],
|
|
@@ -1322,9 +1410,9 @@ function workersCompensationCrossSellQuestions(updates = {}) {
|
|
|
1322
1410
|
)
|
|
1323
1411
|
}
|
|
1324
1412
|
|
|
1325
|
-
function
|
|
1413
|
+
function employmentAndWorkplaceTOLP(updates = {}) {
|
|
1326
1414
|
return step(
|
|
1327
|
-
'
|
|
1415
|
+
'employmentAndWorkplaceTOLP',
|
|
1328
1416
|
[
|
|
1329
1417
|
{
|
|
1330
1418
|
$formkit: 'hidden',
|
|
@@ -1332,10 +1420,7 @@ function employmentAndWorkplaceTOLPAndZip(updates = {}) {
|
|
|
1332
1420
|
id: "Type_Of_Legal_Problem",
|
|
1333
1421
|
value: "Employment and Workplace"
|
|
1334
1422
|
},
|
|
1335
|
-
|
|
1336
|
-
if: 'true'
|
|
1337
|
-
}),
|
|
1338
|
-
zipcode()
|
|
1423
|
+
employmentAndWorkplaceTOLPDisplayCenter(),
|
|
1339
1424
|
],
|
|
1340
1425
|
updates.nextOnEnter,
|
|
1341
1426
|
updates.nextOnInput,
|
|
@@ -1344,24 +1429,6 @@ function employmentAndWorkplaceTOLPAndZip(updates = {}) {
|
|
|
1344
1429
|
)
|
|
1345
1430
|
}
|
|
1346
1431
|
|
|
1347
|
-
function employmentAndWorkplaceTOLPQuestions(updates = {}) {
|
|
1348
|
-
return step(
|
|
1349
|
-
'TOLPQuestions',
|
|
1350
|
-
[
|
|
1351
|
-
questionsStepHeadline(updates),
|
|
1352
|
-
WorkplaceHarassmentQuestions(),
|
|
1353
|
-
WorkplaceDiscriminationQuestions(),
|
|
1354
|
-
WrongfulTerminationQuestions(),
|
|
1355
|
-
WorkersCompensationQuestions(),
|
|
1356
|
-
PersonalInjuryQuestions(),
|
|
1357
|
-
UnemploymentQuestions(),
|
|
1358
|
-
EmploymentAndWorkplaceQuestions(),
|
|
1359
|
-
NotSureOrOtherQuestions()
|
|
1360
|
-
],
|
|
1361
|
-
updates.nextOnEnter
|
|
1362
|
-
)
|
|
1363
|
-
}
|
|
1364
|
-
|
|
1365
1432
|
function legalCrossSells(updates = {}) {
|
|
1366
1433
|
return step(
|
|
1367
1434
|
'legalCrossSells',
|
|
@@ -1376,6 +1443,141 @@ function legalCrossSells(updates = {}) {
|
|
|
1376
1443
|
)
|
|
1377
1444
|
}
|
|
1378
1445
|
|
|
1446
|
+
function zipcode(updates = {}) {
|
|
1447
|
+
return sqstep(
|
|
1448
|
+
'zipcode',
|
|
1449
|
+
zipcodeCenter(),
|
|
1450
|
+
'Please verify your Zip Code',
|
|
1451
|
+
updates
|
|
1452
|
+
)
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
function haveAttorney(updates = {}) {
|
|
1456
|
+
return sqstep(
|
|
1457
|
+
'haveAttorney',
|
|
1458
|
+
haveAttorneyCenter(),
|
|
1459
|
+
'Already working with an attorney?',
|
|
1460
|
+
updates
|
|
1461
|
+
)
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
function degreeOfInterest(updates = {}) {
|
|
1465
|
+
return sqstep(
|
|
1466
|
+
'degreeOfInterest',
|
|
1467
|
+
degreeOfInterestCenter(),
|
|
1468
|
+
'Could you pay if your issue could be resolved?',
|
|
1469
|
+
updates
|
|
1470
|
+
)
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
function incidentDate(updates = {}) {
|
|
1474
|
+
return sqstep(
|
|
1475
|
+
'incidentDate',
|
|
1476
|
+
incidentDateCenter(),
|
|
1477
|
+
'When did the incident occur?',
|
|
1478
|
+
updates
|
|
1479
|
+
)
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
function doctorTreatment(updates = {}) {
|
|
1483
|
+
return sqstep(
|
|
1484
|
+
'doctorTreatment',
|
|
1485
|
+
doctorTreatmentCenter(),
|
|
1486
|
+
'Have you seen a doctor about this?',
|
|
1487
|
+
updates
|
|
1488
|
+
)
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
function atFault(updates = {}) {
|
|
1492
|
+
return sqstep(
|
|
1493
|
+
'atFault',
|
|
1494
|
+
atFaultCenter(),
|
|
1495
|
+
'Were you at fault?',
|
|
1496
|
+
updates
|
|
1497
|
+
)
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
function primaryInjury(updates = {}) {
|
|
1501
|
+
return sqstep(
|
|
1502
|
+
'primaryInjury',
|
|
1503
|
+
primaryInjuryCenter(),
|
|
1504
|
+
'What was the primary injury?',
|
|
1505
|
+
updates
|
|
1506
|
+
)
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
function employerType(updates = {}) {
|
|
1510
|
+
return sqstep(
|
|
1511
|
+
'employerType',
|
|
1512
|
+
employerTypeCenter(),
|
|
1513
|
+
'What type of employer is it?',
|
|
1514
|
+
updates
|
|
1515
|
+
)
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
function employeeAtCompany(updates = {}) {
|
|
1519
|
+
return sqstep(
|
|
1520
|
+
'employeeAtCompany',
|
|
1521
|
+
employeeAtCompanyCenter(),
|
|
1522
|
+
'Do you/they still work at the company?',
|
|
1523
|
+
updates
|
|
1524
|
+
)
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
function numEmployeesOfBusiness(updates = {}) {
|
|
1528
|
+
return sqstep(
|
|
1529
|
+
'numEmployeesOfBusiness',
|
|
1530
|
+
numEmployeesOfBusinessCenter(),
|
|
1531
|
+
'How many employees does the business have?',
|
|
1532
|
+
updates
|
|
1533
|
+
)
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
function claimStatus(updates = {}) {
|
|
1537
|
+
return sqstep(
|
|
1538
|
+
'claimStatus',
|
|
1539
|
+
claimStatusCenter(),
|
|
1540
|
+
'What is the status of the claim?',
|
|
1541
|
+
updates
|
|
1542
|
+
)
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
function causeOfInjury(updates = {}) {
|
|
1546
|
+
return sqstep(
|
|
1547
|
+
'causeOfInjury',
|
|
1548
|
+
causeOfInjuryCenter(),
|
|
1549
|
+
'What was the cause of the injury?',
|
|
1550
|
+
updates
|
|
1551
|
+
)
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
function causeOfDeath(updates = {}) {
|
|
1555
|
+
return sqstep(
|
|
1556
|
+
'causeOfDeath',
|
|
1557
|
+
causeOfDeathCenter(),
|
|
1558
|
+
'What was the cause of death?',
|
|
1559
|
+
updates
|
|
1560
|
+
)
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
function relationshipToVictim(updates = {}) {
|
|
1564
|
+
return sqstep(
|
|
1565
|
+
'relationshipToVictim',
|
|
1566
|
+
relationshipToVictimCenter(),
|
|
1567
|
+
'What is your relationship to the victim?',
|
|
1568
|
+
updates
|
|
1569
|
+
)
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
function criminalChargesFiled(updates = {}) {
|
|
1573
|
+
return sqstep(
|
|
1574
|
+
'criminalChargesFiled',
|
|
1575
|
+
criminalChargesFiledCenter(),
|
|
1576
|
+
'Have criminal charges been filed?',
|
|
1577
|
+
updates
|
|
1578
|
+
)
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1379
1581
|
// ------ Common
|
|
1380
1582
|
|
|
1381
1583
|
const formNavigation = () => ({
|
|
@@ -1564,6 +1766,62 @@ function formAnchor(updates) {
|
|
|
1564
1766
|
)
|
|
1565
1767
|
}
|
|
1566
1768
|
|
|
1769
|
+
const progressBarDefaults = {
|
|
1770
|
+
$el: 'div',
|
|
1771
|
+
attrs: {
|
|
1772
|
+
class: 't-mt-7 t-mb-5 t-w-full t-flex t-flex-col t-justify-center t-items-center',
|
|
1773
|
+
style: {
|
|
1774
|
+
if: '$fns.eq($activeStep, $firstStep()) || $fns.eq($activeStep, $lastStep())',
|
|
1775
|
+
then: 'display: none'
|
|
1776
|
+
},
|
|
1777
|
+
},
|
|
1778
|
+
children: [
|
|
1779
|
+
{
|
|
1780
|
+
$el: 'div',
|
|
1781
|
+
attrs: {
|
|
1782
|
+
class: 't-flex t-justify-center'
|
|
1783
|
+
},
|
|
1784
|
+
children: [
|
|
1785
|
+
{
|
|
1786
|
+
$el: 'span',
|
|
1787
|
+
attrs: {
|
|
1788
|
+
id: 'progress-bar-text',
|
|
1789
|
+
class: 't-text-sm t-mb-1'
|
|
1790
|
+
},
|
|
1791
|
+
children: [
|
|
1792
|
+
"0% Complete"
|
|
1793
|
+
]
|
|
1794
|
+
},
|
|
1795
|
+
]
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
$el: 'div',
|
|
1799
|
+
attrs: {
|
|
1800
|
+
class: 't-bg-gray-100 t-w-9/12 t-rounded'
|
|
1801
|
+
},
|
|
1802
|
+
children: [
|
|
1803
|
+
{
|
|
1804
|
+
$el: 'div',
|
|
1805
|
+
attrs: {
|
|
1806
|
+
id: 'progress-bar',
|
|
1807
|
+
class: 't-flex t-flex-col t-justify-center t-text-center t-whitespace-nowrap t-w-[10%] t-h-1.5 t-rounded t-text-white t-bg-[#007bff]',
|
|
1808
|
+
style: {
|
|
1809
|
+
transition: 'width 0.5s ease'
|
|
1810
|
+
},
|
|
1811
|
+
},
|
|
1812
|
+
}
|
|
1813
|
+
]
|
|
1814
|
+
}
|
|
1815
|
+
]
|
|
1816
|
+
};
|
|
1817
|
+
|
|
1818
|
+
function progressBar(updates) {
|
|
1819
|
+
return merge(
|
|
1820
|
+
progressBarDefaults,
|
|
1821
|
+
updates
|
|
1822
|
+
)
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1567
1825
|
function headlineDefaults(updates = {}) {
|
|
1568
1826
|
return {
|
|
1569
1827
|
$el: 'h1',
|
|
@@ -1603,13 +1861,6 @@ function subHeadline(updates = {}) {
|
|
|
1603
1861
|
)
|
|
1604
1862
|
}
|
|
1605
1863
|
|
|
1606
|
-
function defaultSubHeadline() {
|
|
1607
|
-
return subHeadline({
|
|
1608
|
-
children: '$urlParam("shl", "Our Service is Fast and Free!")',
|
|
1609
|
-
if: '$activeStep === $firstStep()'
|
|
1610
|
-
})
|
|
1611
|
-
}
|
|
1612
|
-
|
|
1613
1864
|
const hiddenInputsBase = [
|
|
1614
1865
|
{
|
|
1615
1866
|
$formkit: 'hidden',
|
|
@@ -1953,23 +2204,370 @@ const TOLPFinalSubHeadlines = {
|
|
|
1953
2204
|
// 'Non-Workplace Discrimination': '',
|
|
1954
2205
|
};
|
|
1955
2206
|
|
|
2207
|
+
const nextStepsLegalDefault = [
|
|
2208
|
+
'haveAttorney',
|
|
2209
|
+
'degreeOfInterest',
|
|
2210
|
+
'commentsWithBankruptcy',
|
|
2211
|
+
'zipcode',
|
|
2212
|
+
'legalCrossSells',
|
|
2213
|
+
'firstAndLast',
|
|
2214
|
+
'contactInfo',
|
|
2215
|
+
];
|
|
2216
|
+
|
|
2217
|
+
const nextStepsLegalDefaultLPM = [
|
|
2218
|
+
'haveAttorney',
|
|
2219
|
+
'degreeOfInterest',
|
|
2220
|
+
'lawyerPaymentMethod',
|
|
2221
|
+
'commentsWithBankruptcy',
|
|
2222
|
+
'zipcode',
|
|
2223
|
+
'legalCrossSells',
|
|
2224
|
+
'firstAndLast',
|
|
2225
|
+
'contactInfo',
|
|
2226
|
+
];
|
|
2227
|
+
|
|
2228
|
+
const nextStepsLegalNoDOI = [
|
|
2229
|
+
'haveAttorney',
|
|
2230
|
+
'commentsWithBankruptcy',
|
|
2231
|
+
'zipcode',
|
|
2232
|
+
'legalCrossSells',
|
|
2233
|
+
'firstAndLast',
|
|
2234
|
+
'contactInfo',
|
|
2235
|
+
];
|
|
2236
|
+
|
|
2237
|
+
const nextStepsLegalNoHA = [
|
|
2238
|
+
'degreeOfInterest',
|
|
2239
|
+
'commentsWithBankruptcy',
|
|
2240
|
+
'zipcode',
|
|
2241
|
+
'legalCrossSells',
|
|
2242
|
+
'firstAndLast',
|
|
2243
|
+
'contactInfo',
|
|
2244
|
+
];
|
|
2245
|
+
|
|
2246
|
+
const nextStepsMapGeneralLegal = {
|
|
2247
|
+
'Type_Of_Legal_Problem': {
|
|
2248
|
+
'Adoption': [
|
|
2249
|
+
'maritalStatus',
|
|
2250
|
+
'haveChildren',
|
|
2251
|
+
...nextStepsLegalDefaultLPM
|
|
2252
|
+
],
|
|
2253
|
+
'Asbestos and Mesothelioma': [
|
|
2254
|
+
'incidentDate',
|
|
2255
|
+
'doctorTreatment',
|
|
2256
|
+
...nextStepsLegalDefault
|
|
2257
|
+
],
|
|
2258
|
+
'Auto and Car Accidents': [
|
|
2259
|
+
'incidentDate',
|
|
2260
|
+
'atFault',
|
|
2261
|
+
'primaryInjury',
|
|
2262
|
+
'doctorTreatment',
|
|
2263
|
+
'policeReportFiled',
|
|
2264
|
+
...nextStepsLegalNoDOI
|
|
2265
|
+
],
|
|
2266
|
+
'Bankruptcy': [
|
|
2267
|
+
'totalMonthlyIncome',
|
|
2268
|
+
'totalDebt',
|
|
2269
|
+
'ownRealEstate',
|
|
2270
|
+
'valueOfAssets',
|
|
2271
|
+
...nextStepsLegalDefault
|
|
2272
|
+
],
|
|
2273
|
+
'Business Lawyers': [
|
|
2274
|
+
'businessServices',
|
|
2275
|
+
'businessType',
|
|
2276
|
+
'numEmployeesOfBusiness',
|
|
2277
|
+
...nextStepsLegalDefault
|
|
2278
|
+
],
|
|
2279
|
+
'Child Custody': [
|
|
2280
|
+
'childRelationship',
|
|
2281
|
+
'childHome',
|
|
2282
|
+
'childPrimaryCaregiver',
|
|
2283
|
+
...nextStepsLegalDefaultLPM
|
|
2284
|
+
],
|
|
2285
|
+
'Child Support': [
|
|
2286
|
+
'childRelationship',
|
|
2287
|
+
'childHome',
|
|
2288
|
+
'childPrimaryCaregiver',
|
|
2289
|
+
...nextStepsLegalDefaultLPM
|
|
2290
|
+
],
|
|
2291
|
+
'Civil Rights and Discrimination': [
|
|
2292
|
+
'civilRightsType',
|
|
2293
|
+
...nextStepsLegalDefault
|
|
2294
|
+
],
|
|
2295
|
+
'Civil Lawsuit': [
|
|
2296
|
+
'civilDefense',
|
|
2297
|
+
'lawsuitOtherParty',
|
|
2298
|
+
...nextStepsLegalDefault
|
|
2299
|
+
],
|
|
2300
|
+
'File a Lawsuit': [
|
|
2301
|
+
'civilLawsuitTOLPDisplay',
|
|
2302
|
+
'lawsuitOtherParty',
|
|
2303
|
+
...nextStepsLegalDefault
|
|
2304
|
+
],
|
|
2305
|
+
'Defend a Lawsuit': [
|
|
2306
|
+
'lawsuitOtherParty',
|
|
2307
|
+
...nextStepsLegalDefault
|
|
2308
|
+
],
|
|
2309
|
+
'Consumer Lawyers': [
|
|
2310
|
+
'consumerLawyerType',
|
|
2311
|
+
'incidentDate',
|
|
2312
|
+
'lawsuitOtherParty',
|
|
2313
|
+
...nextStepsLegalDefault
|
|
2314
|
+
],
|
|
2315
|
+
'Criminal and Felony': [
|
|
2316
|
+
'criminalTOLPDisplay',
|
|
2317
|
+
'crimeCommittedDate',
|
|
2318
|
+
'roleInMatterCriminal',
|
|
2319
|
+
'pendingCharges',
|
|
2320
|
+
...nextStepsLegalDefaultLPM
|
|
2321
|
+
],
|
|
2322
|
+
'Debt and Collections': [
|
|
2323
|
+
'totalMonthlyIncome',
|
|
2324
|
+
'totalDebt',
|
|
2325
|
+
'ownRealEstate',
|
|
2326
|
+
'valueOfAssets',
|
|
2327
|
+
...nextStepsLegalDefault
|
|
2328
|
+
],
|
|
2329
|
+
'Divorce and Separation': [
|
|
2330
|
+
'maritalStatus',
|
|
2331
|
+
'haveChildren',
|
|
2332
|
+
...nextStepsLegalDefaultLPM
|
|
2333
|
+
],
|
|
2334
|
+
'DUI and DWI': [
|
|
2335
|
+
'incidentDate',
|
|
2336
|
+
'priorAlcoholOffenses',
|
|
2337
|
+
'typeOfAlcoholTest',
|
|
2338
|
+
'bloodContentAlcoholTest',
|
|
2339
|
+
'pendingCharges',
|
|
2340
|
+
...nextStepsLegalDefault
|
|
2341
|
+
],
|
|
2342
|
+
'Employment and Workplace': [
|
|
2343
|
+
'employmentAndWorkplaceTOLPDisplay',
|
|
2344
|
+
'numEmployeesOfBusiness',
|
|
2345
|
+
'employerType',
|
|
2346
|
+
'employeeAtCompany',
|
|
2347
|
+
...nextStepsLegalDefault
|
|
2348
|
+
],
|
|
2349
|
+
'Expungement': [
|
|
2350
|
+
'incidentDate',
|
|
2351
|
+
'criminalChargeType',
|
|
2352
|
+
...nextStepsLegalDefaultLPM
|
|
2353
|
+
],
|
|
2354
|
+
'Family Issues': [
|
|
2355
|
+
'maritalStatus',
|
|
2356
|
+
'haveChildren',
|
|
2357
|
+
...nextStepsLegalDefaultLPM
|
|
2358
|
+
],
|
|
2359
|
+
'Foreclosure': [
|
|
2360
|
+
'ownRealEstate',
|
|
2361
|
+
'typeOfProperty',
|
|
2362
|
+
'amountPaymentsPastDue',
|
|
2363
|
+
'loanAmount',
|
|
2364
|
+
'defaultNotice',
|
|
2365
|
+
...nextStepsLegalDefault
|
|
2366
|
+
],
|
|
2367
|
+
'Guardianship': [
|
|
2368
|
+
'maritalStatus',
|
|
2369
|
+
'haveChildren',
|
|
2370
|
+
...nextStepsLegalDefaultLPM
|
|
2371
|
+
],
|
|
2372
|
+
'Immigration and Visas': [
|
|
2373
|
+
'countryOfCitizenship',
|
|
2374
|
+
'immigrationLocation',
|
|
2375
|
+
'immigrationEntry',
|
|
2376
|
+
'immigrationType',
|
|
2377
|
+
'immigrationStatus',
|
|
2378
|
+
'immigrationDetails',
|
|
2379
|
+
...nextStepsLegalDefault
|
|
2380
|
+
],
|
|
2381
|
+
'Landlord and Tenant': [
|
|
2382
|
+
'landlordTenantIssue',
|
|
2383
|
+
'landlordTenantParty',
|
|
2384
|
+
...nextStepsLegalDefault
|
|
2385
|
+
],
|
|
2386
|
+
'Lemon Law': [
|
|
2387
|
+
'incidentDate',
|
|
2388
|
+
'lawsuitOtherParty',
|
|
2389
|
+
...nextStepsLegalDefault
|
|
2390
|
+
],
|
|
2391
|
+
'Long Term Disability': [
|
|
2392
|
+
'applicantOccupation',
|
|
2393
|
+
'applicantAge',
|
|
2394
|
+
'applicantLTDisabilityPolicy',
|
|
2395
|
+
'applicantDisabilityHowObtain',
|
|
2396
|
+
'applicantPreviouslyAppliedLtdBenefits',
|
|
2397
|
+
'applicantReceivedDisabilityBenefits',
|
|
2398
|
+
'applicantMonthlySalary',
|
|
2399
|
+
...nextStepsLegalNoDOI
|
|
2400
|
+
],
|
|
2401
|
+
'Medical Malpractice': [
|
|
2402
|
+
'incidentDate',
|
|
2403
|
+
'claimStatus',
|
|
2404
|
+
'doctorTreatment',
|
|
2405
|
+
'medicalMalpracticeInjuries',
|
|
2406
|
+
...nextStepsLegalDefault
|
|
2407
|
+
],
|
|
2408
|
+
'Patents and Intellectual Property': [
|
|
2409
|
+
'patentAssistanceType',
|
|
2410
|
+
'patentFor',
|
|
2411
|
+
...nextStepsLegalDefault
|
|
2412
|
+
],
|
|
2413
|
+
'Personal Injury': [
|
|
2414
|
+
'incidentDate',
|
|
2415
|
+
'claimStatus',
|
|
2416
|
+
'atFault',
|
|
2417
|
+
'primaryInjury',
|
|
2418
|
+
'doctorTreatment',
|
|
2419
|
+
...nextStepsLegalNoDOI
|
|
2420
|
+
],
|
|
2421
|
+
'Probate and Estates': [
|
|
2422
|
+
'valueOfAssets',
|
|
2423
|
+
'typeOfAssets',
|
|
2424
|
+
'roleInMatterProbate',
|
|
2425
|
+
'estateLegalServicesNeeded',
|
|
2426
|
+
...nextStepsLegalDefault
|
|
2427
|
+
],
|
|
2428
|
+
'Property Damage': [
|
|
2429
|
+
'realEstateArea',
|
|
2430
|
+
'wouldLikeLawyerTo',
|
|
2431
|
+
...nextStepsLegalDefault
|
|
2432
|
+
],
|
|
2433
|
+
'Real Estate': [
|
|
2434
|
+
'realEstateTOLPDisplay',
|
|
2435
|
+
'realEstateArea',
|
|
2436
|
+
'wouldLikeLawyerTo',
|
|
2437
|
+
...nextStepsLegalDefault
|
|
2438
|
+
],
|
|
2439
|
+
'Social Security Disability and Insurance': [
|
|
2440
|
+
'applicantAge',
|
|
2441
|
+
'disabilityConditionStopWork',
|
|
2442
|
+
'disabilityWorkHistory',
|
|
2443
|
+
'socialSecurityDisabilityReceivingBenefits',
|
|
2444
|
+
'doctorTreatment',
|
|
2445
|
+
...nextStepsLegalNoDOI
|
|
2446
|
+
],
|
|
2447
|
+
'Tax and IRS': [
|
|
2448
|
+
'totalDebt',
|
|
2449
|
+
'taxProblemDetails',
|
|
2450
|
+
'taxLevel',
|
|
2451
|
+
'taxIssueType',
|
|
2452
|
+
...nextStepsLegalDefault
|
|
2453
|
+
],
|
|
2454
|
+
'Traffic and Tickets': [
|
|
2455
|
+
'driversLicenseType',
|
|
2456
|
+
'trafficViolations',
|
|
2457
|
+
'haveCourtDate',
|
|
2458
|
+
...nextStepsLegalDefault
|
|
2459
|
+
],
|
|
2460
|
+
'Unemployment': [
|
|
2461
|
+
'numEmployeesOfBusiness',
|
|
2462
|
+
'employerType',
|
|
2463
|
+
...nextStepsLegalNoHA
|
|
2464
|
+
],
|
|
2465
|
+
'Victim of a Crime': [
|
|
2466
|
+
'crimeCommittedDate',
|
|
2467
|
+
'roleInMatterCriminal',
|
|
2468
|
+
'pendingCharges',
|
|
2469
|
+
...nextStepsLegalDefaultLPM
|
|
2470
|
+
],
|
|
2471
|
+
'Wills and Trusts': [
|
|
2472
|
+
'valueOfAssets',
|
|
2473
|
+
'typeOfAssets',
|
|
2474
|
+
'roleInMatterProbate',
|
|
2475
|
+
'estateLegalServicesNeeded',
|
|
2476
|
+
...nextStepsLegalDefault
|
|
2477
|
+
],
|
|
2478
|
+
'Workers Compensation': [
|
|
2479
|
+
'incidentDate',
|
|
2480
|
+
'claimStatus',
|
|
2481
|
+
'primaryInjury',
|
|
2482
|
+
'causeOfInjury',
|
|
2483
|
+
'doctorTreatment',
|
|
2484
|
+
...nextStepsLegalNoDOI
|
|
2485
|
+
],
|
|
2486
|
+
'Workplace Harassment': [
|
|
2487
|
+
'numEmployeesOfBusiness',
|
|
2488
|
+
'employerType',
|
|
2489
|
+
'employeeAtCompany',
|
|
2490
|
+
...nextStepsLegalDefault
|
|
2491
|
+
],
|
|
2492
|
+
'Workplace Discrimination': [
|
|
2493
|
+
'numEmployeesOfBusiness',
|
|
2494
|
+
'employerType',
|
|
2495
|
+
'employeeAtCompany',
|
|
2496
|
+
...nextStepsLegalDefault
|
|
2497
|
+
],
|
|
2498
|
+
'Wrongful Death': [
|
|
2499
|
+
'incidentDate',
|
|
2500
|
+
'relationshipToVictim',
|
|
2501
|
+
'criminalChargesFiled',
|
|
2502
|
+
'causeOfDeath',
|
|
2503
|
+
...nextStepsLegalNoDOI
|
|
2504
|
+
],
|
|
2505
|
+
'Wrongful Termination': [
|
|
2506
|
+
'numEmployeesOfBusiness',
|
|
2507
|
+
'employerType',
|
|
2508
|
+
...nextStepsLegalDefault
|
|
2509
|
+
],
|
|
2510
|
+
},
|
|
2511
|
+
'*': nextStepsLegalDefault
|
|
2512
|
+
};
|
|
2513
|
+
|
|
2514
|
+
// function filterMapByKey(obj, keyList) {
|
|
2515
|
+
// return Object.fromEntries(
|
|
2516
|
+
// Object.entries(obj).filter(([key]) => keyList.includes(key))
|
|
2517
|
+
// );
|
|
2518
|
+
// }
|
|
1956
2519
|
|
|
1957
|
-
|
|
2520
|
+
// export function filteredNextStepsMapLegal(keyList) {
|
|
2521
|
+
// const res = { Type_Of_Legal_Problem: filterMapByKey(nextStepsMapGeneralLegal["Type_Of_Legal_Problem"], keyList) }
|
|
2522
|
+
// res["*"] = nextStepsMapGeneralLegal["*"]
|
|
2523
|
+
// return res
|
|
2524
|
+
// }
|
|
2525
|
+
|
|
2526
|
+
const TOLPNextSteps = nextStepsMapGeneralLegal["Type_Of_Legal_Problem"];
|
|
2527
|
+
|
|
2528
|
+
const nextStepsMapEmploymentAndWorkplaceTOLPDisplay = {
|
|
2529
|
+
'Type_Of_Legal_Problem_Display': {
|
|
2530
|
+
'Wrongful Termination': TOLPNextSteps["Wrongful Termination"],
|
|
2531
|
+
'Workers Compensation': TOLPNextSteps["Workers Compensation"],
|
|
2532
|
+
'Personal Injury': TOLPNextSteps["Personal Injury"],
|
|
2533
|
+
'Unemployment': TOLPNextSteps["Unemployment"],
|
|
2534
|
+
},
|
|
1958
2535
|
'*': [
|
|
1959
|
-
'
|
|
1960
|
-
'
|
|
1961
|
-
'
|
|
1962
|
-
|
|
1963
|
-
'contactInfo',
|
|
2536
|
+
'numEmployeesOfBusiness',
|
|
2537
|
+
'employerType',
|
|
2538
|
+
'employeeAtCompany',
|
|
2539
|
+
...nextStepsLegalDefault
|
|
1964
2540
|
]
|
|
1965
2541
|
};
|
|
1966
2542
|
|
|
1967
2543
|
const meta = defaultMetaProps();
|
|
1968
2544
|
|
|
1969
2545
|
meta.data.dynamicSchema = [
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
2546
|
+
atFault(),
|
|
2547
|
+
causeOfDeath(),
|
|
2548
|
+
causeOfInjury(),
|
|
2549
|
+
claimStatus(),
|
|
2550
|
+
criminalChargesFiled(),
|
|
2551
|
+
degreeOfInterest(),
|
|
2552
|
+
doctorTreatment(),
|
|
2553
|
+
employerType(),
|
|
2554
|
+
employeeAtCompany(),
|
|
2555
|
+
haveAttorney(),
|
|
2556
|
+
incidentDate({
|
|
2557
|
+
nextOnInput: false
|
|
2558
|
+
}),
|
|
2559
|
+
numEmployeesOfBusiness(),
|
|
2560
|
+
primaryInjury(),
|
|
2561
|
+
relationshipToVictim(),
|
|
2562
|
+
zipcode(),
|
|
2563
|
+
commentsWithBankruptcy({
|
|
2564
|
+
label: null,
|
|
2565
|
+
headline: 'Please briefly describe your situation:',
|
|
2566
|
+
headlineClass: '!t-text-dark',
|
|
2567
|
+
}),
|
|
2568
|
+
legalCrossSells({
|
|
2569
|
+
headlineClass: '!t-text-dark'
|
|
2570
|
+
}),
|
|
1973
2571
|
autoAndCarAccidentCrossSellQuestions(),
|
|
1974
2572
|
personalInjuryCrossSellQuestions(),
|
|
1975
2573
|
workersCompensationCrossSellQuestions(),
|
|
@@ -1979,7 +2577,9 @@ meta.data.dynamicSchema = [
|
|
|
1979
2577
|
willsAndTrustsCrossSellQuestions(),
|
|
1980
2578
|
divorceAndSeparationCrossSellQuestions(),
|
|
1981
2579
|
childCustodyCrossSellQuestions(),
|
|
1982
|
-
|
|
2580
|
+
firstAndLastV3({
|
|
2581
|
+
headlineClass: '!t-text-dark'
|
|
2582
|
+
}),
|
|
1983
2583
|
];
|
|
1984
2584
|
|
|
1985
2585
|
const schema = [
|
|
@@ -1993,8 +2593,12 @@ const schema = [
|
|
|
1993
2593
|
valueOverrideMap: legalAllValueOverrideMap
|
|
1994
2594
|
}),
|
|
1995
2595
|
children: [
|
|
2596
|
+
progressBar(),
|
|
1996
2597
|
defaultHeadline(),
|
|
1997
|
-
|
|
2598
|
+
subHeadline({
|
|
2599
|
+
children: '$urlParam("shl", "Select a Category Below to Get Started!")',
|
|
2600
|
+
if: '$activeStep === $firstStep()',
|
|
2601
|
+
}),
|
|
1998
2602
|
...hiddenInputsLegal,
|
|
1999
2603
|
{
|
|
2000
2604
|
$el: 'div',
|
|
@@ -2002,8 +2606,9 @@ const schema = [
|
|
|
2002
2606
|
class: 'form-body'
|
|
2003
2607
|
},
|
|
2004
2608
|
children: [
|
|
2005
|
-
|
|
2006
|
-
|
|
2609
|
+
employmentAndWorkplaceTOLP({
|
|
2610
|
+
nextOnInput: false,
|
|
2611
|
+
nextStepMap: nextStepsMapEmploymentAndWorkplaceTOLPDisplay
|
|
2007
2612
|
}),
|
|
2008
2613
|
dynamicSchemaNode,
|
|
2009
2614
|
contactInfo(),
|