side_menu/src/SideMenu.js

51 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-03-29 13:47:07 +02:00
/**
* @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 <http://www.gnu.org/licenses/>.
*/
2020-03-28 17:40:53 +01:00
import Vue from 'vue'
import SideMenu from './SideMenu.vue'
2020-08-06 15:00:59 +02:00
import SideMenuBig from './SideMenuBig.vue'
2020-03-28 17:40:53 +01:00
2020-04-09 14:22:10 +02:00
// Vue.prototype.t = t
2020-08-06 15:00:59 +02:00
Vue.prototype.OC = OC
2020-04-09 14:22:10 +02:00
// Vue.prototype.OC = OCP
2020-03-28 17:40:53 +01:00
const mountSideMenuComponent = () => {
2020-03-29 14:02:52 +02:00
const sideMenuContainer = document.querySelector('#side-menu')
2020-03-28 17:40:53 +01:00
2020-03-29 14:02:52 +02:00
if (sideMenuContainer) {
2020-08-06 15:00:59 +02:00
let component
if (sideMenuContainer.getAttribute('data-bigmenu')) {
component = SideMenuBig
} else {
component = SideMenu
}
const View = Vue.extend(component)
const sideMenu = new View({})
2020-03-28 17:40:53 +01:00
sideMenu.$mount('#side-menu')
2020-04-26 21:36:54 +02:00
$('body').trigger('side-menu.ready')
2020-03-29 14:02:52 +02:00
} else {
window.setTimeout(mountSideMenuComponent, 50)
}
2020-03-28 17:40:53 +01:00
}
mountSideMenuComponent()