first commit
This commit is contained in:
189
modules/appagebuilder/views/js/admin/setting.js
Normal file
189
modules/appagebuilder/views/js/admin/setting.js
Normal file
@@ -0,0 +1,189 @@
|
||||
/**
|
||||
* @Website: apollotheme.com - prestashop template provider
|
||||
* @author Apollotheme <apollotheme@gmail.com>
|
||||
* @copyright Apollotheme
|
||||
* @description:
|
||||
*/
|
||||
function proccessData(id) {
|
||||
var list = $.trim($(id).val()).split(",");
|
||||
var result = "";
|
||||
var sep = "";
|
||||
for(var i = 0; i < list.length; i++) {
|
||||
if($.trim(list[i])) {
|
||||
result += sep + $.trim(list[i]);
|
||||
sep = ",";
|
||||
}
|
||||
}
|
||||
$(id).val(result);
|
||||
}
|
||||
$(document).ready(function() {
|
||||
if(typeof use_mobile_theme !== 'undefined' && use_mobile_theme == 0){
|
||||
if (window.location.href.indexOf("mobiletheme") > -1) {
|
||||
if(confirm($('.source-profile').data('emobile'))){
|
||||
window.location.href = $("#subtab-AdminApPageBuilderThemeConfiguration a").attr('href');
|
||||
}
|
||||
}
|
||||
}
|
||||
if($("#apcheck_version").hasClass('firt')) {apCheckUpdate()}
|
||||
$("#apcheck_version").click(function() {apCheckUpdate()});
|
||||
|
||||
$('.panel-content-builder').slideUp();
|
||||
$('span.open-content').click(function(){
|
||||
$(this).closest('.panel').find('.panel-content-builder').slideToggle();
|
||||
});
|
||||
|
||||
// SHOW FULL input html
|
||||
$(".ap-html-full").closest( ".col-lg-9.col-lg-offset-3" ).removeClass("col-lg-9 col-lg-offset-3");
|
||||
|
||||
//DONGND:: hide home config with theme of leotheme, redirect to profile page
|
||||
if ($('#psthemecusto').length && (typeof ap_check_theme_name != 'undefined'))
|
||||
{
|
||||
$('#psthemecusto .panel').hide();
|
||||
$('#psthemecusto').append('<div class="panel"><div class="panel-heading">'+ap_profile_txt_redirect+': <a target="_blank" href="'+ap_profile_url+'">'+ap_profile_url+'</a></div></div>');
|
||||
}
|
||||
});
|
||||
function apCheckUpdate() {
|
||||
$.ajax({
|
||||
url: 'ht'+'tps'+'://w'+'ww.leo'+'theme'+'.com/moduleservice.php',
|
||||
type: "POST",
|
||||
data: $("#apcheck_version").data('form'),
|
||||
dataType: 'text',
|
||||
success: function(result) {
|
||||
console.log(result);
|
||||
$('.apmess').removeClass('hidden').html(result);
|
||||
}
|
||||
});
|
||||
}
|
||||
function compareListHooks(oldHooks, newHooks) {
|
||||
//console.log(oldHooks);
|
||||
//console.log(newHooks);
|
||||
isEqual = true;
|
||||
if(oldHooks.length > 0 && newHooks.length > 0) {
|
||||
for(var i = 0; i < oldHooks.length; i++) {
|
||||
var isSubLook = false;
|
||||
for(var j = 0; j < newHooks.length; j++) {
|
||||
if(oldHooks[i] === newHooks[j]) {
|
||||
newHooks.splice(j, 1);
|
||||
//console.log(newHooks);
|
||||
isSubLook = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!isSubLook) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return isEqual;
|
||||
}
|
||||
|
||||
$(function() {
|
||||
|
||||
// SHOW MENU 'Ap Module Configuration' - BEGIN
|
||||
if( (typeof(js_ap_controller) != 'undefined') && (js_ap_controller == 'module_configuration')){
|
||||
$('#subtab-AdminApPageBuilder').addClass('active');
|
||||
$('#subtab-AdminApPageBuilderModule').addClass('active');
|
||||
$('#subtab-AdminParentModulesSf').removeClass('active');
|
||||
}
|
||||
// SHOW MENU 'Ap Module Configuration' - END
|
||||
|
||||
// Hide RESUME at left menu, BO
|
||||
if( (typeof(js_ap_dev) != 'undefined') && (js_ap_dev == 1)){
|
||||
// $('#tab-AdminDashboard').hide();
|
||||
$('.onboarding-navbar').hide();
|
||||
}
|
||||
|
||||
$("#hook_header_old").val($("#HEADER_HOOK").val());
|
||||
$("#hook_content_old").val($("#CONTENT_HOOK").val());
|
||||
$("#hook_footer_old").val($("#FOOTER_HOOK").val());
|
||||
$("#hook_product_old").val($("#PRODUCT_HOOK").val());
|
||||
|
||||
$(".list-all-hooks a").click(function() {
|
||||
var newHook = $.trim($(this).text());
|
||||
var id = $("#position-hook-select").val();
|
||||
id = id ? id : "#HEADER_HOOK";
|
||||
var listHook = $.trim($(id).val());
|
||||
if(listHook.search(newHook) < 0) {
|
||||
listHook += (listHook ? "," : "") + newHook;
|
||||
$(id).val(listHook);
|
||||
} else {
|
||||
alert("This hook is existed");
|
||||
}
|
||||
});
|
||||
$("#HEADER_HOOK, #CONTENT_HOOK, #FOOTER_HOOK, #PRODUCT_HOOK").focus(function() {
|
||||
var id = "#" + $(this).attr("id");
|
||||
$("#position-hook-select").val(id);
|
||||
});
|
||||
|
||||
/**
|
||||
* SAVE MODULE CONFIGUATION
|
||||
*/
|
||||
$("#btn-save-appagebuilder").click(function(e) {
|
||||
$isChange = false;
|
||||
proccessData("#HEADER_HOOK");
|
||||
proccessData("#CONTENT_HOOK");
|
||||
proccessData("#FOOTER_HOOK");
|
||||
proccessData("#PRODUCT_HOOK");
|
||||
// Check change config hooks
|
||||
var oldHook = $.trim($("#hook_header_old").val()).split(",");
|
||||
var currentHook = $.trim($("#HEADER_HOOK").val()).split(",");
|
||||
if(oldHook.length != currentHook.length || !compareListHooks(oldHook, currentHook)) {
|
||||
$isChange = true;
|
||||
}
|
||||
oldHook = $.trim($("#hook_content_old").val()).split(",");
|
||||
currentHook = $.trim($("#CONTENT_HOOK").val()).split(",");
|
||||
if(oldHook.length != currentHook.length || !compareListHooks(oldHook, currentHook)) {
|
||||
$isChange = true;
|
||||
}
|
||||
oldHook = $.trim($("#hook_footer_old").val()).split(",");
|
||||
currentHook = $.trim($("#FOOTER_HOOK").val()).split(",");
|
||||
if(oldHook.length != currentHook.length || !compareListHooks(oldHook, currentHook)) {
|
||||
$isChange = true;
|
||||
}
|
||||
oldHook = $.trim($("#hook_product_old").val()).split(",");
|
||||
currentHook = $.trim($("#PRODUCT_HOOK").val()).split(",");
|
||||
if(oldHook.length != currentHook.length || !compareListHooks(oldHook, currentHook)) {
|
||||
$isChange = true;
|
||||
}
|
||||
if($isChange) {
|
||||
if(!confirm($("#message_confirm").val())) {
|
||||
e.stopPropagation();
|
||||
return false;
|
||||
}
|
||||
$("#is_change").val("is_change");
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
$("#modal_form").on("click", ".btn-savewidget", function() {
|
||||
// Is form add new module to appagebuilder
|
||||
if($("#modal_form").find(".form_ap_module").length > 0) {
|
||||
// Validate select hook
|
||||
if(!$("#select-hook").val()) {
|
||||
alert($("#select-hook-error").val());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
/* EXPORT + IMPORT - BEGIN */
|
||||
$(".btn_xml_export").click(function(e) {
|
||||
e.preventDefault();
|
||||
if (typeof record_id !== 'undefined') {
|
||||
var url = $(this).closest('a').attr('href');
|
||||
$('input[name="'+record_id+'"]').each(function(i){
|
||||
if( $(this).is(':checked')){
|
||||
url += '&record_id[]=' + $(this).attr('value');
|
||||
}
|
||||
});
|
||||
window.location.href = url;
|
||||
}
|
||||
});
|
||||
|
||||
$(".btn_xml_import").click(function(e) {
|
||||
e.preventDefault();
|
||||
$('#xml_import_form').slideToggle();
|
||||
$(':focus').blur();
|
||||
});
|
||||
/* EXPORT + IMPORT - END */
|
||||
});
|
||||
Reference in New Issue
Block a user