2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-04-10 05:40:50 +02:00
|
|
|
<div class="cmuxhskf _root" v-hotkey.global="keymap">
|
2020-12-26 02:47:36 +01:00
|
|
|
<div class="new" v-if="queue > 0" :style="{ width: width + 'px' }"><button class="_buttonPrimary" @click="top()">{{ $ts.newNoteRecived }}</button></div>
|
2020-02-18 20:08:35 +01:00
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
<XTutorial v-if="$store.reactiveState.tutorial.value != -1" class="tutorial _block _isolated"/>
|
|
|
|
<XPostForm v-if="$store.reactiveState.showFixedPostForm.value" class="post-form _block _isolated" fixed/>
|
|
|
|
<div class="tabs _block _vMargin">
|
|
|
|
<div class="left">
|
|
|
|
<button class="_button tab" @click="() => { src = 'home'; saveSrc(); }" :class="{ active: src === 'home' }" v-tooltip="$ts._timelines.home"><Fa :icon="faHome"/></button>
|
|
|
|
<button class="_button tab" @click="() => { src = 'local'; saveSrc(); }" :class="{ active: src === 'local' }" v-tooltip="$ts._timelines.local" v-if="isLocalTimelineAvailable"><Fa :icon="faComments"/></button>
|
|
|
|
<button class="_button tab" @click="() => { src = 'social'; saveSrc(); }" :class="{ active: src === 'social' }" v-tooltip="$ts._timelines.social" v-if="isLocalTimelineAvailable"><Fa :icon="faShareAlt"/></button>
|
|
|
|
<button class="_button tab" @click="() => { src = 'global'; saveSrc(); }" :class="{ active: src === 'global' }" v-tooltip="$ts._timelines.global" v-if="isGlobalTimelineAvailable"><Fa :icon="faGlobe"/></button>
|
|
|
|
<span class="divider"></span>
|
|
|
|
<button class="_button tab" @click="() => { src = 'mentions'; saveSrc(); }" :class="{ active: src === 'mentions' }" v-tooltip="$ts.mentions"><Fa :icon="faAt"/><Fa :icon="faCircle" class="i" v-if="$i.hasUnreadMentions"/></button>
|
|
|
|
<button class="_button tab" @click="() => { src = 'directs'; saveSrc(); }" :class="{ active: src === 'directs' }" v-tooltip="$ts.directNotes"><Fa :icon="faEnvelope"/><Fa :icon="faCircle" class="i" v-if="$i.hasUnreadSpecifiedNotes"/></button>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
<button class="_button tab" @click="chooseChannel" :class="{ active: src === 'channel' }" v-tooltip="$ts.channel"><Fa :icon="faSatelliteDish"/><Fa :icon="faCircle" class="i" v-if="$i.hasUnreadChannel"/></button>
|
|
|
|
<button class="_button tab" @click="chooseAntenna" :class="{ active: src === 'antenna' }" v-tooltip="$ts.antennas"><Fa :icon="faSatellite"/><Fa :icon="faCircle" class="i" v-if="$i.hasUnreadAntenna"/></button>
|
|
|
|
<button class="_button tab" @click="chooseList" :class="{ active: src === 'list' }" v-tooltip="$ts.lists"><Fa :icon="faListUl"/></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"
|
|
|
|
class="_vMargin"
|
|
|
|
: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"
|
|
|
|
/>
|
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';
|
2020-12-29 03:33:21 +01:00
|
|
|
import { faAngleDown, faAngleUp, faHome, faShareAlt, faGlobe, faListUl, faSatellite, faSatelliteDish, faCircle, faEllipsisH, faPencilAlt, faAt } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { faComments, faEnvelope } from '@fortawesome/free-regular-svg-icons';
|
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,
|
|
|
|
width: 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,
|
|
|
|
icon: this.src === 'local' ? faComments : this.src === 'social' ? faShareAlt : this.src === 'global' ? faGlobe : faHome,
|
|
|
|
action: {
|
|
|
|
icon: faPencilAlt,
|
|
|
|
handler: () => os.post()
|
2020-10-18 09:33:23 +02:00
|
|
|
}
|
2020-12-29 03:33:21 +01:00
|
|
|
})),
|
|
|
|
faAngleDown, faAngleUp, faHome, faShareAlt, faGlobe, faComments, faListUl, faSatellite, faSatelliteDish, faCircle, faEllipsisH, faAt, faEnvelope,
|
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
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-02-19 09:55:55 +01:00
|
|
|
mounted() {
|
2020-02-19 09:59:28 +01:00
|
|
|
this.width = this.$el.offsetWidth;
|
2020-02-19 09:55:55 +01:00
|
|
|
},
|
|
|
|
|
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) {
|
2020-02-19 09:55:55 +01:00
|
|
|
if (this.$el.offsetWidth !== 0) this.width = this.$el.offsetWidth;
|
2020-02-18 20:08:35 +01:00
|
|
|
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 {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
|
|
> 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>
|