2020-07-11 03:13:11 +02:00
|
|
|
<template>
|
2020-12-27 09:04:41 +01:00
|
|
|
<div class="mk-deck" :class="`${deckStore.reactiveState.columnAlign.value}`" @contextmenu.self.prevent="onContextmenu"
|
2020-12-26 14:41:00 +01:00
|
|
|
:style="{ '--deckMargin': deckStore.reactiveState.columnMargin.value + 'px' }"
|
|
|
|
>
|
2020-10-17 13:12:00 +02:00
|
|
|
<XSidebar ref="nav"/>
|
2020-07-11 03:13:11 +02:00
|
|
|
|
|
|
|
<template v-for="ids in layout">
|
2020-12-26 10:33:54 +01:00
|
|
|
<!-- sectionを利用しているのは、deck.vue側でcolumnに対してfirst-of-typeを効かせるため -->
|
|
|
|
<section v-if="ids.length > 1"
|
|
|
|
class="folder column"
|
2020-12-29 09:40:53 +01:00
|
|
|
:style="columns.filter(c => ids.includes(c.id)).some(c => c.flexible) ? { flex: 1, minWidth: '350px' } : { width: Math.max(...columns.filter(c => ids.includes(c.id)).map(c => c.width)) + 'px' }"
|
2020-12-26 10:33:54 +01:00
|
|
|
>
|
2020-12-05 04:50:09 +01:00
|
|
|
<DeckColumnCore v-for="id in ids" :ref="id" :key="id" :column="columns.find(c => c.id === id)" :is-stacked="true" @parent-focus="moveFocus(id, $event)"/>
|
2020-12-26 10:33:54 +01:00
|
|
|
</section>
|
|
|
|
<DeckColumnCore v-else
|
|
|
|
class="column"
|
|
|
|
:ref="ids[0]"
|
|
|
|
:key="ids[0]"
|
|
|
|
:column="columns.find(c => c.id === ids[0])"
|
|
|
|
@parent-focus="moveFocus(ids[0], $event)"
|
2020-12-28 11:57:09 +01:00
|
|
|
:style="columns.find(c => c.id === ids[0]).flexible ? { flex: 1, minWidth: '350px' } : { width: columns.find(c => c.id === ids[0]).width + 'px' }"
|
2020-12-26 10:33:54 +01:00
|
|
|
/>
|
2020-07-11 03:13:11 +02:00
|
|
|
</template>
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
<button v-if="$i" class="nav _button" @click="showNav()"><Fa :icon="faBars"/><i v-if="navIndicated"><Fa :icon="faCircle"/></i></button>
|
|
|
|
<button v-if="$i" class="post _buttonPrimary" @click="post()"><Fa :icon="faPencilAlt"/></button>
|
2020-07-11 03:13:11 +02:00
|
|
|
|
2020-10-24 18:21:41 +02:00
|
|
|
<XCommon/>
|
2020-07-11 03:13:11 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-07-11 03:13:11 +02:00
|
|
|
import { faPlus, faPencilAlt, faChevronLeft, faBars, faCircle } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { } from '@fortawesome/free-regular-svg-icons';
|
|
|
|
import { v4 as uuid } from 'uuid';
|
2020-10-17 13:12:00 +02:00
|
|
|
import { host } from '@/config';
|
2020-10-25 02:15:20 +02:00
|
|
|
import DeckColumnCore from '@/ui/deck/column-core.vue';
|
2020-10-17 13:12:00 +02:00
|
|
|
import XSidebar from '@/components/sidebar.vue';
|
|
|
|
import { getScrollContainer } from '@/scripts/scroll';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { sidebarDef } from '@/sidebar';
|
2020-10-24 18:21:41 +02:00
|
|
|
import XCommon from './_common_/common.vue';
|
2020-12-19 02:55:52 +01:00
|
|
|
import { deckStore, addColumn } from './deck/deck-store';
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
2020-07-11 03:13:11 +02:00
|
|
|
components: {
|
2020-10-24 18:21:41 +02:00
|
|
|
XCommon,
|
2020-07-11 03:13:11 +02:00
|
|
|
XSidebar,
|
|
|
|
DeckColumnCore,
|
|
|
|
},
|
|
|
|
|
2020-12-27 10:13:50 +01:00
|
|
|
provide() {
|
|
|
|
return deckStore.state.navWindow ? {
|
|
|
|
navHook: (url) => {
|
|
|
|
os.pageWindow(url);
|
|
|
|
}
|
|
|
|
} : {};
|
|
|
|
},
|
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
data() {
|
|
|
|
return {
|
2020-12-19 02:55:52 +01:00
|
|
|
deckStore,
|
2020-07-11 03:13:11 +02:00
|
|
|
host: host,
|
2020-10-17 13:12:00 +02:00
|
|
|
menuDef: sidebarDef,
|
2020-07-11 03:13:11 +02:00
|
|
|
wallpaper: localStorage.getItem('wallpaper') != null,
|
|
|
|
faPlus, faPencilAlt, faChevronLeft, faBars, faCircle
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2020-12-19 02:55:52 +01:00
|
|
|
columns() {
|
|
|
|
return deckStore.reactiveState.columns.value;
|
2020-07-11 03:13:11 +02:00
|
|
|
},
|
2020-12-19 02:55:52 +01:00
|
|
|
layout() {
|
|
|
|
return deckStore.reactiveState.layout.value;
|
2020-07-11 03:13:11 +02:00
|
|
|
},
|
|
|
|
navIndicated(): boolean {
|
2020-12-19 02:55:52 +01:00
|
|
|
if (!this.$i) return false;
|
2020-07-11 03:13:11 +02:00
|
|
|
for (const def in this.menuDef) {
|
|
|
|
if (this.menuDef[def].indicated) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
document.documentElement.style.overflowY = 'hidden';
|
2020-07-17 14:53:34 +02:00
|
|
|
document.documentElement.style.scrollBehavior = 'auto';
|
2020-07-17 14:56:30 +02:00
|
|
|
window.addEventListener('wheel', this.onWheel);
|
2020-07-11 03:13:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2020-07-17 14:53:34 +02:00
|
|
|
onWheel(e) {
|
|
|
|
if (getScrollContainer(e.target) == null) {
|
|
|
|
document.documentElement.scrollLeft += e.deltaY > 0 ? 96 : -96;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
showNav() {
|
|
|
|
this.$refs.nav.show();
|
|
|
|
},
|
|
|
|
|
|
|
|
post() {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.post();
|
2020-07-11 03:13:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
async addColumn(ev) {
|
|
|
|
const columns = [
|
2020-12-26 10:33:54 +01:00
|
|
|
'main',
|
2020-07-11 03:13:11 +02:00
|
|
|
'widgets',
|
|
|
|
'notifications',
|
|
|
|
'tl',
|
|
|
|
'antenna',
|
|
|
|
'list',
|
|
|
|
'mentions',
|
|
|
|
'direct',
|
|
|
|
];
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
const { canceled, result: column } = await os.dialog({
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts._deck.addColumn,
|
2020-07-11 03:13:11 +02:00
|
|
|
type: null,
|
|
|
|
select: {
|
|
|
|
items: columns.map(column => ({
|
|
|
|
value: column, text: this.$t('_deck._columns.' + column)
|
|
|
|
}))
|
|
|
|
},
|
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
addColumn({
|
2020-07-11 03:13:11 +02:00
|
|
|
type: column,
|
|
|
|
id: uuid(),
|
|
|
|
name: this.$t('_deck._columns.' + column),
|
|
|
|
width: 330,
|
|
|
|
});
|
|
|
|
},
|
2020-12-26 10:33:54 +01:00
|
|
|
|
|
|
|
onContextmenu(e) {
|
|
|
|
os.contextMenu([{
|
|
|
|
text: this.$ts._deck.addColumn,
|
|
|
|
icon: null,
|
|
|
|
action: this.addColumn
|
|
|
|
}], e);
|
|
|
|
},
|
2020-07-11 03:13:11 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-deck {
|
|
|
|
$nav-hide-threshold: 650px; // TODO: どこかに集約したい
|
|
|
|
|
2020-12-26 14:41:00 +01:00
|
|
|
// TODO: ここではなくて、各カラムで自身の幅に応じて上書きするようにしたい
|
2020-07-11 03:13:11 +02:00
|
|
|
--margin: var(--marginHalf);
|
|
|
|
|
|
|
|
display: flex;
|
2020-07-15 11:22:19 +02:00
|
|
|
// ほんとは単に 100vh と書きたいところだが... https://css-tricks.com/the-trick-to-viewport-units-on-mobile/
|
|
|
|
height: calc(var(--vh, 1vh) * 100);
|
2020-07-11 03:13:11 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
flex: 1;
|
2020-12-26 14:41:00 +01:00
|
|
|
padding: var(--deckMargin);
|
2020-07-11 03:13:11 +02:00
|
|
|
|
|
|
|
&.center {
|
|
|
|
> .column:first-of-type {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2020-12-26 10:33:54 +01:00
|
|
|
> .column:last-of-type {
|
2020-07-11 03:13:11 +02:00
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .column {
|
|
|
|
flex-shrink: 0;
|
2020-12-26 14:41:00 +01:00
|
|
|
margin-right: var(--deckMargin);
|
2020-07-11 03:13:11 +02:00
|
|
|
|
|
|
|
&.folder {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
> *:not(:last-child) {
|
2020-12-26 14:41:00 +01:00
|
|
|
margin-bottom: var(--deckMargin);
|
2020-07-11 03:13:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .post,
|
|
|
|
> .nav {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1000;
|
|
|
|
bottom: 32px;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
border-radius: 100%;
|
|
|
|
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
|
|
|
|
font-size: 22px;
|
2020-12-27 02:42:38 +01:00
|
|
|
|
|
|
|
@media (min-width: ($nav-hide-threshold + 1px)) {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-07-11 03:13:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
right: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .nav {
|
|
|
|
left: 32px;
|
|
|
|
background: var(--panel);
|
|
|
|
color: var(--fg);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--X2);
|
|
|
|
}
|
|
|
|
|
|
|
|
> i {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
color: var(--indicator);
|
|
|
|
font-size: 16px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|