/* * @copyright Copyright (c) 2019 Julius Härtl * * @author Julius Härtl * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ import './css/dashboard.scss' import './shared-init.js' const debug = process.env.NODE_ENV !== 'production' let _imports = null const getAsyncImports = async () => { if (_imports) { return _imports } const { default: Vue } = await import('vue') const { default: Vuex } = await import('vuex') const { default: dashboard } = await import('./store/dashboard.js') Vue.prototype.t = t Vue.prototype.n = n Vue.prototype.OC = OC Vue.use(Vuex) const store = new Vuex.Store({ modules: { dashboard, }, strict: debug, }) _imports = { store, Vue, } return _imports } document.addEventListener('DOMContentLoaded', () => { OCA.Dashboard.register('deck', async (el) => { const { Vue, store } = await getAsyncImports() const { default: DashboardUpcoming } = await import('./views/DashboardUpcoming.vue') const View = Vue.extend(DashboardUpcoming) const vm = new View({ propsData: {}, store, }).$mount(el) return vm }) OCA.Dashboard.register('deckToday', async (el) => { const { Vue, store } = await getAsyncImports() const { default: DashboardToday } = await import('./views/DashboardToday.vue') const View = Vue.extend(DashboardToday) const vm = new View({ propsData: {}, store, }).$mount(el) return vm }) OCA.Dashboard.register('deckTomorrow', async (el) => { const { Vue, store } = await getAsyncImports() const { default: DashboardTomorrow } = await import('./views/DashboardTomorrow.vue') const View = Vue.extend(DashboardTomorrow) const vm = new View({ propsData: {}, store, }).$mount(el) return vm }) })