Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: course-section.js
const $ = window.jQuery || jQuery; const CourseCurriculum = { toggleAllSections( context ) { const hidden = context.getters.isHiddenAllSections; if ( hidden ) { context.commit( 'OPEN_ALL_SECTIONS' ); } else { context.commit( 'CLOSE_ALL_SECTIONS' ); } LP.Request( { type: 'hidden-sections', hidden: context.getters.hiddenSections, } ); }, updateSectionsOrder( context, order ) { LP.Request( { type: 'sort-sections', order: JSON.stringify( order ), } ).then( function( response ) { const result = response.body; const order_sections = result.data; context.commit( 'SORT_SECTION', order_sections ); }, function( error ) { console.error( error ); } ); }, toggleSection( context, section ) { if ( section.open ) { context.commit( 'CLOSE_SECTION', section ); } else { context.commit( 'OPEN_SECTION', section ); } LP.Request( { type: 'hidden-sections', hidden: context.getters.hiddenSections, } ); }, updateSection( context, section ) { context.commit( 'UPDATE_SECTION_REQUEST', section.id ); LP.Request( { type: 'update-section', section: JSON.stringify( section ), } ).then( function() { context.commit( 'UPDATE_SECTION_SUCCESS', section.id ); } ) .catch( function() { context.commit( 'UPDATE_SECTION_FAILURE', section.id ); } ); }, removeSection( context, payload ) { context.commit( 'REMOVE_SECTION', payload.index ); LP.Request( { type: 'remove-section', section_id: payload.section.id, } ).then( function( response ) { const result = response.body; }, function( error ) { console.error( error ); } ); }, newSection( context, name ) { const newSection = { type: 'new-section', section_name: name, temp_id: LP.uniqueId(), }; context.commit( 'ADD_NEW_SECTION', { id: newSection.temp_id, items: [], open: false, title: newSection.section_name, } ); LP.Request( newSection ).then( function( response ) { const result = response.body; if ( result.success ) { const section = $.extend( {}, result.data, { open: true } ); context.commit( 'ADD_NEW_SECTION', section ); } }, function( error ) { console.error( error ); } ); }, updateSectionItem( context, payload ) { context.commit( 'UPDATE_SECTION_ITEM_REQUEST', payload.item.id ); LP.Request( { type: 'update-section-item', section_id: payload.section_id, item: JSON.stringify( payload.item ), } ).then( function( response ) { context.commit( 'UPDATE_SECTION_ITEM_SUCCESS', payload.item.id ); const result = response.body; if ( result.success ) { const item = result.data; context.commit( 'UPDATE_SECTION_ITEM', { section_id: payload.section_id, item } ); } }, function( error ) { context.commit( 'UPDATE_SECTION_ITEM_FAILURE', payload.item.id ); console.error( error ); } ); }, removeSectionItem( context, payload ) { const id = payload.item.id; context.commit( 'REMOVE_SECTION_ITEM', payload ); payload.item.temp_id = 0; LP.Request( { type: 'remove-section-item', section_id: payload.section_id, item_id: id, } ).then( function( rs ) { const { data, success } = rs.body; if ( success ) { context.commit( 'REMOVE_SECTION_ITEM', payload ); } else { alert( data ); payload.oldId = id; context.commit( 'REMOVE_SECTION_ITEM', payload ); } context.commit( 'REMOVE_SECTION_ITEM', payload ); } ); }, deleteSectionItem( context, payload ) { const id = payload.item.id; context.commit( 'REMOVE_SECTION_ITEM', payload ); payload.item.temp_id = 0; LP.Request( { type: 'delete-section-item', section_id: payload.section_id, item_id: id, } ).then( function( rs ) { const { data, success } = rs.body; if ( success ) { context.commit( 'REMOVE_SECTION_ITEM', payload ); } else { alert( data ); payload.oldId = id; context.commit( 'REMOVE_SECTION_ITEM', payload ); } } ); }, newSectionItem( context, payload ) { context.commit( 'APPEND_EMPTY_ITEM_TO_SECTION', payload ); //context.commit('UPDATE_SECTION_ITEMS', {section_id: payload.section_id, items: result.data}); LP.Request( { type: 'new-section-item', section_id: payload.section_id, item: JSON.stringify( payload.item ), } ).then( function( response ) { const result = response.body; if ( result.success ) { // context.commit('UPDATE_SECTION_ITEMS', {section_id: payload.section_id, items: result.data}); const items = {}; $.each( result.data, function( i, a ) { items[ a.old_id ? a.old_id : a.id ] = a; } ); context.commit( 'UPDATE_ITEM_SECTION_BY_ID', { section_id: payload.section_id, items, } ); } }, function( error ) { console.error( error ); } ); }, updateSectionItems( { state }, payload ) { LP.Request( { type: 'update-section-items', section_id: payload.section_id, items: JSON.stringify( payload.items ), last_section: state.sections[ state.sections.length - 1 ] === ( payload.section_id ), } ).then( function( response ) { const result = response.body; if ( result.success ) { // console.log(result); } }, function( error ) { console.error( error ); } ); }, }; export default CourseCurriculum;