discord-client/webpack/common.js

27 lines
686 B
JavaScript

import {GlobalStore} from './lib/gstore'
import VueRouter from 'vue-router'
import routes from './routes'
window.gs = new GlobalStore();
/* (1) Global data
---------------------------------------------------------*/
/* (1) Get Full URI */
gs.set('URI', document.URL.replace(/^(?:[^\/]+\/\/|[^\/]+\/)/, '').split('/').filter(function(v,i){ return !!i && v.length; }));
/* (2) Store routes */
gs.set('routes', routes[0]);
/* (3) Init. vue router */
gs.set('router', new VueRouter({
routes: gs.get.routes
}));
/* (2) Main components
---------------------------------------------------------*/
/* (1) Initialize channels & channel menu */
require('./init/channels.js');