-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.ts
87 lines (80 loc) · 3.08 KB
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import Vue from 'vue';
import Vuex, { mapGetters } from 'vuex';
import Buefy from 'buefy';
import AppComponent from './app/app.vue';
import LoginComponent from './components/mercurius-login/mercurius-login.vue';
import LoadingComponent from './components/mercurius-loading.vue';
import { makeCenterStyle, makeInitializerComponent } from './util/render-util';
import { initialStore } from './vvue';
import './buefy.scss';
import './styles.scss';
import router from './router';
console.log('Environment:', process.env.NODE_ENV);
Vue.use(Vuex);
const store = new Vuex.Store(initialStore);
Vue.use(Buefy);
const dist = Date.now() - store.state.storeBDay;
console.log('Store age: ' + (dist / 60000).toFixed() + ':' + ((dist % 60000) / 1000).toFixed(3));
const v = new Vue({
store,
router,
el: '#app',
data: { loaded: false, done: true, working: false },
computed: {
...mapGetters({
loggedIn: 'isLoggedIn'
}) as { loggedIn: () => boolean }
},
components: { AppComponent, LoadingComponent },
render(h) {
if(this.loaded) {
if(this.loggedIn && this.done)
return h(AppComponent, { key: 'app' });
else return h('div', { key: 'base' }, [
h('div', { staticStyle: {
position: 'absolute', zIndex: 1024, top: 0,
left: 0, right: 0, bottom: 0,
backgroundColor: 'rgba(250,250,250,0.7)',
alignItems: 'center', justifyContent: 'center' },
style: { display: this.working ? 'flex' : 'none' }
}, [ h(LoadingComponent) ]),
h('div', { staticStyle: makeCenterStyle() }, [
h('div', { staticStyle: { display: 'flex', alignItems: 'center', marginBottom: '1rem' } }, [
h('figure', { staticStyle: { height: '1.5em', width: '1.5em', marginRight: '0.4rem' } }, [
h('img', { domProps: { src: 'assets/images/logo-48.png' } })
]),
h('h4', { staticClass: 'title is-5', staticStyle: { lineHeight: 1, flexGrow: 1, margin: 0 } }, 'Mercurius'),
]),
h(LoginComponent, {
key: 'login',
props: { done: this.done },
on: {
'working': ($event) => this.working = Boolean($event),
'error': ($event) => {
if(!$event) return;
this.$buefy.dialog.alert({
title: 'Error',
message: String($event),
type: 'is-danger'
});
},
'showDialog': ({ type, options }: { type: string, options: any }) => {
if(this.$buefy.dialog[type])
this.$buefy.dialog[type](options);
},
'update:done': (a: boolean) => this.done = a
},
staticStyle: {
border: '1px solid rgba(0,0,0,0.2)',
boxShadow: '0px 0px 5px 1px rgba(0,0,0,0.2)',
minWidth: '300px', maxWidth: '480px'
}
})
])
]); // base
} else return makeInitializerComponent(h, LoadingComponent);
}
});
// any async loading here, then the following:
console.log('Initialized Main!');
v.loaded = true;