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

216 lines
4.5 KiB
Vue
Raw Normal View History

2018-06-05 15:36:21 +03:00
<template>
<mk-ui :class="$style.root">
2018-06-05 22:00:48 +03:00
<div class="qlvquzbjribqcaozciifydkngcwtyzje" :data-darkmode="$store.state.device.darkmode">
<template v-for="ids in layout">
<div v-if="ids.length > 1" class="folder">
<template v-for="id, i in ids">
2018-06-08 01:43:12 +03:00
<x-column-core :ref="id" :key="id" :column="columns.find(c => c.id == id)" :is-stacked="true"/>
</template>
</div>
<x-column-core v-else :ref="ids[0]" :key="ids[0]" :column="columns.find(c => c.id == ids[0])"/>
2018-06-05 21:12:06 +03:00
</template>
2018-06-06 19:17:29 +03:00
<button ref="add" @click="add" title="%i18n:common.deck.add-column%">%fa:plus%</button>
2018-06-05 15:36:21 +03:00
</div>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import XColumnCore from './deck.column-core.vue';
2018-06-05 23:18:08 +03:00
import Menu from '../../../../common/views/components/menu.vue';
import MkUserListsWindow from '../../components/user-lists-window.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: {
XColumnCore
2018-06-05 21:12:06 +03:00
},
2018-06-06 19:00:38 +03:00
2018-06-05 21:12:06 +03:00
computed: {
columns(): any[] {
2018-06-05 21:12:06 +03:00
if (this.$store.state.settings.deck == null) return [];
return this.$store.state.settings.deck.columns;
},
layout(): any[] {
if (this.$store.state.settings.deck == null) return [];
if (this.$store.state.settings.deck.layout == null) return this.$store.state.settings.deck.columns.map(c => [c.id]);
return this.$store.state.settings.deck.layout;
2018-06-05 21:12:06 +03:00
}
},
2018-06-06 19:00:38 +03:00
provide() {
return {
getColumnVm: this.getColumnVm
};
},
2018-06-05 21:12:06 +03:00
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'
}]
};
deck.layout = deck.columns.map(c => [c.id]);
2018-06-05 21:12:06 +03:00
this.$store.dispatch('settings/set', {
key: 'deck',
value: deck
});
}
// 互換性のため
if (this.$store.state.settings.deck != null && this.$store.state.settings.deck.layout == null) {
this.$store.dispatch('settings/set', {
key: 'deck',
value: Object.assign({}, this.$store.state.settings.deck, {
layout: this.$store.state.settings.deck.columns.map(c => [c.id])
})
});
}
2018-06-05 23:18:08 +03:00
},
2018-06-06 19:00:38 +03:00
mounted() {
document.documentElement.style.overflow = 'hidden';
},
beforeDestroy() {
document.documentElement.style.overflow = 'auto';
},
2018-06-05 23:18:08 +03:00
methods: {
getColumnVm(id) {
return this.$refs[id][0];
},
2018-06-05 23:18:08 +03:00
add() {
this.os.new(Menu, {
source: this.$refs.add,
compact: true,
items: [{
2018-06-06 19:17:29 +03:00
content: '%i18n:common.deck.home%',
2018-06-05 23:18:08 +03:00
onClick: () => {
this.$store.dispatch('settings/addDeckColumn', {
id: uuid(),
type: 'home'
});
}
}, {
2018-06-06 19:17:29 +03:00
content: '%i18n:common.deck.local%',
2018-06-05 23:18:08 +03:00
onClick: () => {
this.$store.dispatch('settings/addDeckColumn', {
id: uuid(),
type: 'local'
});
}
}, {
2018-06-06 19:17:29 +03:00
content: '%i18n:common.deck.global%',
2018-06-05 23:18:08 +03:00
onClick: () => {
this.$store.dispatch('settings/addDeckColumn', {
id: uuid(),
type: 'global'
});
}
}, {
2018-06-06 19:17:29 +03:00
content: '%i18n:common.deck.list%',
2018-06-05 23:18:08 +03:00
onClick: () => {
const w = (this as any).os.new(MkUserListsWindow);
w.$once('choosen', list => {
this.$store.dispatch('settings/addDeckColumn', {
id: uuid(),
type: 'list',
list: list
});
w.close();
});
}
}, {
2018-06-06 19:17:29 +03:00
content: '%i18n:common.deck.notifications%',
2018-06-05 23:18:08 +03:00
onClick: () => {
this.$store.dispatch('settings/addDeckColumn', {
id: uuid(),
type: 'notifications'
});
}
}, {
2018-06-06 19:17:29 +03:00
content: '%i18n:common.deck.widgets%',
onClick: () => {
this.$store.dispatch('settings/addDeckColumn', {
id: uuid(),
type: 'widgets',
widgets: []
});
}
2018-06-05 23:18:08 +03:00
}]
});
}
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
2018-06-05 22:00:48 +03:00
> div
2018-06-06 19:17:29 +03:00
margin-right 8px
2018-06-05 22:00:48 +03:00
&:last-of-type
margin-right 0
&.folder
display flex
flex-direction column
> *:not(:last-child)
margin-bottom 8px
2018-06-06 23:14:37 +03:00
> *
&:first-child
margin-left auto
&:last-child
margin-right auto
2018-06-05 22:00:48 +03:00
> button
padding 0 16px
color isDark ? #93a0a5 : #888
&:hover
color isDark ? #b8c5ca : #777
&:active
color isDark ? #fff : #555
2018-06-05 15:36:21 +03:00
.qlvquzbjribqcaozciifydkngcwtyzje[data-darkmode]
root(true)
.qlvquzbjribqcaozciifydkngcwtyzje:not([data-darkmode])
root(false)
</style>