2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
2022-08-13 08:41:17 +00:00
|
|
|
<template #header><MkPageHeader v-model:tab="src" :actions="headerActions" :tabs="headerTabs" :display-my-avatar="true"/></template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<div ref="rootEl" v-hotkey.global="keymap" class="cmuxhskf">
|
|
|
|
<XTutorial v-if="$store.reactiveState.tutorial.value != -1" class="tutorial _block"/>
|
|
|
|
<XPostForm v-if="$store.reactiveState.showFixedPostForm.value" class="post-form _block" fixed/>
|
|
|
|
|
2022-07-20 13:24:26 +00:00
|
|
|
<div v-if="queue > 0" class="new"><button class="_buttonPrimary" @click="top()">{{ i18n.ts.newNoteRecived }}</button></div>
|
2022-06-20 08:38:49 +00:00
|
|
|
<div class="tl _block">
|
|
|
|
<XTimeline
|
|
|
|
ref="tl" :key="src"
|
|
|
|
class="tl"
|
|
|
|
:src="src"
|
|
|
|
:sound="true"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-12-03 04:52:57 +00:00
|
|
|
</div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent, computed, watch } from 'vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XTimeline from '@/components/MkTimeline.vue';
|
|
|
|
import XPostForm from '@/components/MkPostForm.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { scroll } from '@/scripts/scroll';
|
|
|
|
import * as os from '@/os';
|
2022-01-16 06:02:15 +00:00
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { instance } from '@/instance';
|
|
|
|
import { $i } from '@/account';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
const XTutorial = defineAsyncComponent(() => import('./timeline.tutorial.vue'));
|
|
|
|
|
|
|
|
const isLocalTimelineAvailable = !instance.disableLocalTimeline || ($i != null && ($i.isModerator || $i.isAdmin));
|
|
|
|
const isGlobalTimelineAvailable = !instance.disableGlobalTimeline || ($i != null && ($i.isModerator || $i.isAdmin));
|
|
|
|
const keymap = {
|
|
|
|
't': focus,
|
|
|
|
};
|
|
|
|
|
|
|
|
const tlComponent = $ref<InstanceType<typeof XTimeline>>();
|
|
|
|
const rootEl = $ref<HTMLElement>();
|
|
|
|
|
|
|
|
let queue = $ref(0);
|
2022-06-22 07:29:21 +00:00
|
|
|
const src = $computed({ get: () => defaultStore.reactiveState.tl.value.src, set: (x) => saveSrc(x) });
|
2022-02-03 23:39:20 +00:00
|
|
|
|
|
|
|
watch ($$(src), () => queue = 0);
|
2022-01-16 06:02:15 +00:00
|
|
|
|
|
|
|
function queueUpdated(q: number): void {
|
|
|
|
queue = q;
|
|
|
|
}
|
|
|
|
|
|
|
|
function top(): void {
|
|
|
|
scroll(rootEl, { top: 0 });
|
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseList(ev: MouseEvent): Promise<void> {
|
|
|
|
const lists = await os.api('users/lists/list');
|
|
|
|
const items = lists.map(list => ({
|
2022-02-03 23:39:20 +00:00
|
|
|
type: 'link' as const,
|
2022-01-16 06:02:15 +00:00
|
|
|
text: list.name,
|
|
|
|
to: `/timeline/list/${list.id}`,
|
|
|
|
}));
|
2022-01-28 02:53:12 +00:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseAntenna(ev: MouseEvent): Promise<void> {
|
|
|
|
const antennas = await os.api('antennas/list');
|
|
|
|
const items = antennas.map(antenna => ({
|
2022-02-03 23:39:20 +00:00
|
|
|
type: 'link' as const,
|
2022-01-16 06:02:15 +00:00
|
|
|
text: antenna.name,
|
|
|
|
indicate: antenna.hasUnreadNote,
|
|
|
|
to: `/timeline/antenna/${antenna.id}`,
|
|
|
|
}));
|
2022-01-28 02:53:12 +00:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseChannel(ev: MouseEvent): Promise<void> {
|
|
|
|
const channels = await os.api('channels/followed');
|
|
|
|
const items = channels.map(channel => ({
|
2022-02-03 23:39:20 +00:00
|
|
|
type: 'link' as const,
|
2022-01-16 06:02:15 +00:00
|
|
|
text: channel.name,
|
|
|
|
indicate: channel.hasUnreadNote,
|
|
|
|
to: `/channels/${channel.id}`,
|
|
|
|
}));
|
2022-01-28 02:53:12 +00:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
2022-02-03 23:39:20 +00:00
|
|
|
function saveSrc(newSrc: 'home' | 'local' | 'social' | 'global'): void {
|
2022-01-16 06:02:15 +00:00
|
|
|
defaultStore.set('tl', {
|
2022-02-03 23:39:20 +00:00
|
|
|
...defaultStore.state.tl,
|
|
|
|
src: newSrc,
|
2022-01-16 06:02:15 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function timetravel(): Promise<void> {
|
|
|
|
const { canceled, result: date } = await os.inputDate({
|
2022-01-28 02:39:49 +00:00
|
|
|
title: i18n.ts.date,
|
2022-01-16 06:02:15 +00:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
tlComponent.timetravel(date);
|
|
|
|
}
|
|
|
|
|
|
|
|
function focus(): void {
|
|
|
|
tlComponent.focus();
|
|
|
|
}
|
|
|
|
|
2022-06-21 05:12:39 +00:00
|
|
|
const headerActions = $computed(() => []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
const headerTabs = $computed(() => [{
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'home',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts._timelines.home,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-home',
|
2022-06-20 08:38:49 +00:00
|
|
|
iconOnly: true,
|
|
|
|
}, ...(isLocalTimelineAvailable ? [{
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'local',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts._timelines.local,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-messages',
|
2022-06-20 08:38:49 +00:00
|
|
|
iconOnly: true,
|
|
|
|
}, {
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'social',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts._timelines.social,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-share',
|
2022-06-20 08:38:49 +00:00
|
|
|
iconOnly: true,
|
|
|
|
}] : []), ...(isGlobalTimelineAvailable ? [{
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'global',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts._timelines.global,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-world',
|
2022-06-20 08:38:49 +00:00
|
|
|
iconOnly: true,
|
2022-06-21 05:12:39 +00:00
|
|
|
}] : []), {
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-list',
|
2022-06-21 05:12:39 +00:00
|
|
|
title: i18n.ts.lists,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseList,
|
|
|
|
}, {
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-antenna',
|
2022-06-21 05:12:39 +00:00
|
|
|
title: i18n.ts.antennas,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseAntenna,
|
|
|
|
}, {
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-device-tv',
|
2022-06-21 05:12:39 +00:00
|
|
|
title: i18n.ts.channel,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseChannel,
|
|
|
|
}]);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.timeline,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: src === 'local' ? 'ti ti-messages' : src === 'social' ? 'ti ti-share' : src === 'global' ? 'ti ti-world' : 'ti ti-home',
|
2022-06-20 08:38:49 +00:00
|
|
|
})));
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:01:06 +00:00
|
|
|
<style lang="scss">
|
2020-12-29 02:33:21 +00:00
|
|
|
.cmuxhskf {
|
2020-02-18 19:08:35 +00:00
|
|
|
> .new {
|
2021-04-15 08:36:09 +00:00
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 16px);
|
2020-02-18 19:08:35 +00:00
|
|
|
z-index: 1000;
|
2021-04-15 08:36:09 +00:00
|
|
|
width: 100%;
|
2020-02-18 19:08:35 +00:00
|
|
|
|
|
|
|
> button {
|
|
|
|
display: block;
|
2020-10-17 11:12:00 +00:00
|
|
|
margin: var(--margin) auto 0 auto;
|
2020-02-19 21:08:54 +00:00
|
|
|
padding: 8px 16px;
|
2020-02-18 19:08:35 +00:00
|
|
|
border-radius: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-14 09:51:15 +00:00
|
|
|
> .post-form {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
|
2021-09-17 13:39:15 +00:00
|
|
|
> .tl {
|
|
|
|
background: var(--bg);
|
|
|
|
border-radius: var(--radius);
|
2022-07-13 12:41:06 +00:00
|
|
|
overflow: clip;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|