bhl-forms 0.1.25 → 0.1.26
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.
|
@@ -2,6 +2,10 @@ function merge() {
|
|
|
2
2
|
return Object.assign({}, ...arguments)
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
function DTCUsedUrl() {
|
|
6
|
+
return 'https://partners.rydeshopper.com/bestuseddeals?gid=0000-4944&ZipCode=${properties.Zip}&GLeadID=${properties.vid}'
|
|
7
|
+
}
|
|
8
|
+
|
|
5
9
|
function RedirectUrl(domain, category) {
|
|
6
10
|
return 'https://listings.' + domain + '/api/v1/redirect?zone_id=4&sub_id=${properties.vid}&category=' + encodeURIComponent(category)
|
|
7
11
|
}
|
|
@@ -119,25 +123,20 @@ const hiddenInputsMechanics = [
|
|
|
119
123
|
...hiddenInputsBase
|
|
120
124
|
];
|
|
121
125
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
const checkbox = (updates) => {
|
|
126
|
+
const text = (updates) => {
|
|
125
127
|
return merge({
|
|
126
|
-
$formkit: '
|
|
128
|
+
$formkit: 'text',
|
|
127
129
|
validation: 'required',
|
|
128
130
|
validationMessages: {
|
|
129
131
|
required: 'Field is required'
|
|
130
|
-
}
|
|
132
|
+
},
|
|
133
|
+
labelClass: 'required'
|
|
131
134
|
}, updates)
|
|
132
135
|
};
|
|
133
136
|
|
|
134
|
-
const
|
|
135
|
-
updates.
|
|
136
|
-
updates
|
|
137
|
-
updates.optionsClass = 't-pl-1';
|
|
138
|
-
updates.innerClass = 't-flex t-items-center';
|
|
139
|
-
updates.wrapperClass = 't-mb-3';
|
|
140
|
-
return checkbox(updates)
|
|
137
|
+
const sbsText = (updates) => {
|
|
138
|
+
updates.wrapperClass = 'side-by-side t-items-center';
|
|
139
|
+
return text(updates)
|
|
141
140
|
};
|
|
142
141
|
|
|
143
142
|
const textArea = (updates) => {
|
|
@@ -154,12 +153,6 @@ const textArea = (updates) => {
|
|
|
154
153
|
}, updates)
|
|
155
154
|
};
|
|
156
155
|
|
|
157
|
-
const newOrUseAutoInterest = () => sbsCheckbox({
|
|
158
|
-
label: "I'm also interested in free quotes for a new or used car",
|
|
159
|
-
name: 'New_Or_Used_Auto_Interest',
|
|
160
|
-
validation: null,
|
|
161
|
-
});
|
|
162
|
-
|
|
163
156
|
const comments = (updates) => textArea(
|
|
164
157
|
merge({
|
|
165
158
|
label: 'Please briefly describe your situation in a few words:',
|
|
@@ -168,6 +161,20 @@ const comments = (updates) => textArea(
|
|
|
168
161
|
}, updates)
|
|
169
162
|
);
|
|
170
163
|
|
|
164
|
+
const zipcode = () => sbsText({
|
|
165
|
+
label: 'Zip Code:',
|
|
166
|
+
placeholder: '#####',
|
|
167
|
+
name: 'Zip',
|
|
168
|
+
maxlength: 5,
|
|
169
|
+
inputmode: "numeric",
|
|
170
|
+
autocomplete: 'postal-code',
|
|
171
|
+
validation: 'required|matches:/^[0-9]{5}$/',
|
|
172
|
+
validationMessages: {
|
|
173
|
+
required: 'Zip Code is required',
|
|
174
|
+
matches: 'Invalid Zip Code'
|
|
175
|
+
}
|
|
176
|
+
});
|
|
177
|
+
|
|
171
178
|
const NEXT_ON_ENTER = '$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))';
|
|
172
179
|
|
|
173
180
|
const isInput = (n) => { return (n.type !== 'group' && n.type !== 'section' && n.type !== 'form' && n.$formkit !== 'hidden' && !n.children) };
|
|
@@ -227,16 +234,16 @@ function step(name, inputs, nextOnEnter = true) {
|
|
|
227
234
|
)
|
|
228
235
|
}
|
|
229
236
|
|
|
230
|
-
function
|
|
237
|
+
function zipAndComments(updates = {}) {
|
|
231
238
|
return step(
|
|
232
|
-
'
|
|
239
|
+
'zipAndComments',
|
|
233
240
|
[
|
|
241
|
+
zipcode(),
|
|
234
242
|
comments({
|
|
235
243
|
label: updates.label || DEFAULT_COMMENTS_LABEL,
|
|
236
244
|
placeholder: updates.placeholder || DEFAULT_COMMENTS_PLACEHOLDER_DYNAMIC,
|
|
237
245
|
inputClass: 't-h-24',
|
|
238
|
-
})
|
|
239
|
-
newOrUseAutoInterest()
|
|
246
|
+
})
|
|
240
247
|
],
|
|
241
248
|
updates.nextOnEnter
|
|
242
249
|
)
|
|
@@ -311,6 +318,7 @@ const schema = [
|
|
|
311
318
|
$cmp: 'FormKit',
|
|
312
319
|
props: formProps({
|
|
313
320
|
formId: 'mechanics',
|
|
321
|
+
popUnder: DTCUsedUrl(),
|
|
314
322
|
redirectMap: {
|
|
315
323
|
'*': RedirectUrlComments('answers-now.com', 'Mechanics')
|
|
316
324
|
},
|
|
@@ -332,7 +340,7 @@ const schema = [
|
|
|
332
340
|
class: 'form-body'
|
|
333
341
|
},
|
|
334
342
|
children: [
|
|
335
|
-
|
|
343
|
+
zipAndComments({
|
|
336
344
|
label: 'Please describe your issue in a few words:',
|
|
337
345
|
placeholder: 'Example: "Need help changing my brake pads and rotors"',
|
|
338
346
|
nextOnEnter: false
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var mechanics=function(){"use strict";function e(){return Object.assign({},...arguments)}const t={type:"form",id:"form",config:{validationVisibility:"submit"},onSubmit:'$submit($submitUrl, $prepData, $handleRedirect, "text/plain; charset=UTF-8")',plugins:"$plugins",actions:!1,anchorElement:"form-anchor",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 r={$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"}};const i={$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"}};const s=[{$formkit:"hidden",name:"vertical",value:"Mechanics"},{$formkit:"hidden",name:"gclid",value:null},{$formkit:"hidden",name:"campaignid",value:null},{$formkit:"hidden",name:"s",value:null}],n=t=>(t.
|
|
1
|
+
var mechanics=function(){"use strict";function e(){return Object.assign({},...arguments)}const t={type:"form",id:"form",config:{validationVisibility:"submit"},onSubmit:'$submit($submitUrl, $prepData, $handleRedirect, "text/plain; charset=UTF-8")',plugins:"$plugins",actions:!1,anchorElement:"form-anchor",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 r={$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"}};const i={$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"}};const s=[{$formkit:"hidden",name:"vertical",value:"Mechanics"},{$formkit:"hidden",name:"gclid",value:null},{$formkit:"hidden",name:"campaignid",value:null},{$formkit:"hidden",name:"s",value:null}],n=t=>(t.wrapperClass="side-by-side t-items-center",(t=>e({$formkit:"text",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required"},t))(t)),l=t=>(t=>e({$formkit:"textarea",rows:5,maxlength:500,validation:"required",validationMessages:{required:"Field is required"},innerClass:"t-max-w-xl",labelClass:"required"},t))(e({label:"Please briefly describe your situation in a few words:",name:"Comments",placeholder:'For Example: "I would like help with child support payments" or "I need help with visitation rights"'},t)),a=e=>"group"!==e.type&&"section"!==e.type&&"form"!==e.type&&"hidden"!==e.$formkit&&!e.children,o=e=>{if(a(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(a(r))return r;const i=o(r);if(i)return i}return null};const d=[e({$el:"div",children:[{$el:"div",attrs:{id:"form-anchor",class:"t-absolute",style:{top:"-30px",left:0}}}],attrs:{class:"t-relative"}},m),{$cmp:"FormKit",props:function(r){return e(t,r)}({formId:"mechanics",popUnder:"https://partners.rydeshopper.com/bestuseddeals?gid=0000-4944&ZipCode=${properties.Zip}&GLeadID=${properties.vid}",redirectMap:{"*":(c="answers-now.com",p="Mechanics",function(e,t){return"https://listings."+e+"/api/v1/redirect?zone_id=4&sub_id=${properties.vid}&category="+encodeURIComponent(t)}(c,p)+"&Comments=${properties.Comments}")},formClass:"!t-max-w-[36rem]"}),children:[function(t){return e(r,t)}({children:'$urlParam("hl", "Have Questions for a Mechanic?")',if:"$activeStep === $firstStep()"}),function(t){return e(i,t)}({children:'$urlParam("shl", "Get Answers Within Minutes!")',if:"$activeStep === $firstStep()"}),...s,{$el:"div",attrs:{class:"form-body"},children:[function(t={}){return function(t,r,i=!0){void 0===i&&(i=!0),r&&r.length&&i&&(o(r[r.length-1]).onKeypress="$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))");return e((e=>({$el:"section",if:'$stepIsEnabled("'+e+'")',attrs:{style:{if:'$activeStep !== "'+e+'"',then:"display: none;"}}}))(t),{children:[{$formkit:"group",id:t,name:t,children:r}]})}("zipAndComments",[n({label:"Zip Code:",placeholder:"#####",name:"Zip",maxlength:5,inputmode:"numeric",autocomplete:"postal-code",validation:"required|matches:/^[0-9]{5}$/",validationMessages:{required:"Zip Code is required",matches:"Invalid Zip Code"}}),l({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"})],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"}}]}]}]}];var c,p,m;return d}();
|
|
@@ -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","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","redirectMap":{"*":"https://listings.answers-now.com/api/v1/redirect?zone_id=4&sub_id=${properties.vid}&category=Mechanics&Comments=${properties.Comments}"}},"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":"$stepIsEnabled(\"
|
|
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","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","popUnder":"https://partners.rydeshopper.com/bestuseddeals?gid=0000-4944&ZipCode=${properties.Zip}&GLeadID=${properties.vid}","redirectMap":{"*":"https://listings.answers-now.com/api/v1/redirect?zone_id=4&sub_id=${properties.vid}&category=Mechanics&Comments=${properties.Comments}"}},"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":"$stepIsEnabled(\"zipAndComments\")","attrs":{"style":{"if":"$activeStep !== \"zipAndComments\"","then":"display: none;"}},"children":[{"$formkit":"group","id":"zipAndComments","name":"zipAndComments","children":[{"$formkit":"text","validation":"required|matches:/^[0-9]{5}$/","validationMessages":{"required":"Zip Code is required","matches":"Invalid Zip Code"},"labelClass":"required","label":"Zip Code:","placeholder":"#####","name":"Zip","maxlength":5,"inputmode":"numeric","autocomplete":"postal-code","wrapperClass":"side-by-side t-items-center"},{"$formkit":"textarea","rows":5,"maxlength":500,"validation":"required","validationMessages":{"required":"Field is required"},"innerClass":"t-max-w-xl","labelClass":"required","label":"Please describe your issue in a few words:","name":"Comments","placeholder":"Example: \"Need help changing my brake pads and rotors\"","inputClass":"t-h-24"}]}]},{"$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"}}]}]}]}]
|