2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
2023-05-19 07:20:53 +00:00
|
|
|
<template #header><MkPageHeader v-model:tab="src" :actions="headerActions" :tabs="$i ? headerTabs : headerTabsWhenNotLogin" :displayMyAvatar="true"/></template>
|
|
|
|
<MkSpacer :contentMax="800">
|
2023-01-10 01:35:02 +00:00
|
|
|
<div ref="rootEl" v-hotkey.global="keymap">
|
2023-05-08 08:29:19 +00:00
|
|
|
<XTutorial v-if="$i && defaultStore.reactiveState.timelineTutorial.value != -1" class="_panel" style="margin-bottom: var(--margin);"/>
|
2023-04-01 04:42:40 +00:00
|
|
|
<MkPostForm v-if="defaultStore.reactiveState.showFixedPostForm.value" :class="$style.postForm" class="post-form _panel" fixed style="margin-bottom: var(--margin);"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-05-19 07:25:48 +00:00
|
|
|
<div v-if="queue > 0" :class="$style.new"><button class="_buttonPrimary" :class="$style.newButton" @click="top()">{{ i18n.ts.newNoteRecived }}</button></div>
|
2023-01-10 01:35:02 +00:00
|
|
|
<div :class="$style.tl">
|
2023-02-22 02:00:34 +00:00
|
|
|
<MkTimeline
|
2023-01-14 04:47:59 +00:00
|
|
|
ref="tlComponent"
|
|
|
|
:key="src"
|
2022-06-20 08:38:49 +00:00
|
|
|
: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>
|
2023-02-11 04:08:18 +00:00
|
|
|
import { defineAsyncComponent, computed, watch, provide } from 'vue';
|
2023-02-17 05:59:11 +00:00
|
|
|
import type { Tab } from '@/components/global/MkPageHeader.tabs.vue';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2023-02-09 01:35:28 +00:00
|
|
|
import MkPostForm 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';
|
2023-09-10 08:40:59 +00:00
|
|
|
import { miLocalStorage } from '@/local-storage';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-02-11 04:08:18 +00:00
|
|
|
provide('shouldOmitHeaderTitle', true);
|
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
const XTutorial = defineAsyncComponent(() => import('./timeline.tutorial.vue'));
|
|
|
|
|
2023-01-15 11:52:53 +00:00
|
|
|
const isLocalTimelineAvailable = ($i == null && instance.policies.ltlAvailable) || ($i != null && $i.policies.ltlAvailable);
|
|
|
|
const isGlobalTimelineAvailable = ($i == null && instance.policies.gtlAvailable) || ($i != null && $i.policies.gtlAvailable);
|
2022-01-16 06:02:15 +00:00
|
|
|
const keymap = {
|
|
|
|
't': focus,
|
|
|
|
};
|
|
|
|
|
2023-02-22 02:00:34 +00:00
|
|
|
const tlComponent = $shallowRef<InstanceType<typeof MkTimeline>>();
|
2023-01-03 01:12:37 +00:00
|
|
|
const rootEl = $shallowRef<HTMLElement>();
|
2022-01-16 06:02:15 +00:00
|
|
|
|
|
|
|
let queue = $ref(0);
|
2023-02-05 05:02:54 +00:00
|
|
|
let srcWhenNotSignin = $ref(isLocalTimelineAvailable ? 'local' : 'global');
|
|
|
|
const src = $computed({ get: () => ($i ? defaultStore.reactiveState.tl.value.src : srcWhenNotSignin), 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 {
|
2023-02-11 07:04:45 +00:00
|
|
|
if (rootEl) scroll(rootEl, { top: 0 });
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseList(ev: MouseEvent): Promise<void> {
|
2023-09-10 08:40:59 +00:00
|
|
|
const cachedLists = miLocalStorage.getItemAsJson('userListsCache');
|
|
|
|
const lists = cachedLists ?? await os.api('users/lists/list');
|
2022-01-16 06:02:15 +00:00
|
|
|
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);
|
2023-09-10 08:40:59 +00:00
|
|
|
if (cachedLists == null) {
|
|
|
|
miLocalStorage.setItemAsJson('userListsCache', lists);
|
|
|
|
} else {
|
|
|
|
miLocalStorage.setItemAsJson('userListsCache', await os.api('users/lists/list'));
|
|
|
|
}
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseAntenna(ev: MouseEvent): Promise<void> {
|
2023-09-10 08:40:59 +00:00
|
|
|
const cachedAntennas = miLocalStorage.getItemAsJson('antennasCache');
|
|
|
|
const antennas = cachedAntennas ?? await os.api('antennas/list');
|
2022-01-16 06:02:15 +00:00
|
|
|
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);
|
2023-09-10 08:40:59 +00:00
|
|
|
if (cachedAntennas == null) {
|
|
|
|
miLocalStorage.setItemAsJson('antennasCache', antennas);
|
|
|
|
} else {
|
|
|
|
miLocalStorage.setItemAsJson('antennasCache', await os.api('antennas/list'));
|
|
|
|
}
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseChannel(ev: MouseEvent): Promise<void> {
|
2023-03-31 02:30:27 +00:00
|
|
|
const channels = await os.api('channels/my-favorites', {
|
2023-02-17 05:59:11 +00:00
|
|
|
limit: 100,
|
|
|
|
});
|
2022-01-16 06:02:15 +00:00
|
|
|
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
|
|
|
});
|
2023-02-05 05:02:54 +00:00
|
|
|
srcWhenNotSignin = 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-31 11:40:47 +00:00
|
|
|
icon: 'ti ti-planet',
|
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-31 11:40:47 +00:00
|
|
|
icon: 'ti ti-rocket',
|
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-31 11:40:47 +00:00
|
|
|
icon: 'ti ti-whirl',
|
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,
|
2023-02-11 07:04:45 +00:00
|
|
|
}] as Tab[]);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-02-05 05:02:54 +00:00
|
|
|
const headerTabsWhenNotLogin = $computed(() => [
|
|
|
|
...(isLocalTimelineAvailable ? [{
|
|
|
|
key: 'local',
|
|
|
|
title: i18n.ts._timelines.local,
|
|
|
|
icon: 'ti ti-planet',
|
|
|
|
iconOnly: true,
|
|
|
|
}] : []),
|
|
|
|
...(isGlobalTimelineAvailable ? [{
|
|
|
|
key: 'global',
|
|
|
|
title: i18n.ts._timelines.global,
|
|
|
|
icon: 'ti ti-whirl',
|
|
|
|
iconOnly: true,
|
|
|
|
}] : []),
|
2023-02-11 07:04:45 +00:00
|
|
|
] as Tab[]);
|
2023-02-05 05:02:54 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.timeline,
|
2022-12-31 11:40:47 +00:00
|
|
|
icon: src === 'local' ? 'ti ti-planet' : src === 'social' ? 'ti ti-rocket' : src === 'global' ? 'ti ti-whirl' : 'ti ti-home',
|
2022-06-20 08:38:49 +00:00
|
|
|
})));
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-10 01:35:02 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.new {
|
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 16px);
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
2023-02-11 01:36:14 +00:00
|
|
|
margin: calc(-0.675em - 8px) 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: calc(-0.675em - 8px - var(--margin));
|
|
|
|
}
|
2023-05-19 07:25:48 +00:00
|
|
|
}
|
2023-01-10 01:35:02 +00:00
|
|
|
|
2023-05-19 07:25:48 +00:00
|
|
|
.newButton {
|
|
|
|
display: block;
|
|
|
|
margin: var(--margin) auto 0 auto;
|
|
|
|
padding: 8px 16px;
|
|
|
|
border-radius: 32px;
|
2023-01-10 01:35:02 +00:00
|
|
|
}
|
2020-02-18 19:08:35 +00:00
|
|
|
|
2023-01-10 01:35:02 +00:00
|
|
|
.postForm {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
2021-10-14 09:51:15 +00:00
|
|
|
|
2023-01-10 01:35:02 +00:00
|
|
|
.tl {
|
|
|
|
background: var(--bg);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
</style>
|