bhl-forms 0.4.6 → 0.4.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/childAndFamily.es.js +4 -4
- package/dist/forms/childAndFamily.iife.js +1 -1
- package/dist/forms/childAndFamily.json +1 -1
- package/dist/forms/civilLawsuit.es.js +4 -4
- package/dist/forms/civilLawsuit.iife.js +1 -1
- package/dist/forms/civilLawsuit.json +1 -1
- package/dist/forms/criminal.es.js +4 -4
- package/dist/forms/criminal.iife.js +1 -1
- package/dist/forms/criminal.json +1 -1
- package/dist/forms/generalLegal.es.js +4 -4
- package/dist/forms/generalLegal.iife.js +1 -1
- package/dist/forms/generalLegal.json +1 -1
- package/dist/forms/generalLegalPopUnder.es.js +4 -4
- package/dist/forms/generalLegalPopUnder.iife.js +1 -1
- package/dist/forms/generalLegalPopUnder.json +1 -1
- package/dist/forms/mechanics.es.js +30 -27
- package/dist/forms/mechanics.iife.js +1 -1
- package/dist/forms/mechanics.json +1 -1
- package/package.json +1 -1
|
@@ -128,27 +128,18 @@ const hiddenInputsMechanics = [
|
|
|
128
128
|
...hiddenInputsBase
|
|
129
129
|
];
|
|
130
130
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
const checkbox = (updates) => {
|
|
131
|
+
const radio = (updates) => {
|
|
134
132
|
return merge({
|
|
135
|
-
$formkit: '
|
|
133
|
+
$formkit: 'radio',
|
|
136
134
|
validation: 'required',
|
|
137
135
|
validationMessages: {
|
|
138
136
|
required: 'Field is required'
|
|
139
|
-
}
|
|
137
|
+
},
|
|
138
|
+
optionsClass: 't-pt-3 t-pl-1',
|
|
139
|
+
legendClass: 'required'
|
|
140
140
|
}, updates)
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
-
const sbsCheckbox = (updates) => {
|
|
144
|
-
updates.legendClass = 'legend-left required';
|
|
145
|
-
updates.fieldsetClass = '$reset side-by-side';
|
|
146
|
-
updates.optionsClass = 't-pl-1';
|
|
147
|
-
updates.innerClass = 't-flex t-items-center';
|
|
148
|
-
updates.wrapperClass = 't-mb-3';
|
|
149
|
-
return checkbox(updates)
|
|
150
|
-
};
|
|
151
|
-
|
|
152
143
|
const textArea = (updates) => {
|
|
153
144
|
return merge({
|
|
154
145
|
$formkit: 'textarea',
|
|
@@ -163,12 +154,6 @@ const textArea = (updates) => {
|
|
|
163
154
|
}, updates)
|
|
164
155
|
};
|
|
165
156
|
|
|
166
|
-
const autoInsuranceInterest = () => sbsCheckbox({
|
|
167
|
-
label: "I'm also interested in saving money on my auto insurance",
|
|
168
|
-
name: 'Auto_Insurance_Interest',
|
|
169
|
-
validation: null,
|
|
170
|
-
});
|
|
171
|
-
|
|
172
157
|
const comments = (updates, scope) => textArea(
|
|
173
158
|
merge({
|
|
174
159
|
name: scope ? scope + ':' + 'Comments' : 'Comments',
|
|
@@ -177,6 +162,21 @@ const comments = (updates, scope) => textArea(
|
|
|
177
162
|
}, updates)
|
|
178
163
|
);
|
|
179
164
|
|
|
165
|
+
const mechanicsCrossSells = () => radio({
|
|
166
|
+
id: 'Mechanics_CrossSells',
|
|
167
|
+
name: 'Mechanics_CrossSells',
|
|
168
|
+
label: 'Do any of the following apply?',
|
|
169
|
+
fieldsetClass: '$reset',
|
|
170
|
+
wrapperClass: 't-mb-2',
|
|
171
|
+
optionsClass: 't-pt-3',
|
|
172
|
+
validation: null,
|
|
173
|
+
options: {
|
|
174
|
+
'Auto and Car Accidents': "I've been in a car accident",
|
|
175
|
+
'DUI and DWI': "I've been involved in a DUI/DWI",
|
|
176
|
+
'Auto Insurance': "I'd like to save money on my auto insurance"
|
|
177
|
+
},
|
|
178
|
+
});
|
|
179
|
+
|
|
180
180
|
const NEXT_ON_ENTER = '$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))';
|
|
181
181
|
const NEXT_ON_INPUT = '$onInput($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))';
|
|
182
182
|
|
|
@@ -240,16 +240,16 @@ function step(name, inputs, nextOnEnter = true, nextOnInput = false, stepKey = u
|
|
|
240
240
|
)
|
|
241
241
|
}
|
|
242
242
|
|
|
243
|
-
function
|
|
243
|
+
function commentsMechanics(updates = {}) {
|
|
244
244
|
return step(
|
|
245
|
-
'
|
|
245
|
+
'commentsMechanics',
|
|
246
246
|
[
|
|
247
247
|
comments({
|
|
248
248
|
label: updates.label || DEFAULT_COMMENTS_LABEL,
|
|
249
249
|
placeholder: updates.placeholder || DEFAULT_COMMENTS_PLACEHOLDER_DYNAMIC,
|
|
250
250
|
inputClass: 't-h-24',
|
|
251
251
|
}),
|
|
252
|
-
|
|
252
|
+
mechanicsCrossSells()
|
|
253
253
|
],
|
|
254
254
|
updates.nextOnEnter
|
|
255
255
|
)
|
|
@@ -333,9 +333,11 @@ const schema = [
|
|
|
333
333
|
props: formProps({
|
|
334
334
|
formId: 'mechanics',
|
|
335
335
|
popUnderMap: {
|
|
336
|
-
'properties.
|
|
337
|
-
'
|
|
338
|
-
|
|
336
|
+
'properties.Mechanics_CrossSells': {
|
|
337
|
+
'Auto and Car Accidents': '/legal?Type_Of_Legal_Problem=Auto+and+Car+Accidents&hl=You+May+Deserve+Compensation',
|
|
338
|
+
'DUI and DWI': '/legal?Type_Of_Legal_Problem=DUI+and+DWI&hl=Get+Expert+Help+For+Your+DUI',
|
|
339
|
+
'Auto Insurance': RedirectUrl("answers-now.com", "Auto Insurance"),
|
|
340
|
+
}
|
|
339
341
|
},
|
|
340
342
|
redirectMap: {
|
|
341
343
|
'*': RedirectUrlComments('answers-now.com', 'Mechanics')
|
|
@@ -358,11 +360,12 @@ const schema = [
|
|
|
358
360
|
class: 'form-body'
|
|
359
361
|
},
|
|
360
362
|
children: [
|
|
361
|
-
|
|
363
|
+
commentsMechanics({
|
|
362
364
|
label: 'Please describe your issue in a few words:',
|
|
363
365
|
placeholder: 'Example: "Need help changing my brake pads and rotors"',
|
|
364
366
|
nextOnEnter: false
|
|
365
367
|
}),
|
|
368
|
+
|
|
366
369
|
formNavigationOnlySubmit(),
|
|
367
370
|
formDetails()
|
|
368
371
|
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var mechanics=function(){"use strict";function e(){return Object.assign({},...arguments)}function t(e,t){return"https://listings."+e+"/api/v1/redirect?zone_id=4&sub_id=${properties.vid}&category="+encodeURIComponent(t)}const r={type:"form",id:"form",config:{validationVisibility:"submit"},onSubmit:'$submit($submitUrl, $prepData, $handleRedirect, "text/plain; charset=UTF-8")',plugins:"$plugins",actions:!1,anchorElement:"form-anchor",useLocalStorage:!0,prepop:{fromURL:!0},errorCodes:{403:{message:"An Error Occurred",abort:!1},409:{abort:!1},429:"An Error Occurred",504:{message:"An Error Occurred",abort:!1}},formClass:"!t-max-w-[40rem]"};const n=[{$formkit:"hidden",name:"vertical",value:"Mechanics"},{$formkit:"hidden",name:"gclid",value:null},{$formkit:"hidden",name:"campaignid",value:null},{$formkit:"hidden",name:"s",value:null}],s=
|
|
1
|
+
var mechanics=function(){"use strict";function e(){return Object.assign({},...arguments)}function t(e,t){return"https://listings."+e+"/api/v1/redirect?zone_id=4&sub_id=${properties.vid}&category="+encodeURIComponent(t)}const r={type:"form",id:"form",config:{validationVisibility:"submit"},onSubmit:'$submit($submitUrl, $prepData, $handleRedirect, "text/plain; charset=UTF-8")',plugins:"$plugins",actions:!1,anchorElement:"form-anchor",useLocalStorage:!0,prepop:{fromURL:!0},errorCodes:{403:{message:"An Error Occurred",abort:!1},409:{abort:!1},429:"An Error Occurred",504:{message:"An Error Occurred",abort:!1}},formClass:"!t-max-w-[40rem]"};const n=[{$formkit:"hidden",name:"vertical",value:"Mechanics"},{$formkit:"hidden",name:"gclid",value:null},{$formkit:"hidden",name:"campaignid",value:null},{$formkit:"hidden",name:"s",value:null}],s=(t,r)=>(t=>e({$formkit:"textarea",rows:5,maxlength:500,validation:"required",validationMessages:{required:"Field is required"},innerClass:"t-max-w-xl",labelClass:"required"},t))(e({name:r?r+":Comments":"Comments",label:"Please briefly describe your situation in a few words:",placeholder:'For Example: "I would like help with child support payments" or "I need help with visitation rights"'},t)),i=()=>e({$formkit:"radio",validation:"required",validationMessages:{required:"Field is required"},optionsClass:"t-pt-3 t-pl-1",legendClass:"required"},{id:"Mechanics_CrossSells",name:"Mechanics_CrossSells",label:"Do any of the following apply?",fieldsetClass:"$reset",wrapperClass:"t-mb-2",optionsClass:"t-pt-3",validation:null,options:{"Auto and Car Accidents":"I've been in a car accident","DUI and DWI":"I've been involved in a DUI/DWI","Auto Insurance":"I'd like to save money on my auto insurance"}}),l="$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",a="$onInput($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",o=e=>"group"!==e.type&&"section"!==e.type&&"form"!==e.type&&"hidden"!==e.$formkit&&!e.children,c=e=>{if(o(e))return e;for(var t=e.children.length-1;t>=0;t--){if("string"==typeof e.children)continue;const r=e.children[t];if(o(r))return r;const n=c(r);if(n)return n}return null},d=(e,t)=>({$el:"section",if:'$stepEnabled("'+e+'")',attrs:{hidden:'$activeStep !== "'+e+'"',key:t||e}});const u=[e({$el:"div",children:[{$el:"div",attrs:{id:"form-anchor",class:"t-absolute",style:{top:"-30px",left:0}}}],attrs:{class:"t-relative"}},f),{$cmp:"FormKit",props:function(t){const n=e(r,t);return n.formId&&!n.name&&(n.name=n.formId),n}({formId:"mechanics",popUnderMap:{"properties.Mechanics_CrossSells":{"Auto and Car Accidents":"/legal?Type_Of_Legal_Problem=Auto+and+Car+Accidents&hl=You+May+Deserve+Compensation","DUI and DWI":"/legal?Type_Of_Legal_Problem=DUI+and+DWI&hl=Get+Expert+Help+For+Your+DUI","Auto Insurance":t("answers-now.com","Auto Insurance")}},redirectMap:{"*":(p="answers-now.com",m="Mechanics",t(p,m)+"&Comments=${properties.Comments}")},formClass:"!t-max-w-[36rem]"}),children:[function(t={}){return e(function(e={}){return{$el:"h1",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[2rem] t-font-semibold t-pt-5 t-px-7 md:t-px-3 "+(e.headlineClass||"")}}}(t),t)}({children:'$urlParam("hl", "Have Questions for a Mechanic?")',if:"$activeStep === $firstStep()"}),function(t={}){return e(function(e={}){return{$el:"h3",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[1.2rem] t-font-medium t-text-blue-500 t-px-10 "+(e.subheadlineClass||"")}}}(t),t)}({children:'$urlParam("shl", "Get Answers Within Minutes!")',if:"$activeStep === $firstStep()"}),...n,{$el:"div",attrs:{class:"form-body"},children:[function(t={}){return function(t,r,n=!0,s=!1,i=undefined){if(void 0===n&&(n=!0),r&&r.length&&(n||s)){const e=c(r[r.length-1]);e&&!0===n&&(e.onKeypress=l),e&&!0===s&&(e.onInput=a)}return e(d(t,i),{children:[{$formkit:"group",id:t,name:t,children:r}]})}("commentsMechanics",[s({label:t.label||"Please briefly describe your legal issue in a few words:",placeholder:t.placeholder||'$getKey($meta, "commentsPlaceholders." + $get(Type_Of_Legal_Problem).value, $meta.defaultCommentsPlaceholder)',inputClass:"t-h-24"}),i()],t.nextOnEnter)}({label:"Please describe your issue in a few words:",placeholder:'Example: "Need help changing my brake pads and rotors"',nextOnEnter:!1}),{$el:"div",attrs:{class:"step-nav"},children:[{$formkit:"button",name:"hidden_button",children:"Hidden",style:{if:"$activeStep === $firstStep()",then:"visibility: hidden;"}},{$formkit:"submit",name:"submit_button",label:"Chat Now"}]},{$el:"pre",if:'$urlParam("fdbg", "") == 1',children:[{$el:"pre",children:"$stringify( $get(form).value )",attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["activeStep: ","$activeStep"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepHistory: ","$stepHistory"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepQueue: ","$stepQueue"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["steps: ","$stepKeys()"],attrs:{class:"t-text-xs",style:"overflow: scroll"}}]}]}]}];var p,m,f;return u}();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"$el":"div","children":[{"$el":"div","attrs":{"id":"form-anchor","class":"t-absolute","style":{"top":"-30px","left":0}}}],"attrs":{"class":"t-relative"}},{"$cmp":"FormKit","props":{"type":"form","id":"form","config":{"validationVisibility":"submit"},"onSubmit":"$submit($submitUrl, $prepData, $handleRedirect, \"text/plain; charset=UTF-8\")","plugins":"$plugins","actions":false,"anchorElement":"form-anchor","useLocalStorage":true,"prepop":{"fromURL":true},"errorCodes":{"403":{"message":"An Error Occurred","abort":false},"409":{"abort":false},"429":"An Error Occurred","504":{"message":"An Error Occurred","abort":false}},"formClass":"!t-max-w-[36rem]","formId":"mechanics","popUnderMap":{"properties.
|
|
1
|
+
[{"$el":"div","children":[{"$el":"div","attrs":{"id":"form-anchor","class":"t-absolute","style":{"top":"-30px","left":0}}}],"attrs":{"class":"t-relative"}},{"$cmp":"FormKit","props":{"type":"form","id":"form","config":{"validationVisibility":"submit"},"onSubmit":"$submit($submitUrl, $prepData, $handleRedirect, \"text/plain; charset=UTF-8\")","plugins":"$plugins","actions":false,"anchorElement":"form-anchor","useLocalStorage":true,"prepop":{"fromURL":true},"errorCodes":{"403":{"message":"An Error Occurred","abort":false},"409":{"abort":false},"429":"An Error Occurred","504":{"message":"An Error Occurred","abort":false}},"formClass":"!t-max-w-[36rem]","formId":"mechanics","popUnderMap":{"properties.Mechanics_CrossSells":{"Auto and Car Accidents":"/legal?Type_Of_Legal_Problem=Auto+and+Car+Accidents&hl=You+May+Deserve+Compensation","DUI and DWI":"/legal?Type_Of_Legal_Problem=DUI+and+DWI&hl=Get+Expert+Help+For+Your+DUI","Auto Insurance":"https://listings.answers-now.com/api/v1/redirect?zone_id=4&sub_id=${properties.vid}&category=Auto%20Insurance"}},"redirectMap":{"*":"https://listings.answers-now.com/api/v1/redirect?zone_id=4&sub_id=${properties.vid}&category=Mechanics&Comments=${properties.Comments}"},"name":"mechanics"},"children":[{"$el":"h1","attrs":{"class":"t-flex t-justify-center t-text-center !t-text-[2rem] t-font-semibold t-pt-5 t-px-7 md:t-px-3 "},"children":"$urlParam(\"hl\", \"Have Questions for a Mechanic?\")","if":"$activeStep === $firstStep()"},{"$el":"h3","attrs":{"class":"t-flex t-justify-center t-text-center !t-text-[1.2rem] t-font-medium t-text-blue-500 t-px-10 "},"children":"$urlParam(\"shl\", \"Get Answers Within Minutes!\")","if":"$activeStep === $firstStep()"},{"$formkit":"hidden","name":"vertical","value":"Mechanics"},{"$formkit":"hidden","name":"gclid","value":null},{"$formkit":"hidden","name":"campaignid","value":null},{"$formkit":"hidden","name":"s","value":null},{"$el":"div","attrs":{"class":"form-body"},"children":[{"$el":"section","if":"$stepEnabled(\"commentsMechanics\")","attrs":{"hidden":"$activeStep !== \"commentsMechanics\"","key":"commentsMechanics"},"children":[{"$formkit":"group","id":"commentsMechanics","name":"commentsMechanics","children":[{"$formkit":"textarea","rows":5,"maxlength":500,"validation":"required","validationMessages":{"required":"Field is required"},"innerClass":"t-max-w-xl","labelClass":"required","name":"Comments","label":"Please describe your issue in a few words:","placeholder":"Example: \"Need help changing my brake pads and rotors\"","inputClass":"t-h-24"},{"$formkit":"radio","validation":null,"validationMessages":{"required":"Field is required"},"optionsClass":"t-pt-3","legendClass":"required","id":"Mechanics_CrossSells","name":"Mechanics_CrossSells","label":"Do any of the following apply?","fieldsetClass":"$reset","wrapperClass":"t-mb-2","options":{"Auto and Car Accidents":"I've been in a car accident","DUI and DWI":"I've been involved in a DUI/DWI","Auto Insurance":"I'd like to save money on my auto insurance"}}]}]},{"$el":"div","attrs":{"class":"step-nav"},"children":[{"$formkit":"button","name":"hidden_button","children":"Hidden","style":{"if":"$activeStep === $firstStep()","then":"visibility: hidden;"}},{"$formkit":"submit","name":"submit_button","label":"Chat Now"}]},{"$el":"pre","if":"$urlParam(\"fdbg\", \"\") == 1","children":[{"$el":"pre","children":"$stringify( $get(form).value )","attrs":{"class":"t-text-xs","style":"overflow: scroll"}},{"$el":"pre","children":["activeStep: ","$activeStep"],"attrs":{"class":"t-text-xs","style":"overflow: scroll"}},{"$el":"pre","children":["stepHistory: ","$stepHistory"],"attrs":{"class":"t-text-xs","style":"overflow: scroll"}},{"$el":"pre","children":["stepQueue: ","$stepQueue"],"attrs":{"class":"t-text-xs","style":"overflow: scroll"}},{"$el":"pre","children":["steps: ","$stepKeys()"],"attrs":{"class":"t-text-xs","style":"overflow: scroll"}}]}]}]}]
|