2017-11-29 11:29:27 +00:00
|
|
|
/* (1) Imports
|
|
|
|
---------------------------------------------------------*/
|
|
|
|
/* (1) NPM libs */
|
2017-11-28 12:37:49 +00:00
|
|
|
import Vue from 'vue'
|
2017-12-04 23:00:22 +00:00
|
|
|
import VueRouter from 'vue-router'
|
2017-11-29 11:29:27 +00:00
|
|
|
|
|
|
|
/* (2) Internal libs */
|
2017-12-04 23:00:22 +00:00
|
|
|
import {API} from './lib/api-es6'
|
|
|
|
import {InfoBox} from './lib/infobox-es6'
|
2017-11-29 19:36:30 +00:00
|
|
|
import {WSClient,WSClientBuilder} from './lib/ws-client-es6'
|
2017-12-04 23:00:22 +00:00
|
|
|
import routes from './routes'
|
2017-11-28 12:37:49 +00:00
|
|
|
|
2017-11-29 11:29:27 +00:00
|
|
|
/* (3) Vues */
|
2017-12-01 14:48:13 +00:00
|
|
|
import wrapper_vue from './vue/wrapper.vue'
|
2017-11-29 11:29:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* (2) Initialisation
|
|
|
|
---------------------------------------------------------*/
|
2017-12-07 14:33:01 +00:00
|
|
|
/* (1) global store init */
|
2017-12-01 14:48:13 +00:00
|
|
|
require('./vue-config');
|
|
|
|
window.gstore.add('server', window._SERVER);
|
2017-12-05 17:41:39 +00:00
|
|
|
window.infobox = new InfoBox(gstore.data.info);
|
2017-12-01 14:48:13 +00:00
|
|
|
|
2017-12-07 14:33:01 +00:00
|
|
|
/* (2) API */
|
|
|
|
window.api = new API(gstore.data.is_local ? 'http://ndli1718/api/v/1.0/' : 'https://ndli1718.xdrm.io/api/v/1.0/');
|
|
|
|
|
|
|
|
/* (3) wsclient */
|
|
|
|
window.wsc = new WSClientBuilder(gstore.data.is_local ? 'ws://localhost:9999' : 'wss://websocket.xdrm.io');
|
|
|
|
|
|
|
|
|
2017-12-04 23:00:22 +00:00
|
|
|
/* (4) Init vue router */
|
|
|
|
Vue.use(VueRouter);
|
2017-12-05 07:39:24 +00:00
|
|
|
const router = new VueRouter({
|
2017-12-04 23:00:22 +00:00
|
|
|
mode: 'history',
|
|
|
|
routes: routes[0]
|
|
|
|
});
|
|
|
|
|
|
|
|
/* (5) Render view */
|
2017-11-28 12:37:49 +00:00
|
|
|
new Vue({
|
2017-12-05 07:39:24 +00:00
|
|
|
el: '#main-vue',
|
|
|
|
router,
|
2017-12-04 23:00:22 +00:00
|
|
|
render: h => h(wrapper_vue)
|
2017-12-05 07:39:24 +00:00
|
|
|
});
|
2017-12-04 10:22:10 +00:00
|
|
|
|
2017-12-05 21:30:03 +00:00
|
|
|
/* (6) Navigate at page load (to update notifications count) */
|
2017-12-05 17:55:07 +00:00
|
|
|
gstore.data.func.nav(router, null);
|
|
|
|
|
2017-12-04 10:22:10 +00:00
|
|
|
|
|
|
|
/* (3) Set WebSocket channels
|
|
|
|
---------------------------------------------------------*/
|
2017-12-07 18:11:23 +00:00
|
|
|
/* (1) Make router globally available */
|
|
|
|
window._router_ = router;
|
2017-12-04 10:22:10 +00:00
|
|
|
|
2017-12-07 18:11:23 +00:00
|
|
|
/* (2) Create/Manage web socket clients */
|
|
|
|
require('./websocket');
|
2017-12-04 10:22:10 +00:00
|
|
|
|
2017-12-07 18:11:23 +00:00
|
|
|
/* (3) Remove global ref to router */
|
2017-12-07 21:36:04 +00:00
|
|
|
delete window._router_;
|
|
|
|
|
|
|
|
|
|
|
|
/* (4) Get geolocation
|
|
|
|
---------------------------------------------------------*/
|
|
|
|
navigator.geolocation && navigator.geolocation.getCurrentPosition(function(a, b){ console.log(this, a, b); }, null);
|