%PDF- %PDF-
| Direktori : /var/www/projetos/takthua.com.br/wp-content/plugins/ml-slider/admin/assets/js/app/store/ |
| Current File : //var/www/projetos/takthua.com.br/wp-content/plugins/ml-slider/admin/assets/js/app/store/index.js |
import Vue from 'vue'
import Vuex from 'vuex'
import VuexPersistence from 'vuex-persist'
import createLogger from 'vuex/dist/logger'
import slideshows from './modules/slideshows'
// import settings from './modules/settings'
// import slides from './modules/slides'
// Keep in local storage
const vuexLocal = new VuexPersistence({
key: 'metaslider-vuex-' + window.metaslider_api.site_id,
reducer: state => ({
slideshows: {
all: state.slideshows.all.map(s => {
if (state.slideshows?.all?.length < 20 && s.slides.length < 50) {
return s
}
// Truncate slide data when they have a lot of slideshows or slides
s.slides = s?.slides?.map(slide => ({id: slide?.id}))
return s
}),
}
})
})
// Keeping this very simple for now
Vue.use(Vuex)
const debug = process.env.NODE_ENV !== 'production'
// const debug = false
export default new Vuex.Store({
modules: {
slideshows
},
strict: debug,
plugins: debug ? [createLogger()] : [vuexLocal.plugin]
})