Software: Apache. PHP/5.5.15 uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 SYSTEM Safe-mode: OFF (not secure) E:\copia nuevo\htdocs\cumbreclima\wp-content\plugins\js_composer\assets\js\backend\ drwxrwxrwx |
Viewing file: composer-custom-views.js (44.32 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) | /* ========================================================= * composer-custom-views.js v1.1 * ========================================================= * Copyright 2013 Wpbakery * * Visual composer ViewModel objects for shortcodes with custom * functionality. * ========================================================= */ (function ($) { var Shortcodes = vc.shortcodes; window.VcRowView = vc.shortcode_view.extend({ change_columns_layout:false, events:{ 'click > .controls .column_delete':'deleteShortcode', 'click > .controls .set_columns':'setColumns', 'click > .controls .column_add':'addElement', 'click > .controls .column_edit':'editElement', 'click > .controls .column_clone':'clone', 'click > .controls .column_move':'moveElement', 'click > .controls .column_toggle': 'toggleElement', 'click > .wpb_element_wrapper .vc_controls': 'openClosedRow' }, convertRowColumns:function (layout) { var layout_split = layout.toString().split(/\_/), columns = Shortcodes.where({parent_id:this.model.id}), new_columns = [], new_layout = [], new_width = ''; _.each(layout_split, function (value, i) { var column_data = _.map(value.toString().split(''), function (v, i) { return parseInt(v, 10); }), new_column_params, new_column; if(column_data.length > 3) new_width = column_data[0] + '' + column_data[1] + '/' + column_data[2] + '' + column_data[3]; else if(column_data.length > 2) new_width = column_data[0] + '/' + column_data[1] + '' + column_data[2]; else new_width = column_data[0] + '/' + column_data[1]; new_layout.push(new_width); new_column_params = _.extend(!_.isUndefined(columns[i]) ? columns[i].get('params') : {}, {width: new_width}), vc.storage.lock(); new_column = Shortcodes.create({shortcode:(this.model.get('shortcode') === 'vc_row_inner' ? 'vc_column_inner' : 'vc_column'), params:new_column_params, parent_id:this.model.id}); if (_.isObject(columns[i])) { _.each(Shortcodes.where({parent_id:columns[i].id}), function (shortcode) { vc.storage.lock(); shortcode.save({parent_id:new_column.id}); vc.storage.lock(); shortcode.trigger('change_parent_id'); }); } new_columns.push(new_column); }, this); if (layout_split.length < columns.length) { _.each(columns.slice(layout_split.length), function (column) { _.each(Shortcodes.where({parent_id:column.id}), function (shortcode) { vc.storage.lock(); shortcode.save({'parent_id':_.last(new_columns).id}); vc.storage.lock(); shortcode.trigger('change_parent_id'); }); }); } _.each(columns, function (shortcode) { vc.storage.lock(); shortcode.destroy(); }, this); this.model.save(); this.setActiveLayoutButton('' + layout); // this.sizeRows(); return new_layout; }, changeShortcodeParams:function (model) { window.VcRowView.__super__.changeShortcodeParams.call(this, model); this.buildDesignHelpers(); }, buildDesignHelpers: function() { var css = this.model.getParam('css'), $column_toggle = this.$el.find('> .controls .column_toggle'), image, color, $image, $color; this.$el.find('> .controls .vc_row_color').remove(); this.$el.find('> .controls .vc_row_image').remove(); var matches = css.match(/background\-image:\s*url\(([^\)]+)\)/) if(matches && !_.isUndefined(matches[1])) { image = matches[1]; } var matches = css.match(/background\-color:\s*([^\s\;]+)\b/) if(matches && !_.isUndefined(matches[1])) { color = matches[1]; } var matches = css.match(/background:\s*([^\s]+)\b\s*url\(([^\)]+)\)/) if(matches && !_.isUndefined(matches[1])) { color = matches[1]; image = matches[2]; } if(image) { $('<span class="vc_row_image" style="background-image: url(' + image + ');" title="' + i18nLocale.row_background_image + '"></span>') .insertAfter($column_toggle); } if(color) { $('<span class="vc_row_color" style="background-color: ' + color + '" title="' + i18nLocale.row_background_color + '"></span>') .insertAfter($column_toggle); } }, addElement: function(e) { e && e.preventDefault(); var new_column = Shortcodes.create({shortcode:(this.model.get('shortcode') === 'vc_row_inner' ? 'vc_column_inner' : 'vc_column'), params:{}, parent_id:this.model.id}); this.setActiveLayoutButton(); this.$el.removeClass('vc_collapsed-row'); }, _getCurrentLayoutString: function() { var layouts = []; $('> .wpb_vc_column, > .wpb_vc_column_inner', this.$content).each(function () { var width = $(this).data('width'); layouts.push(!width ? '1/1' : width); }); return layouts.join(' + '); }, setSorting:function () { var that = this; if (this.$content.find("> [data-element_type=vc_column], > [data-element_type=vc_column_inner]").length > 1) { this.$content.removeClass('wpb-not-sortable').sortable({ forcePlaceholderSize:true, placeholder:"widgets-placeholder-column", tolerance:"pointer", // cursorAt: { left: 10, top : 20 }, cursor:"move", //handle: '.controls', items:"> [data-element_type=vc_column], > [data-element_type=vc_column_inner]", //wpb_sortablee distance:0.5, start:function (event, ui) { $('#visual_composer_content').addClass('vc_sorting-started'); ui.placeholder.width(ui.item.width()); }, stop:function (event, ui) { $('#visual_composer_content').removeClass('vc_sorting-started'); }, update:function () { var $columns = $("> [data-element_type=vc_column], > [data-element_type=vc_column_inner]", that.$content); $columns.each(function () { var model = $(this).data('model'), index = $(this).index(); model.set('order', index); if ($columns.length - 1 > index) vc.storage.lock(); model.save(); }); }, over:function (event, ui) { ui.placeholder.css({maxWidth:ui.placeholder.parent().width()}); ui.placeholder.removeClass('vc_hidden-placeholder'); // if (ui.item.hasClass('not-column-inherit') && ui.placeholder.parent().hasClass('not-column-inherit')) { // ui.placeholder.addClass('hidden-placeholder'); // } }, beforeStop:function (event, ui) { // if (ui.item.hasClass('not-column-inherit') && ui.placeholder.parent().hasClass('not-column-inherit')) { // return false; // } } }); } else { if (this.$content.hasClass('ui-sortable')) this.$content.sortable('destroy'); this.$content.addClass('wpb-not-sortable'); } }, validateCellsList: function(cells) { var return_cells = [], split = cells.replace(/\s/g, '').split('+'), b; var sum = _.reduce(_.map(split, function(c){ if(c.match(/^[vc\_]{0,1}span\d{1,2}$/)) { var converted_c = vc_convert_column_span_size(c); if(converted_c===false) return 1000; b = converted_c.split(/\//); return_cells.push(b[0] + '' + b[1]); return 12*parseInt(b[0], 10)/parseInt(b[1], 10); } else if(c.match(/^[1-9]|1[0-2]\/[1-9]|1[0-2]$/)) { b = c.split(/\//); return_cells.push(b[0] + '' + b[1]); return 12*parseInt(b[0], 10)/parseInt(b[1], 10); } return 10000; }), function(num, memo) { memo = memo + num; return memo; }, 0); if(sum!==12) return false; return return_cells.join('_'); }, setActiveLayoutButton: function(column_layout) { if( !column_layout ) { var layout = []; layout = column_layout = _.map(vc.shortcodes.where({parent_id: this.model.get('id')}), function(model){ var width = model.getParam('width'); return !width ? '11' : width.replace(/\//, ''); }).join('_'); } this.$el.find('> .controls .vc_active').removeClass('vc_active'); var $button = this.$el.find('> .controls [data-cells-mask=' + vc_get_column_mask(column_layout) + '][data-cells='+column_layout+']'); if($button.length) { $button.addClass('vc_active'); } else { this.$el.find('> .controls [data-cells-mask=custom]').addClass('vc_active'); } }, layoutEditor: function() { if(_.isUndefined(vc.row_layout_editor)) vc.row_layout_editor = new vc.RowLayoutEditorPanelViewBackend({el: $('#vc_row-layout-panel')}); return vc.row_layout_editor; }, setColumns:function (e) { if (_.isObject(e)) e.preventDefault(); var $button = $(e.currentTarget); if($button.data('cells')==='custom') { this.layoutEditor().render(this.model).show(); } else { if(vc.is_mobile) { var $parent = $button.parent(); if(!$parent.hasClass('vc_visible')) { $parent.addClass('vc_visible'); $(document).bind('click.vcRowColumnsControl', function(e){ $parent.removeClass('vc_visible'); $(document).unbind('click.vcRowColumnsControl'); }); } } if (!$button.is('.vc_active')) { this.change_columns_layout = true; _.defer(function (view, cells) { view.convertRowColumns(cells); }, this, $button.data('cells')); } } this.$el.removeClass('vc_collapsed-row'); }, sizeRows: function () { var max_height = 45; $('> .wpb_vc_column, > .wpb_vc_column_inner', this.$content).each(function () { var content_height = $(this).find('> .wpb_element_wrapper > .wpb_column_container').css({minHeight:0}).height(); if (content_height > max_height) max_height = content_height; }).each(function () { $(this).find('> .wpb_element_wrapper > .wpb_column_container').css({minHeight:max_height }); }); }, ready:function (e) { window.VcRowView.__super__.ready.call(this, e); return this; }, checkIsEmpty:function () { window.VcRowView.__super__.checkIsEmpty.call(this); this.setSorting(); }, changedContent:function (view) { // this.sizeRows(); if (this.change_columns_layout) return this; this.setActiveLayoutButton(); // this.sizeRows(); }, moveElement:function (e) { e.preventDefault(); }, toggleElement: function(e) { e && e.preventDefault(); var $control = $(e.currentTarget); this.$el.toggleClass('vc_collapsed-row'); // this.setParentSize(); }, openClosedRow: function(e) { var $control; this.$el.removeClass('vc_collapsed-row'); // this.setParentSize(); }, setParentSize: function() { if(this.model.get('shortcode') === 'vc_row_inner') { var $parent = this.$el.parents('[data-element_type=vc_row]:first'), parent_id; if($parent.length) { parent_id = $parent.data('modelId'); parent_id && vc.app.views[parent_id].sizeRows(); } } } }); window.VcColumnView = vc.shortcode_view.extend({ events:{ 'click > .controls .column_delete':'deleteShortcode', 'click > .controls .column_add':'addElement', 'click > .controls .column_edit':'editElement', 'click > .controls .column_clone':'clone', 'click > .wpb_element_wrapper > .vc_empty-container':'addToEmpty' }, current_column_width: false, initialize:function (options) { window.VcColumnView.__super__.initialize.call(this, options); _.bindAll(this, 'setDropable', 'dropButton'); }, ready:function (e) { window.VcColumnView.__super__.ready.call(this, e); this.setDropable(); return this; }, render:function () { window.VcColumnView.__super__.render.call(this); this.current_column_width = this.model.get('params').width || '1/1'; this.$el.attr('data-width', this.current_column_width); this.setEmpty(); return this; }, changeShortcodeParams: function(model) { window.VcColumnView.__super__.changeShortcodeParams.call(this, model); this.setColumnClasses(); this.buildDesignHelpers(); }, buildDesignHelpers: function() { var css = this.model.getParam('css'), $column_toggle = this.$el.find('> .vc_controls .column_add').get(0), image, color, $image, $color; this.$el.find('> .vc_controls .vc_column_color').remove(); this.$el.find('> .vc_controls .vc_column_image').remove(); var matches = css.match(/background\-image:\s*url\(([^\)]+)\)/) if(matches && !_.isUndefined(matches[1])) { image = matches[1]; } var matches = css.match(/background\-color:\s*([^\s\;]+)\b/) if(matches && !_.isUndefined(matches[1])) { color = matches[1]; } var matches = css.match(/background:\s*([^\s]+)\b\s*url\(([^\)]+)\)/) if(matches && !_.isUndefined(matches[1])) { color = matches[1]; image = matches[2]; } if(image) { $('<span class="vc_column_image" style="background-image: url(' + image + ');" title="' + i18nLocale.column_background_image + '"></span>') .insertBefore($column_toggle); } if(color) { $('<span class="vc_column_color" style="background-color: ' + color + '" title="' + i18nLocale.column_background_color + '"></span>') .insertBefore($column_toggle); } }, setColumnClasses: function() { var offset = this.model.getParam('offset') || '', width = this.model.getParam('width') || '1/1', css_class_width = this.convertSize(width), current_css_class_width; this.current_offset_class && this.$el.removeClass(this.current_offset_class); if(this.current_column_width!== width) { current_css_class_width = this.convertSize(this.current_column_width); this.$el .attr('data-width', width) .removeClass(current_css_class_width) .addClass(css_class_width); this.current_column_width = width; } if(offset.match(/vc_col\-sm\-\d+/)) { this.$el.removeClass(css_class_width); } if(!_.isEmpty(offset)) { this.$el.addClass(offset); } this.current_offset_class = offset; }, addToEmpty:function (e) { e.preventDefault(); if ($(e.target).hasClass('vc_empty-container')) this.addElement(e); }, setDropable:function () { this.$content.droppable({ greedy:true, accept:(this.model.get('shortcode') == 'vc_column_inner' ? '.dropable_el' : ".dropable_el,.dropable_row"), hoverClass:"wpb_ui-state-active", drop:this.dropButton }); return this; }, dropButton:function (event, ui) { if (ui.draggable.is('#wpb-add-new-element')) { new vc.element_block_view({model:{position_to_add:'end'}}).show(this); } else if (ui.draggable.is('#wpb-add-new-row')) { this.createRow(); } }, setEmpty:function () { this.$el.addClass('vc_empty-column'); this.$content.addClass('vc_empty-container'); }, unsetEmpty:function () { this.$el.removeClass('vc_empty-column'); this.$content.removeClass('vc_empty-container'); }, checkIsEmpty:function () { if (Shortcodes.where({parent_id:this.model.id}).length) { this.unsetEmpty(); } else { this.setEmpty(); } /* if (this.model.get('parent_id')) { var row_view = vc.app.views[this.model.get('parent_id')]; if (row_view.model.get('shortcode').match(/^vc\_row/)) { row_view.sizeRows(); } } */ window.VcColumnView.__super__.checkIsEmpty.call(this); }, /** * Create row */ createRow:function () { var row = Shortcodes.create({shortcode:'vc_row_inner', parent_id:this.model.id}); Shortcodes.create({shortcode:'vc_column_inner', params:{width:'1/1'}, parent_id:row.id }); return row; }, convertSize: function(width) { var prefix = 'vc_col-sm-', numbers = width ? width.split('/') : [1,1], range = _.range(1,13), num = !_.isUndefined(numbers[0]) && _.indexOf(range, parseInt(numbers[0], 10)) >=0 ? parseInt(numbers[0], 10) : false, dev = !_.isUndefined(numbers[1]) && _.indexOf(range, parseInt(numbers[1], 10)) >=0 ? parseInt(numbers[1], 10) : false; if(num!==false && dev!==false) { return prefix + (12*num/dev); } return prefix + '12'; }, deleteShortcode:function (e) { var parent_id = this.model.get('parent_id'), parent; if (_.isObject(e)) e.preventDefault(); var answer = confirm(window.i18nLocale.press_ok_to_delete_section); if( answer !== true) return false; this.model.destroy(); if( parent_id && !vc.shortcodes.where({parent_id: parent_id}).length ) { parent = vc.shortcodes.get(parent_id); if ( ! _.contains( ['vc_column', 'vc_column_inner'], parent.get('shortcode') ) ) { parent.destroy(); } } else if(parent_id) { parent = vc.shortcodes.get(parent_id); if(parent && parent.view && parent.view.setActiveLayoutButton) { parent.view.setActiveLayoutButton(); } } } }); window.VcAccordionView = vc.shortcode_view.extend({ adding_new_tab:false, events:{ 'click .add_tab':'addTab', 'click > .vc_controls .column_delete, > .vc_controls .vc_control-btn-delete':'deleteShortcode', 'click > .vc_controls .column_edit, > .vc_controls .vc_control-btn-edit':'editElement', 'click > .vc_controls .column_clone,> .vc_controls .vc_control-btn-clone':'clone' }, render:function () { window.VcAccordionView.__super__.render.call(this); this.$content.sortable({ axis:"y", handle:"h3", stop:function (event, ui) { // IE doesn't register the blur when sorting // so trigger focusout handlers to remove .ui-state-focus ui.item.prev().triggerHandler("focusout"); $(this).find('> .wpb_sortable').each(function () { var shortcode = $(this).data('model'); shortcode.save({'order':$(this).index()}); // Optimize }); } }); return this; }, changeShortcodeParams:function (model) { window.VcAccordionView.__super__.changeShortcodeParams.call(this, model); var collapsible = _.isString(this.model.get('params').collapsible) && this.model.get('params').collapsible === 'yes' ? true : false; if (this.$content.hasClass('ui-accordion')) { this.$content.accordion("option", "collapsible", collapsible); } }, changedContent:function (view) { if (this.$content.hasClass('ui-accordion')) this.$content.accordion('destroy'); var collapsible = _.isString(this.model.get('params').collapsible) && this.model.get('params').collapsible === 'yes' ? true : false; this.$content.accordion({ header:"h3", navigation:false, autoHeight:true, heightStyle: "content", collapsible:collapsible, active:this.adding_new_tab === false && view.model.get('cloned') !== true ? 0 : view.$el.index() }); this.adding_new_tab = false; }, addTab:function (e) { this.adding_new_tab = true; e.preventDefault(); vc.shortcodes.create({shortcode:'vc_accordion_tab', params:{title:window.i18nLocale.section}, parent_id:this.model.id}); }, _loadDefaults:function () { window.VcAccordionView.__super__._loadDefaults.call(this); } }); window.VcAccordionTabView = window.VcColumnView.extend({ events:{ 'click > .vc_controls .column_delete,.wpb_vc_accordion_tab > .vc_controls .vc_control-btn-delete':'deleteShortcode', 'click > .vc_controls .column_add,.wpb_vc_accordion_tab > .vc_controls .vc_control-btn-prepend':'addElement', 'click > .vc_controls .column_edit,.wpb_vc_accordion_tab > .vc_controls .vc_control-btn-edit':'editElement', 'click > .vc_controls .column_clone,.wpb_vc_accordion_tab > .vc_controls .vc_control-btn-clone':'clone', 'click > [data-element_type] > .wpb_element_wrapper > .vc_empty-container':'addToEmpty' }, setContent:function () { this.$content = this.$el.find('> [data-element_type] > .wpb_element_wrapper > .vc_container_for_children'); }, changeShortcodeParams:function (model) { var params = model.get('params'); window.VcAccordionTabView.__super__.changeShortcodeParams.call(this, model); if (_.isObject(params) && _.isString(params.title)) { this.$el.find('> h3 .tab-label').text(params.title); } }, setEmpty:function () { $('> [data-element_type]', this.$el).addClass('vc_empty-column'); this.$content.addClass('vc_empty-container'); }, unsetEmpty:function () { $('> [data-element_type]', this.$el).removeClass('vc_empty-column'); this.$content.removeClass('vc_empty-container'); } }); window.VcMessageView = vc.shortcode_view.extend({ changeShortcodeParams:function (model) { var params = this.model.get('params'), $wrapper; window.VcMessageView.__super__.changeShortcodeParams.call(this, model); $wrapper = this.$el.find('> .wpb_element_wrapper').removeClass(_.values(this.params.color.value).join(' ')); if (_.isObject(params) && _.isString(params.color)) { $wrapper.addClass(params.color); } } }); window.VcTextSeparatorView = vc.shortcode_view.extend({ changeShortcodeParams:function (model) { var params = model.get('params'); window.VcTextSeparatorView.__super__.changeShortcodeParams.call(this, model); if (_.isObject(params) && _.isString(params.title_align)) { this.$el.find('> .wpb_element_wrapper').removeClass(_.values(this.params.title_align.value).join(' ')).addClass(params.title_align); } } }); window.VcCallToActionView = vc.shortcode_view.extend({ changeShortcodeParams:function (model) { var params = model.get('params'); window.VcCallToActionView.__super__.changeShortcodeParams.call(this, model); if (_.isObject(params) && _.isString(params.position)) { this.$el.find('> .wpb_element_wrapper').removeClass(_.values(this.params.position.value).join(' ')).addClass(params.position); } } }); window.VcToggleView = vc.shortcode_view.extend({ events:function () { return _.extend({'click .toggle_title':'toggle' }, window.VcToggleView.__super__.events); }, toggle:function (e) { e.preventDefault(); $(e.currentTarget).toggleClass('toggle_title_active'); $('.toggle_content', this.$el).toggle(); }, changeShortcodeParams:function (model) { var params = model.get('params'); window.VcToggleView.__super__.changeShortcodeParams.call(this, model); if (_.isObject(params) && _.isString(params.open) && params.open === 'true') { $('.toggle_title', this.$el).addClass('toggle_title_active').next().show(); } } }); window.VcButtonView = vc.shortcode_view.extend({events:function () { return _.extend({'click button':'buttonClick' }, window.VcToggleView.__super__.events); }, buttonClick:function (e) { e.preventDefault(); }, changeShortcodeParams:function (model) { var params = model.get('params'); window.VcButtonView.__super__.changeShortcodeParams.call(this, model); if (_.isObject(params)) { var el_class = params.color + ' ' + params.size + ' ' + params.icon; this.$el.find('.wpb_element_wrapper').removeClass(el_class); this.$el.find('button.title').attr({ "class":"title textfield wpb_button " + el_class }); if (params.icon !== 'none' && this.$el.find('button i.icon').length === 0) { this.$el.find('button.title').append('<i class="icon"></i>'); } else { this.$el.find('button.title i.icon').remove(); } } } }); window.VcButton2View = vc.shortcode_view.extend({events:function () { return _.extend({'click button':'buttonClick' }, window.VcToggleView.__super__.events); }, buttonClick:function (e) { e.preventDefault(); }, changeShortcodeParams:function (model) { var params = model.get('params'); window.VcButton2View.__super__.changeShortcodeParams.call(this, model); if (_.isObject(params)) { var el_class = (params.color?'vc_btn_'+params.color:'') + ' ' + (params.color?'vc_btn-'+params.color:'') + ' ' + (params.size?'vc_btn-'+params.size:'')+ ' ' + (params.size?'vc_btn_'+params.size:'') + ' ' + (params.style?'vc_btn_'+params.style:''); this.$el.find('.wpb_element_wrapper').removeClass(el_class); this.$el.find('button.title').attr({ "class":"title textfield vc_btn " + el_class }); } } }); window.VcTabsView = vc.shortcode_view.extend({ new_tab_adding:false, events:{ 'click .add_tab':'addTab', 'click > .vc_controls .vc_control-btn-delete':'deleteShortcode', 'click > .vc_controls .vc_control-btn-edit':'editElement', 'click > .vc_controls .vc_control-btn-clone':'clone' }, initialize:function (params) { window.VcTabsView.__super__.initialize.call(this, params); _.bindAll(this, 'stopSorting'); }, render:function () { window.VcTabsView.__super__.render.call(this); this.$tabs = this.$el.find('.wpb_tabs_holder'); this.createAddTabButton(); return this; }, ready:function (e) { window.VcTabsView.__super__.ready.call(this, e); }, createAddTabButton:function () { var new_tab_button_id = (+new Date() + '-' + Math.floor(Math.random() * 11)); this.$tabs.append('<div id="new-tab-' + new_tab_button_id + '" class="new_element_button"></div>'); this.$add_button = $('<li class="add_tab_block"><a href="#new-tab-' + new_tab_button_id + '" class="add_tab" title="' + window.i18nLocale.add_tab + '"></a></li>').appendTo(this.$tabs.find(".tabs_controls")); }, addTab:function (e) { e.preventDefault(); this.new_tab_adding = true; var tab_title = window.i18nLocale.tab, tabs_count = this.$tabs.find('[data-element_type=vc_tab]').length, tab_id = (+new Date() + '-' + tabs_count + '-' + Math.floor(Math.random() * 11)); vc.shortcodes.create({shortcode:'vc_tab', params:{title:tab_title, tab_id:tab_id}, parent_id:this.model.id}); return false; }, stopSorting:function (event, ui) { var shortcode; this.$tabs.find('ul.tabs_controls li:not(.add_tab_block)').each(function (index) { var href = $(this).find('a').attr('href').replace("#", ""); // $('#' + href).appendTo(this.$tabs); shortcode = vc.shortcodes.get($('[id=' + $(this).attr('aria-controls') + ']').data('model-id')); vc.storage.lock(); shortcode.save({'order':$(this).index()}); // Optimize }); shortcode.save(); }, changedContent:function (view) { var params = view.model.get('params'); if (!this.$tabs.hasClass('ui-tabs')) { this.$tabs.tabs({ select:function (event, ui) { if ($(ui.tab).hasClass('add_tab')) { return false; } return true; } }); this.$tabs.find(".ui-tabs-nav").prependTo(this.$tabs); this.$tabs.find(".ui-tabs-nav").sortable({ axis:(this.$tabs.closest('[data-element_type]').data('element_type') == 'vc_tour' ? 'y' : 'x'), update:this.stopSorting, items:"> li:not(.add_tab_block)" }); } if (view.model.get('cloned') === true) { var cloned_from = view.model.get('cloned_from'), $tab_controls = $('.tabs_controls > .add_tab_block', this.$content), $new_tab = $("<li><a href='#tab-" + params.tab_id + "'>" + params.title + "</a></li>").insertBefore($tab_controls); this.$tabs.tabs('refresh'); this.$tabs.tabs("option", 'active', $new_tab.index()); } else { $("<li><a href='#tab-" + params.tab_id + "'>" + params.title + "</a></li>") .insertBefore(this.$add_button); this.$tabs.tabs('refresh'); this.$tabs.tabs("option", "active", this.new_tab_adding ? $('.ui-tabs-nav li', this.$content).length - 2 : 0); } this.new_tab_adding = false; }, cloneModel:function (model, parent_id, save_order) { var shortcodes_to_resort = [], new_order = _.isBoolean(save_order) && save_order === true ? model.get('order') : parseFloat(model.get('order')) + vc.clone_index, model_clone, new_params = _.extend({}, model.get('params')); if (model.get('shortcode') === 'vc_tab') _.extend(new_params, {tab_id:+new Date() + '-' + this.$tabs.find('[data-element-type=vc_tab]').length + '-' + Math.floor(Math.random() * 11)}); model_clone = Shortcodes.create({shortcode:model.get('shortcode'), id:vc_guid(), parent_id:parent_id, order:new_order, cloned:(model.get('shortcode') === 'vc_tab' ? false : true), cloned_from:model.toJSON(), params:new_params}); _.each(Shortcodes.where({parent_id:model.id}), function (shortcode) { this.cloneModel(shortcode, model_clone.get('id'), true); }, this); return model_clone; } }); // TODO: window.VcColumnView window.VcTabView = window.VcColumnView.extend({ events:{ 'click > .vc_controls .vc_control-btn-delete':'deleteShortcode', 'click > .vc_controls .vc_control-btn-prepend':'addElement', 'click > .vc_controls .vc_control-btn-edit':'editElement', 'click > .vc_controls .vc_control-btn-clone':'clone', 'click > .wpb_element_wrapper > .vc_empty-container':'addToEmpty' }, render:function () { var params = this.model.get('params'); window.VcTabView.__super__.render.call(this); if(!params.tab_id) { params.tab_id = (+new Date() + '-' + Math.floor(Math.random() * 11)); this.model.save('params', params); } this.id = 'tab-' + params.tab_id; this.$el.attr('id', this.id); return this; }, ready:function (e) { window.VcTabView.__super__.ready.call(this, e); this.$tabs = this.$el.closest('.wpb_tabs_holder'); var params = this.model.get('params'); return this; }, changeShortcodeParams:function (model) { var params = model.get('params'); window.VcTabView.__super__.changeShortcodeParams.call(this, model); if (_.isObject(params) && _.isString(params.title) && _.isString(params.tab_id)) { $('.ui-tabs-nav [href=#tab-' + params.tab_id + ']').text(params.title); } }, deleteShortcode:function (e) { _.isObject(e) && e.preventDefault(); var answer = confirm(window.i18nLocale.press_ok_to_delete_section), parent_id = this.model.get('parent_id'); if (answer !== true) return false; this.model.destroy(); if(!vc.shortcodes.where({parent_id: parent_id}).length) { vc.shortcodes.get(parent_id).destroy(); return false; } var params = this.model.get('params'), current_tab_index = $('[href=#tab-' + params.tab_id + ']', this.$tabs).parent().index(); $('[href=#tab-' + params.tab_id + ']').parent().remove(); var tab_length = this.$tabs.find('.ui-tabs-nav li:not(.add_tab_block)').length; if(tab_length > 0) { this.$tabs.tabs('refresh'); } if (current_tab_index < tab_length) { this.$tabs.tabs("option", "active", current_tab_index); } else if (tab_length > 0) { this.$tabs.tabs("option", "active", tab_length - 1); } }, cloneModel:function (model, parent_id, save_order) { var shortcodes_to_resort = [], new_order = _.isBoolean(save_order) && save_order === true ? model.get('order') : parseFloat(model.get('order')) + vc.clone_index, new_params = _.extend({}, model.get('params')); if (model.get('shortcode') === 'vc_tab') _.extend(new_params, {tab_id:+new Date() + '-' + this.$tabs.find('[data-element_type=vc_tab]').length + '-' + Math.floor(Math.random() * 11)}); var model_clone = Shortcodes.create({shortcode:model.get('shortcode'), parent_id:parent_id, order:new_order, cloned:true, cloned_from:model.toJSON(), params:new_params}); _.each(Shortcodes.where({parent_id:model.id}), function (shortcode) { this.cloneModel(shortcode, model_clone.id, true); }, this); return model_clone; } }); /** * Old version of tabs for Wordpress 3.5 * @deprecated * @type {*} */ window.VcTabsView35 = vc.shortcode_view.extend({ new_tab_adding:false, events:{ 'click .add_tab':'addTab', 'click > .controls .column_delete':'deleteShortcode', 'click > .controls .column_edit':'editElement', 'click > .controls .column_clone':'clone' }, initialize:function (params) { window.VcTabsView.__super__.initialize.call(this, params); _.bindAll(this, 'stopSorting'); }, render:function () { window.VcTabsView.__super__.render.call(this); this.$tabs = this.$el.find('.wpb_tabs_holder'); this.createAddTabButton(); return this; }, ready:function (e) { window.VcTabsView.__super__.ready.call(this, e); }, createAddTabButton:function () { var new_tab_button_id = (+new Date() + '-' + Math.floor(Math.random() * 11)); this.$tabs.append('<div id="new-tab-' + new_tab_button_id + '" class="new_element_button"></div>'); this.$tabs.find(".tabs_controls").append('<li class="add_tab_block"><a href="#new-tab-' + new_tab_button_id + '" class="add_tab" title="' + window.i18nLocale.add_tab + '"></a></li>'); }, addTab:function (e) { e.preventDefault(); this.new_tab_adding = true; var tab_title = this.model.get('shortcode') === 'vc_tour' ? window.i18nLocale.slide : window.i18nLocale.tab, tabs_count = this.$tabs.tabs("length"), tab_id = (+new Date() + '-' + tabs_count + '-' + Math.floor(Math.random() * 11)); vc.shortcodes.create({shortcode:'vc_tab', params:{title:tab_title, tab_id:tab_id}, parent_id:this.model.id}); return false; }, stopSorting:function (event, ui) { var shortcode; this.$tabs.find('ul.tabs_controls li:not(.add_tab_block)').each(function (index) { var href = $(this).find('a').attr('href').replace("#", ""); $('#' + href).appendTo(this.$tabs); shortcode = vc.shortcodes.get($('[id=' + $(this).attr('aria-controls') + ']').data('model-id')); vc.storage.lock(); shortcode.save({'order':$(this).index()}); // Optimize }); shortcode.save(); }, changedContent:function (view) { var params = view.model.get('params'); if (!this.$tabs.hasClass('ui-tabs')) { this.$tabs.tabs({ select:function (event, ui) { if ($(ui.tab).hasClass('add_tab')) { return false; } return true; } }); this.$tabs.find(".ui-tabs-nav").prependTo(this.$tabs); this.$tabs.find(".ui-tabs-nav").sortable({ axis:(this.$tabs.closest('[data-element_type]').data('element_type') == 'vc_tour' ? 'y' : 'x'), stop:this.stopSorting, items:"> li:not(.add_tab_block)" }); } if (view.model.get('cloned') === true) { var cloned_from = view.model.get('cloned_from'); var index = $('#tab-' + cloned_from.params.tab_id).index(); this.$tabs.tabs("add", "#tab-" + params.tab_id, params.title, index - 1); this.$tabs.tabs("select", index - 1); } else { this.$tabs.tabs("add", "#tab-" + params.tab_id, params.title, this.$tabs.tabs("length") - 1); this.$tabs.tabs("select", this.new_tab_adding ? (this.$tabs.tabs("length") - 2) : 0); } this.new_tab_adding = false; }, cloneModel:function (model, parent_id, save_order) { var shortcodes_to_resort = [], new_order = _.isBoolean(save_order) && save_order === true ? model.get('order') : parseFloat(model.get('order')) + vc.clone_index, model_clone, new_params = _.extend({}, model.get('params')); if (model.get('shortcode') === 'vc_tab') _.extend(new_params, {tab_id:+new Date() + '-' + this.$tabs.tabs('length') + '-' + Math.floor(Math.random() * 11)}); model_clone = Shortcodes.create({shortcode:model.get('shortcode'), id:vc_guid(), parent_id:parent_id, order:new_order, cloned:(model.get('shortcode') === 'vc_tab' ? false : true), cloned_from:model.toJSON(), params:new_params}); _.each(Shortcodes.where({parent_id:model.id}), function (shortcode) { this.cloneModel(shortcode, model_clone.get('id'), true); }, this); return model_clone; } }); /** * Old version of tab for Wordpress 3.5 * @deprecated * @type {*} */ window.VcTabView35 = window.VcColumnView.extend({ render:function () { var params = this.model.get('params'); window.VcTabView.__super__.render.call(this); this.id = 'tab-' + params.tab_id; this.$el.attr('id', this.id); return this; }, ready:function (e) { window.VcTabView.__super__.ready.call(this, e); this.$tabs = this.$el.closest('.wpb_tabs_holder'); var params = this.model.get('params'); return this; }, changeShortcodeParams:function (model) { var params = model.get('params'); window.VcAccordionTabView.__super__.changeShortcodeParams.call(this, model); if (_.isObject(params) && _.isString(params.title) && _.isString(params.tab_id)) { $('.ui-tabs-nav [href=#tab-' + params.tab_id + ']').text(params.title); } }, deleteShortcode:function (e) { if (_.isObject(e)) e.preventDefault(); var answer = confirm(window.i18nLocale.press_ok_to_delete_section); if (answer !== true) return false; this.model.destroy(); var params = this.model.get('params'); this.$tabs.tabs("remove", $('[href=#tab-' + params.tab_id + ']').parent().index()); }, cloneModel:function (model, parent_id, save_order) { var shortcodes_to_resort = [], new_order = _.isBoolean(save_order) && save_order === true ? model.get('order') : parseFloat(model.get('order')) + vc.clone_index, new_params = _.extend({}, model.get('params')); if (model.get('shortcode') === 'vc_tab') _.extend(new_params, {tab_id:+new Date() + '-' + this.$tabs.tabs('length') + '-' + Math.floor(Math.random() * 11)}); var model_clone = Shortcodes.create({shortcode:model.get('shortcode'), parent_id:parent_id, order:new_order, cloned:true, cloned_from:model.toJSON(), params:new_params}); _.each(Shortcodes.where({parent_id:model.id}), function (shortcode) { this.cloneModel(shortcode, model_clone.id, true); }, this); return model_clone; } }); /** * Append tab_id tempalate filters */ vc.addTemplateFilter(function (string) { var random_id = VCS4() + '-' + VCS4(); return string.replace(/tab\_id\=\"([^\"]+)\"/g, 'tab_id="$1' + random_id + '"'); }); })(window.jQuery); |
:: Command execute :: | |
--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0156 ]-- |