Sharkey/src/client/app/desktop/views/pages/deck/deck.vue

82 lines
1.6 KiB
Vue
Raw Normal View History

2018-06-05 15:36:21 +03:00
<template>
<mk-ui :class="$style.root">
<div class="qlvquzbjribqcaozciifydkngcwtyzje">
2018-06-05 21:12:06 +03:00
<template v-for="column in columns">
<x-notifications-column v-if="column.type == 'notifications'" :key="column.id"/>
<x-tl-column v-if="column.type == 'home'" :key="column.id" src="home"/>
<x-tl-column v-if="column.type == 'local'" :key="column.id" src="local"/>
<x-tl-column v-if="column.type == 'global'" :key="column.id" src="global"/>
</template>
2018-06-05 15:36:21 +03:00
</div>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
2018-06-05 16:54:03 +03:00
import XTlColumn from './deck.tl-column.vue';
2018-06-05 17:19:04 +03:00
import XNotificationsColumn from './deck.notifications-column.vue';
2018-06-05 21:12:06 +03:00
import * as uuid from 'uuid';
2018-06-05 15:36:21 +03:00
export default Vue.extend({
components: {
2018-06-05 17:19:04 +03:00
XTlColumn,
XNotificationsColumn
2018-06-05 21:12:06 +03:00
},
computed: {
columns() {
if (this.$store.state.settings.deck == null) return [];
return this.$store.state.settings.deck.columns;
}
},
created() {
if (this.$store.state.settings.deck == null) {
const deck = {
columns: [/*{
type: 'widgets',
widgets: []
}, */{
id: uuid(),
type: 'home'
}, {
id: uuid(),
type: 'notifications'
}, {
id: uuid(),
type: 'local'
}, {
id: uuid(),
type: 'global'
}]
};
this.$store.dispatch('settings/set', {
key: 'deck',
value: deck
});
}
2018-06-05 15:36:21 +03:00
}
});
</script>
<style lang="stylus" module>
.root
height 100vh
</style>
<style lang="stylus" scoped>
@import '~const.styl'
root(isDark)
display flex
flex 1
2018-06-05 15:44:02 +03:00
padding 16px 0 16px 16px
overflow auto
2018-06-05 15:36:21 +03:00
.qlvquzbjribqcaozciifydkngcwtyzje[data-darkmode]
root(true)
.qlvquzbjribqcaozciifydkngcwtyzje:not([data-darkmode])
root(false)
</style>