2021-02-14 14:26:07 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-app" @contextmenu.self.prevent="onContextmenu">
|
|
|
|
<XSidebar ref="menu" class="menu" :default-hidden="true"/>
|
|
|
|
|
|
|
|
<div class="nav">
|
|
|
|
<header class="header">
|
|
|
|
<div class="left">
|
|
|
|
<button class="_button account" @click="openAccountMenu">
|
|
|
|
<MkAvatar :user="$i" class="avatar"/><MkAcct class="text" :user="$i"/>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
2021-02-14 14:52:45 +01:00
|
|
|
<MkA class="item" to="/my/notifications"><Fa :icon="faBell"/><i v-if="$i.hasUnreadNotification"><Fa :icon="faCircle"/></i></MkA>
|
2021-02-14 14:26:07 +01:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="body">
|
|
|
|
<div class="container">
|
|
|
|
<div class="header">{{ $ts.timeline }}</div>
|
|
|
|
<div class="body">
|
|
|
|
<MkA to="/timeline/home" class="item" :class="{ active: tl === 'home' }"><Fa :icon="faHome" class="icon"/>{{ $ts._timelines.home }}</MkA>
|
|
|
|
<MkA to="/timeline/local" class="item" :class="{ active: tl === 'local' }"><Fa :icon="faHome" class="icon"/>{{ $ts._timelines.local }}</MkA>
|
|
|
|
<MkA to="/timeline/social" class="item" :class="{ active: tl === 'social' }"><Fa :icon="faHome" class="icon"/>{{ $ts._timelines.social }}</MkA>
|
|
|
|
<MkA to="/timeline/global" class="item" :class="{ active: tl === 'global' }"><Fa :icon="faHome" class="icon"/>{{ $ts._timelines.global }}</MkA>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container" v-if="lists">
|
2021-02-15 13:00:37 +01:00
|
|
|
<div class="header">{{ $ts.lists }}<button class="_button add"><Fa :icon="faPlus"/></button></div>
|
2021-02-14 14:26:07 +01:00
|
|
|
<div class="body">
|
|
|
|
<MkA v-for="list in lists" :key="list.id" :to="`/my/list/${ list.id }`" class="item" :class="{ active: tl === `list:${ list.id }` }"><Fa :icon="faListUl" class="icon"/>{{ list.name }}</MkA>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container" v-if="antennas">
|
2021-02-15 13:00:37 +01:00
|
|
|
<div class="header">{{ $ts.antennas }}<button class="_button add"><Fa :icon="faPlus"/></button></div>
|
2021-02-14 14:26:07 +01:00
|
|
|
<div class="body">
|
|
|
|
<MkA v-for="antenna in antennas" :key="antenna.id" :to="`/my/antenna/${ antenna.id }`" class="item" :class="{ active: tl === `antenna:${ antenna.id }` }"><Fa :icon="faSatellite" class="icon"/>{{ antenna.name }}</MkA>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container" v-if="followedChannels">
|
2021-02-15 13:00:37 +01:00
|
|
|
<div class="header">{{ $ts.channel }}<button class="_button add"><Fa :icon="faPlus"/></button></div>
|
2021-02-14 14:26:07 +01:00
|
|
|
<div class="body">
|
|
|
|
<MkA v-for="channel in followedChannels" :key="channel.id" :to="`/channels/${ channel.id }`" class="item" :class="{ active: tl === `channel:${ channel.id }`, read: !channel.hasUnreadNote }"><Fa :icon="faSatelliteDish" class="icon"/>{{ channel.name }}</MkA>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container" v-if="featuredChannels">
|
2021-02-15 13:00:37 +01:00
|
|
|
<div class="header">{{ $ts.channel }}<button class="_button add"><Fa :icon="faPlus"/></button></div>
|
2021-02-14 14:26:07 +01:00
|
|
|
<div class="body">
|
|
|
|
<MkA v-for="channel in featuredChannels" :key="channel.id" :to="`/channels/${ channel.id }`" class="item" :class="{ active: tl === `channel:${ channel.id }` }"><Fa :icon="faSatelliteDish" class="icon"/>{{ channel.name }}</MkA>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
|
|
<div class="left">
|
|
|
|
<button class="_button menu" @click="showMenu">
|
|
|
|
<Fa :icon="faBars"/>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
<MkA class="item" to="/settings"><Fa :icon="faCog"/></MkA>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<main class="main" @contextmenu.stop="onContextmenu">
|
|
|
|
<header class="header" ref="header" @click="onHeaderClick">
|
2021-02-15 09:17:19 +01:00
|
|
|
<div class="left">
|
|
|
|
<template v-if="tl === 'home'">
|
|
|
|
<Fa :icon="faHome" class="icon"/>
|
|
|
|
<div class="title">{{ $ts._timelines.home }}</div>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="tl === 'local'">
|
|
|
|
<Fa :icon="faShareAlt" class="icon"/>
|
|
|
|
<div class="title">{{ $ts._timelines.local }}</div>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="tl === 'social'">
|
|
|
|
<Fa :icon="faShareAlt" class="icon"/>
|
|
|
|
<div class="title">{{ $ts._timelines.social }}</div>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="tl === 'global'">
|
|
|
|
<Fa :icon="faShareAlt" class="icon"/>
|
|
|
|
<div class="title">{{ $ts._timelines.global }}</div>
|
|
|
|
</template>
|
2021-02-15 13:00:37 +01:00
|
|
|
<template v-else-if="tl.startsWith('channel:')">
|
|
|
|
<Fa :icon="faSatelliteDish" class="icon"/>
|
|
|
|
<div class="title" v-if="currentChannel">{{ currentChannel.name }}</div>
|
|
|
|
<div class="description" v-if="currentChannel">{{ currentChannel.description }}</div>
|
|
|
|
</template>
|
2021-02-14 14:26:07 +01:00
|
|
|
</div>
|
2021-02-15 09:17:19 +01:00
|
|
|
|
|
|
|
<div class="right">
|
|
|
|
<XHeaderClock/>
|
2021-02-15 13:00:37 +01:00
|
|
|
<button class="_button search">
|
|
|
|
<Fa :icon="faSearch"/>
|
|
|
|
</button>
|
2021-02-14 14:26:07 +01:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="body">
|
|
|
|
<XTimeline v-if="tl.startsWith('channel:')" src="channel" :key="tl" :channel="tl.replace('channel:', '')"/>
|
|
|
|
<XTimeline v-else :src="tl" :key="tl"/>
|
|
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
|
|
<XPostForm v-if="tl.startsWith('channel:')" :key="tl" :channel="tl.replace('channel:', '')"/>
|
|
|
|
<XPostForm v-else/>
|
|
|
|
</footer>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<XSide class="side" ref="side"/>
|
|
|
|
|
|
|
|
<XCommon/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
2021-02-15 13:00:37 +01:00
|
|
|
import { faLayerGroup, faBars, faHome, faCircle, faWindowMaximize, faColumns, faPencilAlt, faShareAlt, faSatelliteDish, faListUl, faSatellite, faCog, faSearch, faPlus } from '@fortawesome/free-solid-svg-icons';
|
2021-02-14 14:26:07 +01:00
|
|
|
import { faBell } from '@fortawesome/free-regular-svg-icons';
|
|
|
|
import { instanceName } from '@/config';
|
|
|
|
import XSidebar from '@/components/sidebar.vue';
|
|
|
|
import XCommon from '../_common_/common.vue';
|
|
|
|
import XSide from './side.vue';
|
|
|
|
import XTimeline from './timeline.vue';
|
|
|
|
import XPostForm from './post-form.vue';
|
2021-02-15 09:17:19 +01:00
|
|
|
import XHeaderClock from './header-clock.vue';
|
2021-02-14 14:26:07 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { sidebarDef } from '@/sidebar';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
XCommon,
|
|
|
|
XSidebar,
|
|
|
|
XSide, // NOTE: dynamic importするとAsyncComponentWrapperが間に入るせいでref取得できなくて面倒になる
|
|
|
|
XTimeline,
|
|
|
|
XPostForm,
|
2021-02-15 09:17:19 +01:00
|
|
|
XHeaderClock,
|
2021-02-14 14:26:07 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
navHook: (path) => {
|
|
|
|
switch (path) {
|
|
|
|
case '/timeline/home': this.tl = 'home'; return;
|
|
|
|
case '/timeline/local': this.tl = 'local'; return;
|
|
|
|
case '/timeline/social': this.tl = 'social'; return;
|
|
|
|
case '/timeline/global': this.tl = 'global'; return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (path.startsWith('/channels/')) {
|
|
|
|
this.tl = `channel:${ path.replace('/channels/', '') }`;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//os.pageWindow(path);
|
|
|
|
this.$refs.side.navigate(path);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sideViewHook: (path) => {
|
|
|
|
this.$refs.side.navigate(path);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tl: 'home',
|
|
|
|
lists: null,
|
|
|
|
antennas: null,
|
|
|
|
followedChannels: null,
|
|
|
|
featuredChannels: null,
|
2021-02-15 13:00:37 +01:00
|
|
|
currentChannel: null,
|
2021-02-14 14:26:07 +01:00
|
|
|
menuDef: sidebarDef,
|
2021-02-15 13:00:37 +01:00
|
|
|
faLayerGroup, faBars, faBell, faHome, faCircle, faPencilAlt, faShareAlt, faSatelliteDish, faListUl, faSatellite, faCog, faSearch, faPlus,
|
2021-02-14 14:26:07 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
os.api('users/lists/list').then(lists => {
|
|
|
|
this.lists = lists;
|
|
|
|
});
|
|
|
|
|
|
|
|
os.api('antennas/list').then(antennas => {
|
|
|
|
this.antennas = antennas;
|
|
|
|
});
|
|
|
|
|
|
|
|
os.api('channels/followed').then(channels => {
|
|
|
|
this.followedChannels = channels;
|
|
|
|
});
|
|
|
|
|
|
|
|
os.api('channels/featured').then(channels => {
|
|
|
|
this.featuredChannels = channels;
|
|
|
|
});
|
2021-02-15 13:00:37 +01:00
|
|
|
|
|
|
|
this.$watch('tl', () => {
|
|
|
|
if (this.tl.startsWith('channel:')) {
|
|
|
|
os.api('channels/show', { channelId: this.tl.replace('channel:', '') }).then(channel => {
|
|
|
|
this.currentChannel = channel;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, { immediate: true });
|
2021-02-14 14:26:07 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
showMenu() {
|
|
|
|
this.$refs.menu.show();
|
|
|
|
},
|
|
|
|
|
|
|
|
post() {
|
|
|
|
os.post();
|
|
|
|
},
|
|
|
|
|
|
|
|
top() {
|
|
|
|
window.scroll({ top: 0, behavior: 'smooth' });
|
|
|
|
},
|
|
|
|
|
|
|
|
onTransition() {
|
|
|
|
if (window._scroll) window._scroll();
|
|
|
|
},
|
|
|
|
|
|
|
|
onHeaderClick() {
|
|
|
|
window.scroll({ top: 0, behavior: 'smooth' });
|
|
|
|
},
|
|
|
|
|
|
|
|
onContextmenu(e) {
|
|
|
|
const isLink = (el: HTMLElement) => {
|
|
|
|
if (el.tagName === 'A') return true;
|
|
|
|
if (el.parentElement) {
|
|
|
|
return isLink(el.parentElement);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (isLink(e.target)) return;
|
|
|
|
if (['INPUT', 'TEXTAREA'].includes(e.target.tagName) || e.target.attributes['contenteditable']) return;
|
|
|
|
if (window.getSelection().toString() !== '') return;
|
|
|
|
const path = this.$route.path;
|
|
|
|
os.contextMenu([{
|
|
|
|
type: 'label',
|
|
|
|
text: path,
|
|
|
|
}, {
|
|
|
|
icon: faColumns,
|
|
|
|
text: this.$ts.openInSideView,
|
|
|
|
action: () => {
|
|
|
|
this.$refs.side.navigate(path);
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
icon: faWindowMaximize,
|
|
|
|
text: this.$ts.openInWindow,
|
|
|
|
action: () => {
|
|
|
|
os.pageWindow(path);
|
|
|
|
}
|
|
|
|
}], e);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-app {
|
|
|
|
$header-height: 54px; // TODO: どこかに集約したい
|
|
|
|
$ui-font-size: 1em; // TODO: どこかに集約したい
|
|
|
|
|
|
|
|
// ほんとは単に 100vh と書きたいところだが... https://css-tricks.com/the-trick-to-viewport-units-on-mobile/
|
|
|
|
min-height: calc(var(--vh, 1vh) * 100);
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
> .nav {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 250px;
|
|
|
|
height: 100vh;
|
|
|
|
border-right: solid 1px var(--divider);
|
|
|
|
|
|
|
|
> .header, > .footer {
|
|
|
|
$padding: 8px;
|
|
|
|
display: flex;
|
|
|
|
z-index: 1000;
|
|
|
|
height: $header-height;
|
|
|
|
padding: $padding;
|
|
|
|
box-sizing: border-box;
|
|
|
|
line-height: ($header-height - ($padding * 2));
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
&.header {
|
|
|
|
border-bottom: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.footer {
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
|
2021-02-15 09:17:19 +01:00
|
|
|
> .left, > .right {
|
|
|
|
> .item, > .menu {
|
2021-02-14 14:26:07 +01:00
|
|
|
height: ($header-height - ($padding * 2));
|
|
|
|
width: ($header-height - ($padding * 2));
|
|
|
|
padding: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-right: 4px;
|
2021-02-14 14:52:45 +01:00
|
|
|
//opacity: 0.6;
|
|
|
|
position: relative;
|
2021-02-15 09:17:19 +01:00
|
|
|
line-height: initial;
|
2021-02-14 14:52:45 +01:00
|
|
|
|
|
|
|
> i {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
|
|
|
color: var(--indicator);
|
|
|
|
font-size: 8px;
|
|
|
|
line-height: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
2021-02-14 14:26:07 +01:00
|
|
|
}
|
|
|
|
}
|
2021-02-15 09:17:19 +01:00
|
|
|
|
|
|
|
> .left {
|
|
|
|
> .account {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 8px;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .right {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2021-02-14 14:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
2021-02-15 13:00:37 +01:00
|
|
|
padding: 8px 0;
|
2021-02-14 14:26:07 +01:00
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
> .container {
|
|
|
|
& + .container {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .header {
|
2021-02-15 13:00:37 +01:00
|
|
|
display: flex;
|
2021-02-14 14:26:07 +01:00
|
|
|
font-size: 0.9em;
|
|
|
|
padding: 8px 16px;
|
|
|
|
opacity: 0.7;
|
2021-02-15 13:00:37 +01:00
|
|
|
|
|
|
|
> .add {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2021-02-14 14:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
padding: 0 8px;
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
display: block;
|
|
|
|
padding: 6px 8px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active, &.active:hover {
|
|
|
|
background: var(--accent);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.read {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon {
|
2021-02-15 13:00:37 +01:00
|
|
|
margin-right: 8px;
|
2021-02-14 14:26:07 +01:00
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
flex-direction: column;
|
|
|
|
min-width: 0;
|
|
|
|
height: 100vh;
|
|
|
|
position: relative;
|
|
|
|
background: var(--panel);
|
|
|
|
|
|
|
|
> .header {
|
|
|
|
$padding: 8px;
|
2021-02-15 09:17:19 +01:00
|
|
|
display: flex;
|
2021-02-14 14:26:07 +01:00
|
|
|
z-index: 1000;
|
|
|
|
height: $header-height;
|
|
|
|
padding: $padding;
|
|
|
|
box-sizing: border-box;
|
|
|
|
line-height: ($header-height - ($padding * 2));
|
2021-02-14 14:54:28 +01:00
|
|
|
background-color: var(--panel);
|
2021-02-14 14:26:07 +01:00
|
|
|
border-bottom: solid 1px var(--divider);
|
|
|
|
user-select: none;
|
|
|
|
|
2021-02-15 09:17:19 +01:00
|
|
|
> .left {
|
2021-02-14 14:26:07 +01:00
|
|
|
display: flex;
|
2021-02-15 13:00:37 +01:00
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
2021-02-14 14:26:07 +01:00
|
|
|
|
|
|
|
> .icon {
|
|
|
|
height: ($header-height - ($padding * 2));
|
|
|
|
width: ($header-height - ($padding * 2));
|
|
|
|
padding: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-right: 4px;
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
2021-02-15 13:00:37 +01:00
|
|
|
|
|
|
|
> .title, > .description {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
flex-shrink: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .description {
|
|
|
|
margin-left: 16px;
|
|
|
|
opacity: 0.7;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
2021-02-14 14:26:07 +01:00
|
|
|
}
|
2021-02-15 09:17:19 +01:00
|
|
|
|
|
|
|
> .right {
|
2021-02-15 13:00:37 +01:00
|
|
|
display: flex;
|
|
|
|
min-width: 0;
|
2021-02-15 09:17:19 +01:00
|
|
|
margin-left: auto;
|
2021-02-15 13:00:37 +01:00
|
|
|
padding-left: 8px;
|
|
|
|
|
|
|
|
> .search {
|
|
|
|
height: ($header-height - ($padding * 2));
|
|
|
|
width: ($header-height - ($padding * 2));
|
|
|
|
padding: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-left: 8px;
|
|
|
|
position: relative;
|
|
|
|
line-height: initial;
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
}
|
2021-02-15 09:17:19 +01:00
|
|
|
}
|
2021-02-14 14:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .footer {
|
2021-02-15 09:17:19 +01:00
|
|
|
padding: 0 16px 16px 16px;
|
2021-02-14 14:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .side {
|
|
|
|
border-left: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|