(function ($){
var current_fs, next_fs, previous_fs;
var left, opacity, scale;
var animating;
var has_response=false;
var preview_clicked=false;
var next_clicked=false;
var step_click=false;
jQuery(document).ready(function ($){
if(typeof next_clicked==="undefined") next_clicked=false;
if(typeof has_response==="undefined") has_response=false;
if(typeof preview_clicked==="undefined") preview_clicked=false;
if(typeof step_click==="undefined") step_click=false;
if($(
"form.wpcf7-form .cf7mls_progress_bar.cf7mls_bar_style_box_larerSign_squaren"
).height() >=100
){
$("head").append("<style>.cf7mls_bar_style_box_larerSign_squaren.cf7mls_bar_style_text_vertical li:after{width: 74px;height: 74px;left: -36px;}</style>"
);
}
$("form.wpcf7-form").each(function (index, el){
cf7mls_transition_effects(el, "effects_in");
});
$("form.wpcf7-form").each(function (index, el){
var totalFieldset=0;
var this_form=$(el);
var findFieldset=$(el).find("fieldset.fieldset-cf7mls");
if(findFieldset.length > 0){
this_form.addClass("cf7mls");
$.each(findFieldset, function (i2, el2){
if(i2==0){
$(el2).addClass("cf7mls_current_fs");
}
jQuery(el2).attr("data-cf7mls-order", i2);
totalFieldset=totalFieldset + 1;
var acceptances=jQuery(el2).find("input:checkbox.wpcf7-acceptances"
);
if(acceptances.length){
cf7mls_toggle_next_btn(acceptances, el2);
}});
$.each(findFieldset, function (i2, el2){
if(i2==totalFieldset - 1){
$(el2).find(".cf7mls_next").remove();
}});
$(el).attr("data-count-fieldset", totalFieldset);
if(cf7mls_object.disable_submit=="true"){
if(cf7mls_object.disable_enter_key){
$(el)
.find('[type="submit"]')
.click(function (event){
var findFieldset=$(el).find("fieldset.fieldset-cf7mls.cf7mls_current_fs"
);
if(findFieldset.data("cf7mls-order")!=totalFieldset - 1){
findFieldset.find(".cf7mls_next").click();
return false;
}});
}else{
$(el).submit(function (event){
var findFieldset=$(el).find("fieldset.fieldset-cf7mls.cf7mls_current_fs"
);
if(findFieldset.data("cf7mls-order")!=totalFieldset - 1){
findFieldset.find(".cf7mls_next").click();
return false;
}});
}}
}
$(el)
.find("input.wpcf7-cf7_recall")
.each(function (njt_a_i, njt_a_e){
var $this=$(njt_a_e);
var isMultiUpload=false;
var qf=this_form.find('[name="' + $this.data("qf") + '"]');
if(qf.length===0){
qf=this_form.find('.wpcf7-form-control[data-name="' + $this.data("qf") + '"]'
);
qf_file=this_form.find('.wpcf7-form-control-wrap[data-name="' +
$this.data("qf") +
'"] .codedropz-upload-handler'
);
if(qf_file.length > 0){
isMultiUpload=true;
}}
var sp=$("span.wpcf7-cf7_recall_" + $this.data("qf"));
var arrChecked=[];
var isCheckbox=false;
if($this.length > 0){
isCheckbox =
$this.data("qf")!==undefined &&
$this.data("qf").indexOf("cbmls") >=0
? true
: false;
}
if(isCheckbox){
qf=this_form.find('[name="' + $this.data("qf") + "[]" + '"]');
if(qf.length===0){
qf=this_form.find('[name="' + $this.data("qf") + '"]');
}
qf.each(function (index){
var _val=$(this).val();
if($(this).attr("type")=="date"){
const D=new Date(_val);
_val=getFormattedDate(D);
}
var arrCheckedIndex=$.inArray(_val, arrChecked);
if(this.checked){
if(arrCheckedIndex===-1) arrChecked.push(_val);
sp.text(arrChecked.toString());
$this.val(arrChecked.toString());
}});
qf.on("change", function (event){
event.preventDefault();
var _val=$(this).val();
if($(this).attr("type")=="date"){
const D=new Date(_val);
_val=getFormattedDate(D);
}
var arrCheckedIndex=$.inArray(_val, arrChecked);
if(this.checked){
if(arrCheckedIndex===-1) arrChecked.push(_val);
}else{
arrChecked.splice(arrCheckedIndex, 1);
}
sp.text(arrChecked.toString());
$this.val(arrChecked.toString());
});
}else{
if(qf.val()){
var _val=qf.val();
sp.text(_val);
$this.val(_val);
}
qf.on("change", function (event){
event.preventDefault();
var _val=$(this).val();
if($(this).attr("type")=="date"){
const D=new Date(_val);
_val=getFormattedDate(D);
}
if($(this).attr("type")=="file" &&
$(this).attr("multiple")=="multiple"
){
cf7mls_recall_multi_upload_file(this_form, sp, $this);
}else{
sp.text(_val);
$this.val(_val);
}});
if(isMultiUpload){
qf_file.on("drop", function (event){
event.preventDefault();
cf7mls_recall_multi_upload_file(this_form, sp, $this);
});
$(document).on("click",
".dnd-upload-details .remove-file",
function (event){
const nameField=$(this)
.attr("data-storage")
.slice(0, $(this).attr("data-storage").length - 12);
const recallSpan=$(
`.wpcf7-form-control.wpcf7-cf7_recall_${nameField}`
);
const recallInput=$(
`.wpcf7-form-control.wpcf7-cf7_recall[data-qf='${nameField}']`
);
if(recallSpan.length > 0&&recallInput.length > 0){
cf7mls_recall_multi_upload_file(
this_form,
recallSpan,
recallInput
);
}}
);
}}
});
});
$("form.wpcf7-form").each(function (index, el){
let id_form=$(el).find(".cf7mls_progress_bar").attr("data-id-form");
var progress_bar_bg_color=$(el)
.find(".cf7mls_progress_bar")
.attr("data-bg-color");
$("head").append('<style id="cf7mls_style_progress_bar_' +
id_form +
'" type="text/css"></style>'
);
if(progress_bar_bg_color&&id_form){
cf7mls_color_bar(progress_bar_bg_color, id_form, el);
}});
jQuery(document).on("click",
"form.wpcf7-form input:checkbox.wpcf7-acceptances",
function (event){
var $this=jQuery(this);
var parent_fieldset=$this.closest("fieldset.fieldset-cf7mls");
if(parent_fieldset.length){
var acceptances=jQuery(parent_fieldset).find("input:checkbox.wpcf7-acceptances"
);
if(acceptances.length){
cf7mls_toggle_next_btn(acceptances, parent_fieldset);
}}
}
);
$(document).on("click", ".cf7mls_next", function (event){
if(next_clicked==false){
next_clicked=true;
event.preventDefault();
var $this=$(this);
$this.addClass("sending");
current_fs=$this.closest(".fieldset-cf7mls");
next_fs=current_fs.next();
var form=$this.parent().closest("form.wpcf7-form");
if(form.hasClass("sent")){
form.removeClass("sent");
form.addClass("init");
form.attr("data-status", "init");
if(form.find(".wpcf7-response-output").length){
form.find(".wpcf7-response-output").html("");
}}
current_fs
.find(".wpcf7-form-control-signature-global-wrap")
.each(function (j, wrapper){
var f_id=$(wrapper).attr("data-field-id");
var canvas=$(wrapper).find("canvas");
if(typeof signatures!="undefined"){
$.each(signatures, function (s_i, signature){
if(signature.canvas.id==canvas.attr("id")){
if(!signature.signature.isEmpty()){
$('input[name="' + f_id + '"]').val(signature.canvas.toDataURL()
);
}else{
$('input[name="' + f_id + '"]').val("");
}}
});
}});
var fd=new FormData(form[0]);
$.ajax({
url: cf7mls_object.ajax_url + "cf7mls/v1/cf7mls_validation",
type: "POST",
crossDomain: true,
data: fd,
processData: false,
contentType: false,
})
.done(function (json){
$this.removeClass("sending");
if(typeof json._cf7mls_db_form_data_id!="undefined"){
if(!form.find('input[name="_cf7mls_db_form_data_id"]').length){
form.append('<input type="hidden" name="_cf7mls_db_form_data_id" value="' +
json._cf7mls_db_form_data_id +
'" />'
);
}}
if(!json.success){
var checkError=0;
var firstError=null;
current_fs
.find(".wpcf7-form-control-wrap")
.removeClass("cf7mls-invalid");
current_fs.find(".cf7mls-invalid").removeClass("cf7mls-invalid");
current_fs
.find(".wpcf7-form-control-wrap .wpcf7-not-valid-tip")
.remove();
current_fs
.find(".wpcf7-form-control-wrap .wpcf7-not-valid")
.removeClass("wpcf7-not-valid");
if(has_response){
current_fs
.find(".wpcf7-response-output.wpcf7-validation-errors")
.removeClass("wpcf7-validation-errors");
}else{
current_fs
.find(".wpcf7-response-output.wpcf7-validation-errors")
.remove();
}
$.each(json.invalid_fields, function (index, el){
if(current_fs.find('input[name="' + index + '"]').length ||
current_fs.find('input[name="' + index + '[]"]').length ||
current_fs.find('select[name="' + index + '"]').length ||
current_fs.find('select[name="' + index + '[]"]').length ||
current_fs.find('textarea[name="' + index + '"]').length ||
current_fs.find('textarea[name="' + index + '[]"]').length ||
current_fs.find('input[data-name="' + index + '"]').length ||
current_fs.find('input[data-name="' + index + '[]"]').length
){
checkError=checkError + 1;
var controlWraps=[
$('[name="' + index + '"]', form).parent(),
$('[name="' + index + '[]"]', form).parent(),
$('[data-name="' + index + '"]', form).parent(),
$('[data-name="' + index + '[]"]', form).parent(),
];
$.each(controlWraps, function (i1, e1){
if(e1.hasClass("wpcf7-form-control-wrap") ||
e1.hasClass("form-group") ||
e1.parents(".wpcf7-form-control-wrap").length ||
e1.parents(".wpcf7-checkbox").length ||
e1.parents(".wpcf7-radio").length
){
var _c="wpcf7-not-valid-tip";
if(e1.hasClass("form-group")){
e1.addClass("has-error");
_c +=" help-block";
}
if(firstError===null){
firstError=e1;
}
e1.addClass("cf7mls-invalid");
e1.find("span.wpcf7-not-valid-tip").remove();
e1.find(".wpcf7-validates-as-required").addClass("wpcf7-not-valid"
);
if(e1.parents(".wpcf7-checkbox").length){
e1.parents(".wpcf7-checkbox").after('<span role="alert" class="' +
_c +
'">' +
el.reason +
"</span>"
);
}else if(e1.parents(".wpcf7-radio").length){
e1.parents(".wpcf7-radio").after('<span role="alert" class="' +
_c +
'">' +
el.reason +
"</span>"
);
}else if(e1.parents(".wpcf7-form-control-wrap").length
){
e1.parents(".wpcf7-form-control-wrap").append('<span role="alert" class="' +
_c +
'">' +
el.reason +
"</span>"
);
}else{
e1.append('<span role="alert" class="' +
_c +
'">' +
el.reason +
"</span>"
);
}}
});
}});
if(checkError==0){
json.success=true;
has_response=false;
}else{
if(cf7mls_object.scroll_first_error=="true"){
$("html, body").animate({
scrollTop: $(firstError).offset().top - 100,
},
500
);
}
if(current_fs.find(".wpcf7-response-output").length){
has_response=true;
$icon="";
if($(".woodmart-ajax-shop-on").length==0 &&
$(".theme-woodmart").length==0
){
$icon +=
'<svg class="wpcf7-icon-wraning" width="18px" height="18px" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">';
$icon +=
'<g><path d="M499.9,361.6c-12.7,0-23,10.3-23,23v352.2c0,12.7,10.3,23,23,23s23-10.3,23-23V384.6C522.9,371.9,512.6,361.6,499.9,361.6z"/>';
$icon +=
'<path d="M500.1,240.2c-12.7,0-23,10.3-23,23v30.6c0,12.7,10.3,23,23,23c12.7,0,23-10.3,23-23v-30.6C523.1,250.5,512.8,240.2,500.1,240.2z"/>';
$icon +=
'<path d="M500,10C229.4,10,10,229.4,10,500c0,270.6,219.4,490,490,490c270.6,0,490-219.4,490-490C990,229.4,770.6,10,500,10z M500,944.1C254.8,944.1,55.9,745.2,55.9,500C55.9,254.8,254.8,55.9,500,55.9S944.1,254.8,944.1,500C944.1,745.2,745.2,944.1,500,944.1z"/></g></svg>';
}
current_fs
.find(".wpcf7-response-output")
.addClass("wpcf7-validation-errors")
.show()
.html($icon + json.message);
}else{
has_response=false;
$icon="";
if($(".woodmart-ajax-shop-on").length==0 &&
$(".theme-woodmart").length==0
){
$icon +=
'<svg class="wpcf7-icon-wraning" width="18px" height="18px" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">';
$icon +=
'<g><path d="M499.9,361.6c-12.7,0-23,10.3-23,23v352.2c0,12.7,10.3,23,23,23s23-10.3,23-23V384.6C522.9,371.9,512.6,361.6,499.9,361.6z"/>';
$icon +=
'<path d="M500.1,240.2c-12.7,0-23,10.3-23,23v30.6c0,12.7,10.3,23,23,23c12.7,0,23-10.3,23-23v-30.6C523.1,250.5,512.8,240.2,500.1,240.2z"/>';
$icon +=
'<path d="M500,10C229.4,10,10,229.4,10,500c0,270.6,219.4,490,490,490c270.6,0,490-219.4,490-490C990,229.4,770.6,10,500,10z M500,944.1C254.8,944.1,55.9,745.2,55.9,500C55.9,254.8,254.8,55.9,500,55.9S944.1,254.8,944.1,500C944.1,745.2,745.2,944.1,500,944.1z"/></g></svg>';
}
current_fs.append('<div class="wpcf7-response-output wpcf7-display-none wpcf7-validation-errors" style="display: block;" role="alert">' +
$icon +
json.message +
"</div>"
);
}}
}
if(json.success){
const fusion_wrap=$(
".fusion-column-wrapper.fusion-column-has-shadow.fusion-flex-justify-content-center.fusion-content-layout-column"
);
if(fusion_wrap.length > 0){
fusion_wrap.each(function (){
if($(this).find(".wpcf7-form-control-wrap")){
$(this).css("display", "block");
}});
}
/*
current_fs.fadeOut('400', function(){
next_fs.fadeIn('400');
});
});
*/
current_fs
.find(".wpcf7-form-control-wrap")
.removeClass("cf7mls-invalid");
current_fs.find(".cf7mls-invalid").removeClass("cf7mls-invalid");
current_fs
.find(".wpcf7-not-valid")
.removeClass("wpcf7-not-valid");
current_fs
.find(".wpcf7-form-control-wrap .wpcf7-not-valid-tip")
.remove();
form.find(".cf7mls_current_fs").addClass("cf7mls_back_fs");
form.find(".fieldset-cf7mls").removeClass("cf7mls_current_fs");
next_fs.addClass("cf7mls_current_fs");
next_fs.find("input, textarea").first().focus();
if(form.find(".cf7mls_progress_bar").length){
let allow_choose_step=form
.find(".cf7mls_progress_bar")
.attr("data-allow-choose-step");
let order_cur=Number(
form
.find("fieldset.cf7mls-choose-step")
.attr("data-cf7mls-order")
);
let step_cur =
Number(
form
.find(".cf7mls_progress_bar li.current")
.attr("data-counter")
) - 1;
if(allow_choose_step==="on"){
form
.find("fieldset.fieldset-cf7mls")
.css({ visibility: "unset", height: "auto" });
form
.find("fieldset.fieldset-cf7mls")
.removeClass("cf7mls-choose-step");
for (let index=0; index < step_cur; index++){
if(!$(
"form fieldset.fieldset-cf7mls[data-cf7mls-order=" +
index +
"]"
).hasClass("cf7mls_back_fs")
){
$(
"form fieldset.fieldset-cf7mls[data-cf7mls-order=" +
index +
"]"
).addClass("cf7mls_back_fs");
}}
}
if(allow_choose_step==="on" &&
order_cur!==step_cur &&
(order_cur===0||order_cur)
){
$("form .cf7mls_progress_bar li.cf7_mls_steps_item").each(function (index){
if($(this).hasClass("choose-step")){
$(this).removeClass("choose-step");
}}
);
form
.find("fieldset.fieldset-cf7mls")
.removeClass("cf7mls_back_fs");
form
.find("fieldset.fieldset-cf7mls")
.removeClass("cf7mls_current_fs");
form
.find("fieldset.fieldset-cf7mls")
.each(function (index, el){
if(index > step_cur){
return;
}
$(el).addClass("cf7mls_back_fs");
if(index===step_cur){
$(el).removeClass("cf7mls_back_fs");
$(el).addClass("cf7mls_current_fs");
}});
}else{
var cur=form
.find("fieldset.fieldset-cf7mls")
.index(current_fs);
var nex=form
.find("fieldset.fieldset-cf7mls")
.index(next_fs);
form
.find(".cf7mls_progress_bar li")
.eq(cur)
.removeClass("current");
form
.find(".cf7mls_progress_bar li")
.eq(nex)
.addClass("active current");
cf7mls_step_item_finish(cur, nex, form, "next");
cf7mls_icon_check(form, "next");
}}
if(form.find(".cf7mls_number_step_wrap").length){
cf7mls_bar_process(form);
}
cf7mls_transition_effects(form, "effects_next");
dhScrollTo(form);
return false;
}else{
}
next_clicked=false;
})
.fail(function (){
$this.removeClass("sending");
next_clicked=false;
})
.always(function (){
$this.removeClass("sending");
next_clicked=false;
});
return false;
}});
$(document).on("click", ".cf7mls_back", function (event){
var $this=$(this);
var form=$this.parent().closest("form.wpcf7-form");
$(".wpcf7-response-output.wpcf7-display-none")
.removeClass("wpcf7-validation-errors")
.removeAttr("style")
.html("");
$(".wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok").hide();
current_fs=$this.closest(".fieldset-cf7mls");
previous_fs=current_fs.prev();
current_fs.find(".wpcf7-form-control-wrap").removeClass("cf7mls-invalid");
current_fs.find(".cf7mls-invalid").removeClass("cf7mls-invalid");
current_fs.find(".wpcf7-not-valid").removeClass("wpcf7-not-valid");
current_fs.find(".wpcf7-form-control-wrap .wpcf7-not-valid-tip").remove();
form.find(".fieldset-cf7mls").removeClass("cf7mls_current_fs");
previous_fs.addClass("cf7mls_current_fs").removeClass("cf7mls_back_fs");
if(form.find(".cf7mls_progress_bar").length){
form.find("fieldset.fieldset-cf7mls").css({ display: "" });
let allow_choose_step=form
.find(".cf7mls_progress_bar")
.attr("data-allow-choose-step");
let order_cur=Number(
form.find("fieldset.cf7mls-choose-step").attr("data-cf7mls-order")
);
let step_cur =
Number(
form
.find(".cf7mls_progress_bar li.choose-step")
.attr("data-counter")
) - 1;
if(allow_choose_step==="on" &&
order_cur!==step_cur &&
(order_cur===0||order_cur)
){
$("form .cf7mls_progress_bar li.cf7_mls_steps_item").each(function (
index
){
if($(this).hasClass("choose-step")){
$(this).removeClass("choose-step");
$(this).addClass("active");
$(this).addClass("current");
if($(this).next().hasClass("cf7mls-steps-item-finish")){
$(this).next().removeClass("active");
$(this).next().removeClass("current");
}}else{
if($(this).hasClass("active") &&
$(this).hasClass("current") &&
!$(this).hasClass("cf7mls-steps-item-finish")
){
$(this).removeClass("active");
$(this).removeClass("current");
}}
});
form.find("fieldset.fieldset-cf7mls").removeClass("cf7mls_back_fs");
form
.find("fieldset.fieldset-cf7mls")
.css({ visibility: "unset", height: "auto" });
form
.find("fieldset.fieldset-cf7mls")
.removeClass("cf7mls_current_fs");
form
.find("fieldset.fieldset-cf7mls")
.removeClass("cf7mls-choose-step");
form.find("fieldset.fieldset-cf7mls").each(function (index, el){
if(index > step_cur){
return;
}
$(el).addClass("cf7mls_back_fs");
if(index===step_cur){
$(el).removeClass("cf7mls_back_fs");
$(el).addClass("cf7mls_current_fs");
}});
}else{
var pre=form.find("fieldset.fieldset-cf7mls").index(previous_fs);
var cur=form.find("fieldset.fieldset-cf7mls").index(current_fs);
form
.find(".cf7mls_progress_bar li")
.eq(pre)
.addClass("active current");
form
.find(".cf7mls_progress_bar li")
.eq(cur)
.removeClass("active current");
cf7mls_icon_check(form, "back");
cf7mls_step_item_finish(pre, cur, form, "back");
}}
if(form.find(".cf7mls_number_step_wrap").length){
cf7mls_bar_process(form);
}
cf7mls_transition_effects(form, "effects_back");
dhScrollTo(form);
return false;
});
$(document).on("click", ".cf7mls_close_preview", function (event){
event.preventDefault();
var $this=$(this);
var form=$this.closest("form.wpcf7-form");
form.css("padding-top", "0px");
form.find("ul.cf7mls_progress_bar").css("display", "flex");
form.find(".cf7mls_close_preview").remove();
form.css("overflow", "");
form.find(".cf7mls_back").css("display", "");
form.find(".cf7mls_next").css("display", "");
form.find(".wpcf7-cf7mls_preview_step").css("display", "");
form.find(".fieldset-cf7mls").removeClass("cf7mls_preview_fs");
form.find("input").removeAttr("disabled");
form.find("button").removeAttr("disabled");
form.find("select").removeAttr("disabled");
form.find("textarea").removeAttr("disabled");
form.removeClass("cf7mls_reviewing");
$("body").find(".cf7mls_reviewing_overlay").remove();
preview_clicked = !preview_clicked;
});
$(document).on("click", ".wpcf7-cf7mls_preview_step", function (event){
event.preventDefault();
var $this=$(this);
var form=$this.closest("form.wpcf7-form");
if(preview_clicked===false){
form.append('<div class="cf7mls_close_preview"><span><i><svg viewBox="64 64 896 896" data-icon="close" width="1em" height="1em" fill="rgba(0, 0, 0, 0.45)" aria-hidden="true" focusable="false"><path d="M563.8 512l262.5-312.9c4.4-5.2.7-13.1-6.1-13.1h-79.8c-4.7 0-9.2 2.1-12.3 5.7L511.6 449.8 295.1 191.7c-3-3.6-7.5-5.7-12.3-5.7H203c-6.8 0-10.5 7.9-6.1 13.1L459.4 512 196.9 824.9A7.95 7.95 0 0 0 203 838h79.8c4.7 0 9.2-2.1 12.3-5.7l216.5-258.1 216.5 258.1c3 3.6 7.5 5.7 12.3 5.7h79.8c6.8 0 10.5-7.9 6.1-13.1L563.8 512z"></path></svg></i></span></div>'
);
form.css("padding-top", "20px");
form.find("ul.cf7mls_progress_bar").css("display", "none");
form.find(".cf7mls_back").css("display", "none");
form.find(".cf7mls_next").css("display", "none");
form.find(".wpcf7-cf7mls_preview_step").css("display", "none");
form.css("overflow", "inherit");
form.find("input").attr("disabled", "disabled");
form.find("button").attr("disabled", "disabled");
form.find("select").attr("disabled", "disabled");
form.find("textarea").attr("disabled", "disabled");
form.find(".wpcf7-cf7mls_preview_step").removeAttr("disabled");
form.addClass("cf7mls_reviewing");
$("body").append('<div class="cf7mls_reviewing_overlay"></div>');
form.find(".fieldset-cf7mls").addClass("cf7mls_preview_fs");
}else{
form.css("padding-top", "0px");
form.find("ul.cf7mls_progress_bar").css("display", "flex");
form.find(".cf7mls_close_preview").remove();
form.css("overflow", "");
form.find(".cf7mls_back").css("display", "");
form.find(".cf7mls_next").css("display", "");
form.find(".wpcf7-cf7mls_preview_step").css("display", "");
form.find(".fieldset-cf7mls").removeClass("cf7mls_preview_fs");
form.find("input").removeAttr("disabled");
form.find("button").removeAttr("disabled");
form.find("select").removeAttr("disabled");
form.find("textarea").removeAttr("disabled");
form.removeClass("cf7mls_reviewing");
$("body").find(".cf7mls_reviewing_overlay").remove();
}
preview_clicked = !preview_clicked;
});
$(document).on("click", ".cf7mls-auto-next-step", function (event){
var $this=$(this);
if($this.is("input")){
$(document).on("change", $this, function (event){
var currentFieldSet=$this
.parent()
.closest("fieldset.fieldset-cf7mls");
$(currentFieldSet).find(".cf7mls_next").trigger("click");
});
}else{
var currentFieldSet=$this
.parent()
.closest("fieldset.fieldset-cf7mls");
$(currentFieldSet).find(".cf7mls_next").trigger("click");
}});
$("form.wpcf7-form").each(function (index, el){
let style_bar=$(el)
.find(".cf7mls_progress_bar")
.attr("data-bg-style-bar");
if(style_bar!==undefined){
let step="";
if(style_bar=="box_vertical_squaren" ||
style_bar=="box_larerSign_squaren"
){
step=$(".cf7mls_progress_bar li");
step_click=".cf7mls_progress_bar li";
}else{
step=$(
".cf7mls_progress_bar li .cf7_mls_steps_item_icon, .cf7mls_progress_bar li .cf7_mls_steps_item_content"
);
step_click =
".cf7mls_progress_bar li .cf7_mls_steps_item_icon, .cf7mls_progress_bar li .cf7_mls_steps_item_content";
}}
});
$(document).on("click", step_click, function (event){
var allow_choose_step=$(this)
.parents(".cf7mls_progress_bar")
.attr("data-allow-choose-step");
let style_bar=$(this)
.parents(".cf7mls_progress_bar")
.attr("data-bg-style-bar");
if(allow_choose_step==="on"){
var form=$(this).parents("form.wpcf7-form");
form.find(".wpcf7-response-output").css("display", "");
let step_action="";
if(style_bar=="box_vertical_squaren" ||
style_bar=="box_larerSign_squaren"
){
step_action=Number($(this).attr("data-counter")) - 1;
$("form .cf7mls_progress_bar li.cf7_mls_steps_item").each(function (
index
){
$(this).removeClass("choose-step");
if($(this).hasClass("active") &&
$(this).hasClass("current") &&
!$(this).hasClass("cf7mls-steps-item-finish")
){
$(this).removeClass("active");
$(this).removeClass("current");
$(this).addClass("choose-step");
}});
if(!$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(step_action + 1) +
"]"
)
).hasClass("cf7mls-steps-item-finish")
){
$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(step_action + 1) +
"]"
)
).addClass("active");
$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(step_action + 1) +
"]"
)
).addClass("current");
}}else{
step_action=Number($(this).parents("li").attr("data-counter")) - 1;
$("form .cf7mls_progress_bar li.cf7_mls_steps_item").each(function (
index
){
$(this).removeClass("choose-step");
if($(this).hasClass("active") &&
$(this).hasClass("current") &&
!$(this).hasClass("cf7mls-steps-item-finish")
){
$(this).removeClass("active");
$(this).removeClass("current");
$(this).addClass("choose-step");
if($(this).next().hasClass("cf7mls-steps-item-finish")){
$(this).addClass("active");
}}else if($(this).hasClass("active") &&
$(this).hasClass("current") &&
$(this).hasClass("cf7mls-steps-item-finish")
){
if(style_bar=="horizontal_round" ||
style_bar=="horizontal_squaren"
){
if(!$(this).next().hasClass("cf7mls-steps-item-finish")){
$(this).removeClass("active");
}}else{
if(!$(this).hasClass("cf7mls-steps-item-finish")){
$(this).removeClass("active");
}}
$(this).addClass("choose-step");
$(this).removeClass("current");
}});
if(!$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
step_action +
"]"
)
)
.next()
.hasClass("cf7mls-steps-item-finish")
){
$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(step_action + 1) +
"]"
)
).addClass("active");
$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(step_action + 1) +
"]"
)
).addClass("current");
}else{
$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(step_action + 1) +
"]"
)
).addClass("active");
$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(step_action + 1) +
"]"
)
).addClass("current");
}}
$(
form.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")[step_action]
).removeClass("cf7mls-choose-step");
form
.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")
.removeClass("cf7mls_back_fs");
form
.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")
.removeClass("cf7mls_current_fs");
form
.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")
.removeClass("cf7mls-choose-step");
form.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls").css({
visibility: "hidden",
height: 0,
margin: 0,
paddingBottom: "0px",
marginBottom: "0px",
});
$(
form.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")[step_action]
).addClass("cf7mls_current_fs");
$(
form.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")[step_action]
).addClass("cf7mls-choose-step");
$(
form.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")[step_action]
).css({
visibility: "visible",
height: "auto",
paddingBottom: "2px",
marginBottom: "20px",
});
cf7mls_transition_effects(form, "effects_next");
}});
$(document).on("wpcf7mailsent",
".wpcf7-form.cf7mls-auto-return-first-step",
function (event){
const current_form=$(this);
current_form
.find(".fieldset-cf7mls-wrapper fieldset.fieldset-cf7mls")
.each(function (index){
if($(this).hasClass("choose-step")){
$(this).removeClass("choose-step");
}
if($(this).hasClass("cf7_mls_step_invalid")){
$(this).removeClass("cf7_mls_step_invalid");
}
if($(this).hasClass("cf7mls-steps-item-finish")){
$(this).removeClass("cf7mls-steps-item-finish");
}
if(index!=0){
if($(this).hasClass("active")){
$(this).removeClass("active");
}
if($(this).hasClass("current")){
$(this).removeClass("current");
}}else{
if(!$(this).hasClass("active")){
$(this).addClass("active");
}
if(!$(this).hasClass("current")){
$(this).addClass("current");
}}
});
current_form
.find(".fieldset-cf7mls-wrapper fieldset.fieldset-cf7mls")
.each(function (index){
if($(this).hasClass("cf7mls-choose-step")){
$(this).removeClass("cf7mls-choose-step");
}
if($(this).hasClass("cf7mls_back_fs")){
$(this).removeClass("cf7mls_back_fs");
}
if(index!=0){
if($(this).hasClass("cf7mls_current_fs")){
$(this).removeClass("cf7mls_current_fs");
}}else{
if(!$(this).hasClass("cf7mls_current_fs")){
$(this).addClass("cf7mls_current_fs");
}}
});
cf7mls_reset_icon(current_form);
}
);
$(document).on("wpcf7invalid", ".wpcf7-form", function (event){
const form=$(this);
setTimeout(()=> {
$(this)
.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")
.each(function (index){
if($(this).find(".wpcf7-not-valid-tip").length > 0){
$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(index + 1) +
"]"
)
).addClass("cf7_mls_step_invalid");
}else{
if($(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(index + 1) +
"]"
)
).hasClass("cf7_mls_step_invalid")
){
$(
form.find(".cf7mls_progress_bar li.cf7_mls_steps_item[data-counter=" +
(index + 1) +
"]"
)
).removeClass("cf7_mls_step_invalid");
}}
});
}, 1000);
});
function dhScrollTo(el){
if(el.find(".fieldset-cf7mls-wrapper.no-scroll").length ||
el.hasClass("cf7mls-no-scroll")
){
return;
}
if(cf7mls_object.scroll_step=="true"){
$("html, body").animate({
scrollTop: el.offset().top - 110,
},
"slow"
);
}else if(cf7mls_object.scroll_step=="scroll_to_top"){
$("html, body").animate({
scrollTop: $("body").offset().top - 110,
},
"slow"
);
}}
function cf7mls_toggle_next_btn(acceptances, fieldset){
if(acceptances.length > 0){
var ii=0;
$.each(acceptances, function (i, v){
if($(v).is(":checked")){
}else{
ii++;
}});
if(ii > 0){
$(fieldset).find(".cf7mls_next").attr("disabled", "disabled");
}else{
$(fieldset).find(".cf7mls_next").removeAttr("disabled");
}}
}
function cf7mls_icon_check(form, event){
if(event=="next"){
$(form)
.find(".cf7mls_progress_bar li")
.each(function (key, el){
if($(el).hasClass("active")&&!$(el).hasClass("current")){
if(!$(el).hasClass("cf7_mls_step_invalid")){
$($(el).find(".cf7_mls_count_step")).css("display", "none");
}
$($(el).find(".cf7_mls_check")).css("display", "block");
}});
}
if(event=="back"){
$(form)
.find(".cf7mls_progress_bar li")
.each(function (key, el){
if(!$(el).hasClass("active")||$(el).hasClass("current")){
if(!$(el).hasClass("cf7_mls_step_invalid")){
$($(el).find(".cf7_mls_count_step")).css("display", "block");
}
$($(el).find(".cf7_mls_check")).css("display", "none");
}});
}}
function cf7mls_reset_icon(form){
$(form)
.find(".cf7mls_progress_bar li")
.each(function (key, el){
if(key===0){
$(el).attr("class", "cf7_mls_steps_item active current");
}else{
$(el).attr("class", "cf7_mls_steps_item");
}
$($(el).find(".cf7_mls_count_step")).css("display", "block");
$($(el).find(".cf7_mls_check")).css("display", "none");
});
}
function cf7mls_step_item_finish(cur, nex, form, event){
let style_text=form
.find(".cf7mls_progress_bar")
.attr("data-style-text");
let style_bar=form
.find(".cf7mls_progress_bar")
.attr("data-bg-style-bar");
let numberItem;
if(style_text=="horizontal"||style_text=="no"){
if(style_bar=="navigation_horizontal_squaren" ||
style_bar=="navigation_horizontal_round" ||
style_bar=="largerSign_squaren" ||
style_bar=="largerSign_round"
){
numberItem=cur;
}}
if(style_text=="vertical"){
if(style_bar=="navigation_horizontal_squaren" ||
style_bar=="navigation_horizontal_round" ||
style_bar=="largerSign_squaren" ||
style_bar=="largerSign_round"
){
numberItem=nex;
}}
if(style_bar=="box_vertical_squaren" ||
style_bar=="box_larerSign_squaren"
){
numberItem=cur;
}
if(style_bar=="horizontal_round" ||
style_bar=="horizontal_squaren"
){
numberItem=nex;
}
if(numberItem||numberItem=="0"){
if(event=="next"){
form
.find(".cf7mls_progress_bar li")
.eq(numberItem)
.addClass("cf7mls-steps-item-finish");
}else if(event=="back"){
form
.find(".cf7mls_progress_bar li")
.eq(numberItem)
.removeClass("cf7mls-steps-item-finish");
}}
if(form
.find(".cf7mls_progress_bar li")
.eq(cur)
.hasClass("cf7_mls_step_invalid")
){
form
.find(".cf7mls_progress_bar li")
.eq(cur)
.removeClass("cf7_mls_step_invalid");
}}
function cf7mls_color_bar(color, id_form, el){
let style_bar =
"cf7mls_bar_style_" +
$(el).find(".cf7mls_progress_bar").attr("data-bg-style-bar");
let style_text =
"cf7mls_bar_style_text_" +
$(el).find(".cf7mls_progress_bar").attr("data-style-text");
let css_item_icon =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active .cf7_mls_steps_item_icon { background: " +
color +
";}";
let css_item_icon_befor =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active:before { background: " +
color +
";}";
let css_bg_li =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active{ background: " +
color +
";}";
let css_step =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active .cf7_mls_count_step{ color: " +
color +
";}";
let css_check =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active .cf7_mls_check{ color: " +
color +
";}";
let css_li_after =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active:after{background: " +
color +
";}";
let css_box_li_after =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active:after{background: #eaedef;}";
let css_box_li_finish_after =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.cf7mls-steps-item-finish + li:after{background:" +
color +
";}";
let css_box_li_before_finish_after =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active + li.cf7mls-steps-item-finish:after{background:" +
color +
";}";
let css_active_title =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.active .cf7mls_progress_bar_title{color: #fff;}";
let classItemFinsish =
"." +
style_bar +
"." +
style_text +
'[data-id-form="' +
id_form +
'"]' +
" li.cf7mls-steps-item-finish";
let classCurrent="." + style_bar + "." + style_text + " li.current";
let css_title_after =
".cf7mls_progress_bar_title:after{background: " + color + ";}";
let css_title_border =
".cf7mls_progress_bar_title:after{border-color: " + color + ";}";
let css_li_cur =
"." +
style_bar +
"." +
style_text +
" li.current + li:after{ background: " +
color +
";}";
let css_progress_bar="";
if(style_bar=="cf7mls_bar_style_navigation_horizontal_squaren" ||
style_bar=="cf7mls_bar_style_largerSign_squaren" ||
style_bar=="cf7mls_bar_style_navigation_horizontal_round" ||
style_bar=="cf7mls_bar_style_largerSign_round"
){
switch (style_text){
case "cf7mls_bar_style_text_horizontal":
css_progress_bar +=css_item_icon;
if(style_bar=="cf7mls_bar_style_navigation_horizontal_squaren" ||
style_bar=="cf7mls_bar_style_navigation_horizontal_round"
){
css_progress_bar +=classItemFinsish + " " + css_title_after;
}
if(style_bar=="cf7mls_bar_style_largerSign_squaren" ||
style_bar=="cf7mls_bar_style_largerSign_round"
){
css_progress_bar +=
classItemFinsish +
" " +
".cf7_mls_arrow_point_to_righ svg {fill: " +
color +
";}";
}
break;
case "cf7mls_bar_style_text_vertical":
css_progress_bar +=css_item_icon_befor;
if(style_bar=="cf7mls_bar_style_navigation_horizontal_squaren" ||
style_bar=="cf7mls_bar_style_navigation_horizontal_round"
){
css_progress_bar +=
classItemFinsish + ":after{ background: " + color + ";}";
}
if(style_bar=="cf7mls_bar_style_largerSign_squaren" ||
style_bar=="cf7mls_bar_style_largerSign_round"
){
css_progress_bar +=
classItemFinsish + ":after{ border-color: " + color + ";}";
}
break;
case "cf7mls_bar_style_text_no":
css_progress_bar +=css_item_icon;
if(style_bar=="cf7mls_bar_style_navigation_horizontal_squaren" ||
style_bar=="cf7mls_bar_style_navigation_horizontal_round"
){
css_progress_bar +=classItemFinsish + " " + css_title_after;
}
if(style_bar=="cf7mls_bar_style_largerSign_squaren" ||
style_bar=="cf7mls_bar_style_largerSign_round"
){
css_progress_bar +=classItemFinsish + " " + css_title_border;
}
break;
}}
if(style_bar=="cf7mls_bar_style_horizontal_squaren" ||
style_bar=="cf7mls_bar_style_horizontal_round"
){
if(style_text=="cf7mls_bar_style_text_horizontal"){
css_progress_bar +=css_item_icon;
css_progress_bar +=
classCurrent + ":before {background-color:" + color + "}";
}
if(style_text=="cf7mls_bar_style_text_vertical" ||
style_text=="cf7mls_bar_style_text_no"
){
css_progress_bar +=css_item_icon_befor;
css_progress_bar +=
classCurrent + ":after {background-color:" + color + "}";
}}
if((style_bar=="cf7mls_bar_style_box_vertical_squaren" ||
style_bar=="cf7mls_bar_style_box_larerSign_squaren") &&
style_text
){
css_progress_bar +=css_bg_li;
css_progress_bar +=css_step;
css_progress_bar +=css_check;
css_progress_bar +=css_li_after;
css_progress_bar +=css_active_title;
}
if(style_bar=="cf7mls_bar_style_box_larerSign_squaren"){
css_progress_bar +=css_li_cur;
css_progress_bar +=css_box_li_after;
css_progress_bar +=css_box_li_finish_after;
css_progress_bar +=css_box_li_before_finish_after;
}
$("style#cf7mls_style_progress_bar_" + id_form).text(css_progress_bar);
}
function cf7mls_bar_process(form){
let number_step_cur=form
.find(".cf7mls_progress_bar li.current")
.attr("data-counter");
let number_step=form
.find(".cf7mls_number_step_wrap")
.attr("data-number-step");
let bg_color=form
.find(".cf7mls_number_step_wrap")
.attr("data-bg-color");
if(number_step_cur&&number_step){
form
.find(".cf7mls_number_step_wrap .cf7mls_number")
.text(number_step_cur + "/" + number_step);
let title=$(
form.find(".cf7mls_progress_bar li")[Number(number_step_cur) - 1]
)
.find(".cf7mls_progress_bar_title")
.text();
form.find(".cf7mls_number_step_wrap .cf7mls_step_current").text(title);
let percent_step=100 / (Number(number_step) - 1);
if(number_step_cur=="1"){
form
.find(".cf7mls_number_step_wrap .cf7mls_progress_barinner")
.css("width", "");
}else{
form
.find(".cf7mls_number_step_wrap .cf7mls_progress_barinner")
.css("width", percent_step * (Number(number_step_cur) - 1) + "%");
}}
if(bg_color){
form
.find(".cf7mls_number_step_wrap .cf7mls_progress_barinner")
.css("background", bg_color);
}}
function cf7mls_transition_effects(form, transitions_bt){
var transition_effects=$(form)
.find(".fieldset-cf7mls-wrapper")
.attr("data-transition-effects");
if(transition_effects&&typeof transition_effects!==undefined){
var effects=transition_effects.split(" ");
var effect_form={
transition_effects: transition_effects,
effects_back: "",
effects_next: "",
effects_in: "",
};
$.each(effects, function (index, effect){
var es=effect.split("_");
switch (es[0]){
case "back":
effect_form.effects_back=es[1];
break;
case "next":
effect_form.effects_next=es[1];
break;
case "in":
effect_form.effects_in=es[1];
break;
}});
if(transitions_bt=="effects_in"){
$(form)
.find(".fieldset-cf7mls-wrapper .cf7mls_current_fs")
.addClass(effect_form.effects_in + " " + "animated");
}else if(form.find(".fieldset-cf7mls-wrapper").length &&
transitions_bt
){
form
.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")
.removeClass(effect_form.effects_back);
form
.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")
.removeClass(effect_form.effects_next);
form
.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")
.removeClass(effect_form.effects_in);
form
.find(".fieldset-cf7mls-wrapper .fieldset-cf7mls")
.removeClass("animated");
form
.find(".fieldset-cf7mls-wrapper .cf7mls_current_fs")
.addClass(effect_form[transitions_bt] + " " + "animated");
}}
}
function getFormattedDate(date){
let year=date.getFullYear();
let month=(1 + date.getMonth()).toString().padStart(2, "0");
let day=date.getDate().toString().padStart(2, "0");
return day + "." + month + "." + year;
}
function cf7mls_recall_multi_upload_file(this_form, sp, $this){
setTimeout(()=> {
var _val="<ul>";
const fileUpload=this_form.find(".wpcf7-form-control-wrap .dnd-upload-status.complete"
);
if(fileUpload.length > 0){
this_form
.find(".wpcf7-form-control-wrap .dnd-upload-status.complete")
.each(function (){
_val +=
"<li>" +
$(this).find(".dnd-upload-details .name span").text() +
"</li>";
});
}
_val +="</ul>";
sp.html(_val);
$this.val(_val);
}, 3000);
}});
})(jQuery);