PATH:
home
/
letacommog
/
camarsac
/
wp-content
/
plugins
/
jet-engine
/
assets
/
js
/
admin
/
taxonomies
(function( $, JetEngineCPTListConfig ) { 'use strict'; window.JetEngineCPTList = new Vue( { el: '#jet_cpt_list', template: '#jet-cpt-list', data: { itemsList: [], errorNotices: [], editLink: JetEngineCPTListConfig.edit_link, showDeleteDialog: false, deletedItem: {}, }, mounted: function() { var self = this; wp.apiFetch( { method: 'get', path: JetEngineCPTListConfig.api_path, } ).then( function( response ) { if ( response.success && response.data ) { self.itemsList = response.data; } else { if ( response.notices.length ) { response.notices.forEach( function( notice ) { self.errorNotices.push( notice.message ); } ); } } } ).catch( function( e ) { self.errorNotices.push( e.message ); } ); }, methods: { deleteItem: function( item ) { this.deletedItem = item; this.showDeleteDialog = true; }, getEditLink: function( id ) { return this.editLink.replace( /%id%/, id ); }, } } ); })( jQuery, window.JetEngineCPTListConfig );
[+]
..
[-] edit.js
[edit]
[-] delete-dialog.js
[edit]
[-] list.js
[edit]