1b2d48ff22
Reduced time counter increment interval. Added badge service. Refactored user service. Replaced Google+ with People API.
70 lines
1.6 KiB
Vue
70 lines
1.6 KiB
Vue
<template>
|
|
<div class="app" :class="classes" @keydown.esc="close">
|
|
<splash-screen v-if="!ready"></splash-screen>
|
|
<layout v-else></layout>
|
|
<modal></modal>
|
|
<notification></notification>
|
|
<context-menu></context-menu>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import '../styles';
|
|
import '../styles/markdownHighlighting.scss';
|
|
import '../styles/app.scss';
|
|
import Layout from './Layout';
|
|
import Modal from './Modal';
|
|
import Notification from './Notification';
|
|
import ContextMenu from './ContextMenu';
|
|
import SplashScreen from './SplashScreen';
|
|
import syncSvc from '../services/syncSvc';
|
|
import networkSvc from '../services/networkSvc';
|
|
import tempFileSvc from '../services/tempFileSvc';
|
|
import store from '../store';
|
|
import './common/vueGlobals';
|
|
|
|
const themeClasses = {
|
|
light: ['app--light'],
|
|
dark: ['app--dark'],
|
|
};
|
|
|
|
export default {
|
|
components: {
|
|
Layout,
|
|
Modal,
|
|
Notification,
|
|
ContextMenu,
|
|
SplashScreen,
|
|
},
|
|
data: () => ({
|
|
ready: false,
|
|
}),
|
|
computed: {
|
|
classes() {
|
|
const result = themeClasses[store.getters['data/computedSettings'].colorTheme];
|
|
return Array.isArray(result) ? result : themeClasses.light;
|
|
},
|
|
},
|
|
methods: {
|
|
close() {
|
|
tempFileSvc.close();
|
|
},
|
|
},
|
|
async created() {
|
|
try {
|
|
await syncSvc.init();
|
|
await networkSvc.init();
|
|
this.ready = true;
|
|
tempFileSvc.setReady();
|
|
} catch (err) {
|
|
if (err && err.message === 'RELOAD') {
|
|
window.location.reload();
|
|
} else if (err && err.message !== 'RELOAD') {
|
|
console.error(err); // eslint-disable-line no-console
|
|
store.dispatch('notification/error', err);
|
|
}
|
|
}
|
|
},
|
|
};
|
|
</script>
|