platypush/platypush/backend/http/webapp/src/App.vue

72 lines
1.6 KiB
Vue
Raw Normal View History

2020-11-21 01:12:08 +01:00
<template>
2020-11-27 23:12:10 +01:00
<Events ref="events" :ws-port="config['backend.http'].websocket_port"
v-if="Object.keys(config).length && config['backend.http']" />
<Notifications ref="notifications" />
<VoiceAssistant ref="voice-assistant" v-if="Object.keys(config).length" />
<router-view />
2020-11-21 01:12:08 +01:00
</template>
<script>
2020-11-27 23:12:10 +01:00
import Notifications from "@/components/Notifications";
2020-11-21 01:12:08 +01:00
import Utils from "@/Utils";
2020-11-27 23:12:10 +01:00
import Events from "@/Events";
import VoiceAssistant from "@/components/VoiceAssistant";
import { bus } from "@/bus";
2020-11-21 01:12:08 +01:00
export default {
name: 'App',
mixins: [Utils],
2020-11-27 23:12:10 +01:00
components: {Notifications, Events, VoiceAssistant},
2020-11-21 01:12:08 +01:00
data() {
return {
config: {},
2020-11-21 01:12:08 +01:00
}
},
methods: {
onNotification(notification) {
this.$refs.notifications.create(notification)
},
async initConfig() {
this.config = await this.request('config.get')
2020-11-21 01:12:08 +01:00
}
},
created() {
this.initConfig()
},
2020-11-21 01:12:08 +01:00
mounted() {
bus.on('notification-create', this.onNotification)
},
2020-11-21 01:12:08 +01:00
}
</script>
<!--suppress CssUnusedSymbol -->
<style lang="scss">
$fa-font-path: "~@fortawesome/fontawesome-free/webfonts";
@import "~@fortawesome/fontawesome-free/scss/fontawesome";
@import "~@fortawesome/fontawesome-free/scss/solid"; // fas
@import "~@fortawesome/fontawesome-free/scss/regular"; // far
@import "~@fortawesome/fontawesome-free/scss/brands"; // fab
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow: auto;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 100%;
height: 100%;
color: #2c3e50;
}
</style>