147 lines
3.3 KiB
Vue
147 lines
3.3 KiB
Vue
<template>
|
|
<div id="neko">
|
|
<main class="neko-main">
|
|
<div class="header-container">
|
|
<neko-header />
|
|
</div>
|
|
<div class="video-container">
|
|
<neko-video ref="video" />
|
|
</div>
|
|
<div class="room-container">
|
|
<neko-members />
|
|
<div class="room-menu">
|
|
<div class="settings">
|
|
<neko-menu />
|
|
</div>
|
|
<div class="controls">
|
|
<neko-controls />
|
|
</div>
|
|
<div class="emotes">
|
|
<neko-emotes />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<neko-side v-if="side" />
|
|
<neko-connect v-if="!connected" />
|
|
<neko-about v-if="about" />
|
|
<notifications group="neko" position="top left" style="top: 50px;" />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
#neko {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
flex-direction: row;
|
|
display: flex;
|
|
|
|
.neko-main {
|
|
max-width: 100%;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
display: flex;
|
|
overflow: auto;
|
|
|
|
.header-container {
|
|
background: $background-tertiary;
|
|
height: $menu-height;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
}
|
|
|
|
.video-container {
|
|
background: rgba($color: #000, $alpha: 0.4);
|
|
max-width: 100%;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
}
|
|
|
|
.room-container {
|
|
background: $background-tertiary;
|
|
height: $controls-height;
|
|
max-width: 100%;
|
|
flex-shrink: 0;
|
|
flex-direction: column;
|
|
display: flex;
|
|
|
|
.room-menu {
|
|
max-width: 100%;
|
|
flex: 1;
|
|
display: flex;
|
|
|
|
.settings {
|
|
margin-left: 10px;
|
|
flex: 1;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
.controls {
|
|
flex: 1;
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
.emotes {
|
|
margin-right: 10px;
|
|
flex: 1;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import { Vue, Component, Ref } from 'vue-property-decorator'
|
|
|
|
import Connect from '~/components/connect.vue'
|
|
import Video from '~/components/video.vue'
|
|
import Menu from '~/components/menu.vue'
|
|
import Side from '~/components/side.vue'
|
|
import Controls from '~/components/controls.vue'
|
|
import Members from '~/components/members.vue'
|
|
import Emotes from '~/components/emotes.vue'
|
|
import About from '~/components/about.vue'
|
|
import Header from '~/components/header.vue'
|
|
|
|
@Component({
|
|
name: 'neko',
|
|
components: {
|
|
'neko-connect': Connect,
|
|
'neko-video': Video,
|
|
'neko-menu': Menu,
|
|
'neko-side': Side,
|
|
'neko-controls': Controls,
|
|
'neko-members': Members,
|
|
'neko-emotes': Emotes,
|
|
'neko-about': About,
|
|
'neko-header': Header,
|
|
},
|
|
})
|
|
export default class extends Vue {
|
|
@Ref('video') video!: Video
|
|
|
|
get about() {
|
|
return this.$accessor.client.about
|
|
}
|
|
|
|
get side() {
|
|
return this.$accessor.client.side
|
|
}
|
|
|
|
get connected() {
|
|
return this.$accessor.connected
|
|
}
|
|
}
|
|
</script>
|