2018-07-06 18:15:15 +00:00
|
|
|
<template>
|
2019-02-22 14:21:32 +00:00
|
|
|
<div
|
|
|
|
id="viewport"
|
2019-02-27 14:15:34 +00:00
|
|
|
:class="{notified: $store.state.isNotified}"
|
2019-02-22 14:21:32 +00:00
|
|
|
role="tablist">
|
|
|
|
<Sidebar
|
|
|
|
:networks="networks"
|
|
|
|
:active-channel="activeChannel" />
|
2018-07-06 18:15:15 +00:00
|
|
|
<article id="windows">
|
2018-07-08 13:42:54 +00:00
|
|
|
<Chat
|
|
|
|
v-if="activeChannel"
|
|
|
|
:network="activeChannel.network"
|
2019-02-18 09:18:32 +00:00
|
|
|
:channel="activeChannel.channel" />
|
|
|
|
<component
|
|
|
|
:is="activeWindow"
|
|
|
|
ref="window" />
|
2018-07-06 18:15:15 +00:00
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2018-09-20 08:36:55 +00:00
|
|
|
const throttle = require("lodash/throttle");
|
2018-08-31 18:15:46 +00:00
|
|
|
|
2019-02-22 14:21:32 +00:00
|
|
|
import Sidebar from "./Sidebar.vue";
|
2018-07-12 19:24:35 +00:00
|
|
|
import NetworkList from "./NetworkList.vue";
|
2018-07-08 10:50:11 +00:00
|
|
|
import Chat from "./Chat.vue";
|
2019-02-18 09:18:32 +00:00
|
|
|
import SignIn from "./Windows/SignIn.vue";
|
2019-02-20 09:10:18 +00:00
|
|
|
import Settings from "./Windows/Settings.vue";
|
2019-02-20 15:01:33 +00:00
|
|
|
import Help from "./Windows/Help.vue";
|
2019-02-20 15:09:44 +00:00
|
|
|
import Changelog from "./Windows/Changelog.vue";
|
2018-07-06 18:15:15 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "App",
|
|
|
|
components: {
|
2019-02-22 14:21:32 +00:00
|
|
|
Sidebar,
|
2018-07-12 19:24:35 +00:00
|
|
|
NetworkList,
|
2018-07-08 10:50:11 +00:00
|
|
|
Chat,
|
2019-02-18 09:18:32 +00:00
|
|
|
SignIn,
|
2019-02-20 09:10:18 +00:00
|
|
|
Settings,
|
2019-02-20 15:01:33 +00:00
|
|
|
Help,
|
2019-02-20 15:09:44 +00:00
|
|
|
Changelog,
|
2018-07-06 18:15:15 +00:00
|
|
|
},
|
|
|
|
props: {
|
2019-02-18 09:18:32 +00:00
|
|
|
activeWindow: String,
|
2018-07-06 18:15:15 +00:00
|
|
|
activeChannel: Object,
|
|
|
|
networks: Array,
|
|
|
|
},
|
2018-08-31 18:15:46 +00:00
|
|
|
mounted() {
|
|
|
|
// Make a single throttled resize listener available to all components
|
|
|
|
this.debouncedResize = throttle(() => {
|
2018-08-31 18:37:39 +00:00
|
|
|
this.$root.$emit("resize");
|
2018-08-31 18:15:46 +00:00
|
|
|
}, 100);
|
|
|
|
|
|
|
|
window.addEventListener("resize", this.debouncedResize, {passive: true});
|
2018-09-12 17:14:45 +00:00
|
|
|
|
|
|
|
// Emit a daychange event every time the day changes so date markers know when to update themselves
|
|
|
|
const emitDayChange = () => {
|
|
|
|
this.$root.$emit("daychange");
|
|
|
|
// This should always be 24h later but re-computing exact value just in case
|
|
|
|
this.dayChangeTimeout = setTimeout(emitDayChange, this.msUntilNextDay());
|
|
|
|
};
|
|
|
|
|
|
|
|
this.dayChangeTimeout = setTimeout(emitDayChange, this.msUntilNextDay());
|
2018-08-31 18:15:46 +00:00
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
window.removeEventListener("resize", this.debouncedResize);
|
2018-09-12 17:14:45 +00:00
|
|
|
clearTimeout(this.dayChangeTimeout);
|
2018-08-31 18:15:46 +00:00
|
|
|
},
|
2018-08-31 18:37:39 +00:00
|
|
|
methods: {
|
|
|
|
isPublic: () => document.body.classList.contains("public"),
|
2018-09-12 17:14:45 +00:00
|
|
|
msUntilNextDay() {
|
|
|
|
// Compute how many milliseconds are remaining until the next day starts
|
2018-09-20 07:50:00 +00:00
|
|
|
const today = new Date();
|
|
|
|
const tommorow = new Date(today.getFullYear(), today.getMonth(), today.getDate() + 1);
|
|
|
|
|
|
|
|
return tommorow - today;
|
2018-09-12 17:14:45 +00:00
|
|
|
},
|
2018-08-31 18:37:39 +00:00
|
|
|
},
|
2018-07-06 18:15:15 +00:00
|
|
|
};
|
|
|
|
</script>
|