2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-04-18 07:29:31 +02:00
|
|
|
<div class="cmuxhskf _root" v-hotkey.global="keymap">
|
2021-04-13 05:43:19 +02:00
|
|
|
<XTutorial v-if="$store.reactiveState.tutorial.value != -1" class="tutorial _block"/>
|
|
|
|
<XPostForm v-if="$store.reactiveState.showFixedPostForm.value" class="post-form _block" fixed/>
|
2021-04-18 07:29:31 +02:00
|
|
|
<div class="tabs _block">
|
2021-04-10 05:40:50 +02:00
|
|
|
<div class="left">
|
2021-04-20 16:22:59 +02:00
|
|
|
<button class="_button tab" @click="() => { src = 'home'; saveSrc(); }" :class="{ active: src === 'home' }" v-tooltip="$ts._timelines.home"><i class="fas fa-home"></i></button>
|
|
|
|
<button class="_button tab" @click="() => { src = 'local'; saveSrc(); }" :class="{ active: src === 'local' }" v-tooltip="$ts._timelines.local" v-if="isLocalTimelineAvailable"><i class="fas fa-comments"></i></button>
|
|
|
|
<button class="_button tab" @click="() => { src = 'social'; saveSrc(); }" :class="{ active: src === 'social' }" v-tooltip="$ts._timelines.social" v-if="isLocalTimelineAvailable"><i class="fas fa-share-alt"></i></button>
|
|
|
|
<button class="_button tab" @click="() => { src = 'global'; saveSrc(); }" :class="{ active: src === 'global' }" v-tooltip="$ts._timelines.global" v-if="isGlobalTimelineAvailable"><i class="fas fa-globe"></i></button>
|
2021-04-10 05:40:50 +02:00
|
|
|
<span class="divider"></span>
|
2021-04-20 16:22:59 +02:00
|
|
|
<button class="_button tab" @click="() => { src = 'mentions'; saveSrc(); }" :class="{ active: src === 'mentions' }" v-tooltip="$ts.mentions"><i class="fas fa-at"></i><i v-if="$i.hasUnreadMentions" class="fas fa-circle i"></i></button>
|
|
|
|
<button class="_button tab" @click="() => { src = 'directs'; saveSrc(); }" :class="{ active: src === 'directs' }" v-tooltip="$ts.directNotes"><i class="fas fa-envelope"></i><i v-if="$i.hasUnreadSpecifiedNotes" class="fas fa-circle i"></i></button>
|
2021-04-10 05:40:50 +02:00
|
|
|
</div>
|
|
|
|
<div class="right">
|
2021-04-20 16:22:59 +02:00
|
|
|
<button class="_button tab" @click="chooseChannel" :class="{ active: src === 'channel' }" v-tooltip="$ts.channel"><i class="fas fa-satellite-dish"></i><i v-if="$i.hasUnreadChannel" class="fas fa-circle i"></i></button>
|
|
|
|
<button class="_button tab" @click="chooseAntenna" :class="{ active: src === 'antenna' }" v-tooltip="$ts.antennas"><i class="fas fa-satellite"></i><i v-if="$i.hasUnreadAntenna" class="fas fa-circle i"></i></button>
|
|
|
|
<button class="_button tab" @click="chooseList" :class="{ active: src === 'list' }" v-tooltip="$ts.lists"><i class="fas fa-list-ul"></i></button>
|
2020-12-29 03:33:21 +01:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
2021-04-10 05:40:50 +02:00
|
|
|
<XTimeline ref="tl"
|
2021-04-10 11:17:42 +02:00
|
|
|
class="_gap"
|
2021-04-10 05:40:50 +02:00
|
|
|
:key="src === 'list' ? `list:${list.id}` : src === 'antenna' ? `antenna:${antenna.id}` : src === 'channel' ? `channel:${channel.id}` : src"
|
|
|
|
:src="src"
|
|
|
|
:list="list ? list.id : null"
|
|
|
|
:antenna="antenna ? antenna.id : null"
|
|
|
|
:channel="channel ? channel.id : null"
|
|
|
|
:sound="true"
|
|
|
|
@before="before()"
|
|
|
|
@after="after()"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
2021-04-18 07:29:31 +02:00
|
|
|
<div class="new" v-if="queue > 0"><button class="_buttonPrimary" @click="top()">{{ $ts.newNoteRecived }}</button></div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent, defineAsyncComponent, computed } from 'vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import Progress from '@client/scripts/loading';
|
|
|
|
import XTimeline from '@client/components/timeline.vue';
|
|
|
|
import XPostForm from '@client/components/post-form.vue';
|
|
|
|
import { scroll } from '@client/scripts/scroll';
|
|
|
|
import * as os from '@client/os';
|
2021-04-10 05:54:12 +02:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
|
|
|
name: 'timeline',
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
components: {
|
2020-02-09 13:31:17 +01:00
|
|
|
XTimeline,
|
2020-10-17 13:12:00 +02:00
|
|
|
XTutorial: defineAsyncComponent(() => import('./timeline.tutorial.vue')),
|
2020-02-18 19:11:09 +01:00
|
|
|
XPostForm,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
src: 'home',
|
|
|
|
list: null,
|
|
|
|
antenna: null,
|
2020-08-18 15:44:21 +02:00
|
|
|
channel: null,
|
2020-01-29 20:37:25 +01:00
|
|
|
menuOpened: false,
|
2020-02-18 20:08:35 +01:00
|
|
|
queue: 0,
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: computed(() => ({
|
2020-12-29 03:33:21 +01:00
|
|
|
title: this.$ts.timeline,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: this.src === 'local' ? 'fas fa-comments' : this.src === 'social' ? 'fas fa-share-alt' : this.src === 'global' ? 'fas fa-globe' : 'fas fa-home',
|
2021-04-10 06:38:24 +02:00
|
|
|
actions: [{
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-calendar-alt',
|
2021-04-10 06:38:24 +02:00
|
|
|
text: this.$ts.jumpToSpecifiedDate,
|
|
|
|
handler: this.timetravel
|
|
|
|
}]
|
2020-12-29 03:33:21 +01:00
|
|
|
})),
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
keymap(): any {
|
|
|
|
return {
|
|
|
|
't': this.focus
|
|
|
|
};
|
2020-02-09 13:31:17 +01:00
|
|
|
},
|
2020-02-20 15:02:55 +01:00
|
|
|
|
2020-12-29 08:58:14 +01:00
|
|
|
isLocalTimelineAvailable(): boolean {
|
|
|
|
return !this.$instance.disableLocalTimeline || this.$i.isModerator || this.$i.isAdmin;
|
|
|
|
},
|
|
|
|
|
|
|
|
isGlobalTimelineAvailable(): boolean {
|
|
|
|
return !this.$instance.disableGlobalTimeline || this.$i.isModerator || this.$i.isAdmin;
|
2020-02-20 15:02:55 +01:00
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
src() {
|
|
|
|
this.showNav = false;
|
|
|
|
},
|
|
|
|
list(x) {
|
|
|
|
this.showNav = false;
|
|
|
|
if (x != null) this.antenna = null;
|
2020-08-18 15:44:21 +02:00
|
|
|
if (x != null) this.channel = null;
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
antenna(x) {
|
|
|
|
this.showNav = false;
|
2020-08-18 15:44:21 +02:00
|
|
|
if (x != null) this.list = null;
|
|
|
|
if (x != null) this.channel = null;
|
|
|
|
},
|
|
|
|
channel(x) {
|
|
|
|
this.showNav = false;
|
|
|
|
if (x != null) this.antenna = null;
|
2020-01-29 20:37:25 +01:00
|
|
|
if (x != null) this.list = null;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2020-12-19 02:55:52 +01:00
|
|
|
this.src = this.$store.state.tl.src;
|
2020-02-09 23:23:43 +01:00
|
|
|
if (this.src === 'list') {
|
2020-12-19 02:55:52 +01:00
|
|
|
this.list = this.$store.state.tl.arg;
|
2020-02-09 23:23:43 +01:00
|
|
|
} else if (this.src === 'antenna') {
|
2020-12-19 02:55:52 +01:00
|
|
|
this.antenna = this.$store.state.tl.arg;
|
2020-08-18 15:44:21 +02:00
|
|
|
} else if (this.src === 'channel') {
|
2020-12-19 02:55:52 +01:00
|
|
|
this.channel = this.$store.state.tl.arg;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
before() {
|
|
|
|
Progress.start();
|
|
|
|
},
|
|
|
|
|
|
|
|
after() {
|
|
|
|
Progress.done();
|
|
|
|
},
|
|
|
|
|
2020-02-18 20:08:35 +01:00
|
|
|
queueUpdated(q) {
|
|
|
|
this.queue = q;
|
|
|
|
},
|
|
|
|
|
|
|
|
top() {
|
2020-07-12 09:14:49 +02:00
|
|
|
scroll(this.$el, 0);
|
2020-02-18 20:08:35 +01:00
|
|
|
},
|
|
|
|
|
2020-12-29 03:33:21 +01:00
|
|
|
async chooseList(ev) {
|
|
|
|
const lists = await os.api('users/lists/list');
|
|
|
|
const items = lists.map(list => ({
|
|
|
|
text: list.name,
|
2020-01-29 20:37:25 +01:00
|
|
|
action: () => {
|
2020-12-29 03:33:21 +01:00
|
|
|
this.list = list;
|
|
|
|
this.src = 'list';
|
2020-08-18 15:44:21 +02:00
|
|
|
this.saveSrc();
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}));
|
2020-12-29 03:33:21 +01:00
|
|
|
os.modalMenu(items, ev.currentTarget || ev.target);
|
|
|
|
},
|
|
|
|
|
|
|
|
async chooseAntenna(ev) {
|
|
|
|
const antennas = await os.api('antennas/list');
|
|
|
|
const items = antennas.map(antenna => ({
|
|
|
|
text: antenna.name,
|
|
|
|
indicate: antenna.hasUnreadNote,
|
2020-01-29 20:37:25 +01:00
|
|
|
action: () => {
|
2020-12-29 03:33:21 +01:00
|
|
|
this.antenna = antenna;
|
|
|
|
this.src = 'antenna';
|
2020-08-18 15:44:21 +02:00
|
|
|
this.saveSrc();
|
|
|
|
}
|
|
|
|
}));
|
2020-12-29 03:33:21 +01:00
|
|
|
os.modalMenu(items, ev.currentTarget || ev.target);
|
|
|
|
},
|
|
|
|
|
|
|
|
async chooseChannel(ev) {
|
|
|
|
const channels = await os.api('channels/followed');
|
|
|
|
const items = channels.map(channel => ({
|
2020-08-18 15:44:21 +02:00
|
|
|
text: channel.name,
|
|
|
|
indicate: channel.hasUnreadNote,
|
|
|
|
action: () => {
|
|
|
|
// NOTE: チャンネルタイムラインをこのコンポーネントで表示するようにすると投稿フォームはどうするかなどの問題が生じるのでとりあえずページ遷移で
|
|
|
|
//this.channel = channel;
|
|
|
|
//this.src = 'channel';
|
|
|
|
//this.saveSrc();
|
|
|
|
this.$router.push(`/channels/${channel.id}`);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}));
|
2020-12-29 03:33:21 +01:00
|
|
|
os.modalMenu(items, ev.currentTarget || ev.target);
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
saveSrc() {
|
2020-12-19 02:55:52 +01:00
|
|
|
this.$store.set('tl', {
|
2020-01-29 20:37:25 +01:00
|
|
|
src: this.src,
|
2020-08-18 15:44:21 +02:00
|
|
|
arg:
|
|
|
|
this.src === 'list' ? this.list :
|
|
|
|
this.src === 'antenna' ? this.antenna :
|
|
|
|
this.channel
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
async timetravel() {
|
|
|
|
const { canceled, result: date } = await os.dialog({
|
|
|
|
title: this.$ts.date,
|
|
|
|
input: {
|
|
|
|
type: 'date'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
this.$refs.tl.timetravel(new Date(date));
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
focus() {
|
|
|
|
(this.$refs.tl as any).focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-02-09 13:31:17 +01:00
|
|
|
<style lang="scss" scoped>
|
2020-12-29 03:33:21 +01:00
|
|
|
.cmuxhskf {
|
2020-02-18 20:08:35 +01:00
|
|
|
> .new {
|
2021-04-15 10:36:09 +02:00
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 16px);
|
2020-02-18 20:08:35 +01:00
|
|
|
z-index: 1000;
|
2021-04-15 10:36:09 +02:00
|
|
|
width: 100%;
|
2020-02-18 20:08:35 +01:00
|
|
|
|
|
|
|
> button {
|
|
|
|
display: block;
|
2020-10-17 13:12:00 +02:00
|
|
|
margin: var(--margin) auto 0 auto;
|
2020-02-19 22:08:54 +01:00
|
|
|
padding: 8px 16px;
|
2020-02-18 20:08:35 +01:00
|
|
|
border-radius: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
> .tabs {
|
|
|
|
display: flex;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: auto;
|
2020-12-29 03:33:21 +01:00
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
// 影の都合上
|
|
|
|
position: relative;
|
2020-12-29 14:00:02 +01:00
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
> .right {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2020-12-29 03:33:21 +01:00
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
> .left, > .right {
|
|
|
|
> .tab {
|
|
|
|
position: relative;
|
|
|
|
height: 50px;
|
|
|
|
padding: 0 12px;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
&:hover {
|
|
|
|
color: var(--fgHighlighted);
|
|
|
|
}
|
2020-12-29 03:33:21 +01:00
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
&.active {
|
|
|
|
color: var(--fgHighlighted);
|
2020-12-29 03:33:21 +01:00
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
2020-12-29 03:33:21 +01:00
|
|
|
position: absolute;
|
2021-04-10 05:40:50 +02:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: calc(100% - 16px);
|
|
|
|
height: 4px;
|
|
|
|
background: var(--accent);
|
|
|
|
border-radius: 8px 8px 0 0;
|
2020-12-29 03:33:21 +01:00
|
|
|
}
|
|
|
|
}
|
2020-12-29 09:11:12 +01:00
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
> .i {
|
|
|
|
position: absolute;
|
|
|
|
top: 16px;
|
|
|
|
right: 8px;
|
|
|
|
color: var(--indicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
2020-12-29 09:11:12 +01:00
|
|
|
}
|
2020-12-29 03:33:21 +01:00
|
|
|
}
|
2021-04-10 05:40:50 +02:00
|
|
|
|
|
|
|
> .divider {
|
|
|
|
display: inline-block;
|
|
|
|
width: 1px;
|
|
|
|
height: 28px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 0 8px;
|
|
|
|
background: var(--divider);
|
|
|
|
}
|
2020-12-29 03:33:21 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|