%PDF- %PDF-
Direktori : /home/jalalj2hb/public_html/wp-content/plugins/elementor/modules/history/assets/js/ |
Current File : /home/jalalj2hb/public_html/wp-content/plugins/elementor/modules/history/assets/js/panel-page.js |
var TabHistoryView = require( './history/panel-tab' ), TabHistoryEmpty = require( './history/empty' ), TabRevisionsView = require( './revisions/panel-tab' ), TabRevisionsEmpty = require( './revisions/empty' ); module.exports = Marionette.LayoutView.extend( { template: '#tmpl-elementor-panel-history-page', regions: { content: '#elementor-panel-history-content' }, ui: { tabs: '.elementor-panel-navigation-tab' }, events: { 'click @ui.tabs': 'onTabClick' }, regionViews: {}, currentTab: null, initialize: function() { this.initRegionViews(); }, initRegionViews: function() { var historyItems = elementor.history.history.getItems(), revisionsItems = elementor.history.revisions.getItems(); this.regionViews = { history: { region: this.content, view: function() { if ( historyItems.length ) { return TabHistoryView; } return TabHistoryEmpty; }, options: { collection: historyItems } }, revisions: { region: this.content, view: function() { if ( revisionsItems.length ) { return TabRevisionsView; } return TabRevisionsEmpty; }, options: { collection: revisionsItems } } }; }, activateTab: function( tabName ) { this.ui.tabs .removeClass( 'elementor-active' ) .filter( '[data-view="' + tabName + '"]' ) .addClass( 'elementor-active' ); this.showView( tabName ); }, getCurrentTab: function() { return this.currentTab; }, showView: function( viewName ) { var viewDetails = this.regionViews[ viewName ], options = viewDetails.options || {}, View = viewDetails.view; if ( 'function' === typeof View ) { View = viewDetails.view(); } options.viewName = viewName; this.currentTab = new View( options ); viewDetails.region.show( this.currentTab ); }, onRender: function() { this.showView( 'history' ); }, onTabClick: function( event ) { this.activateTab( event.currentTarget.dataset.view ); }, onDestroy: function() { elementor.getPanelView().getFooterView().ui.history.removeClass( 'elementor-open' ); } } );