2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
2023-05-19 10:20:53 +03:00
|
|
|
<template #header><MkPageHeader v-model:tab="src" :actions="headerActions" :tabs="$i ? headerTabs : headerTabsWhenNotLogin" :displayMyAvatar="true"/></template>
|
|
|
|
<MkSpacer :contentMax="800">
|
2023-01-10 03:35:02 +02:00
|
|
|
<div ref="rootEl" v-hotkey.global="keymap">
|
2023-11-03 08:35:07 +02:00
|
|
|
<MkInfo v-if="['home', 'local', 'social', 'global'].includes(src) && !defaultStore.reactiveState.timelineTutorials.value[src]" style="margin-bottom: var(--margin);" closable @close="closeTutorial()">
|
|
|
|
{{ i18n.ts._timelineDescription[src] }}
|
|
|
|
</MkInfo>
|
2023-04-01 07:42:40 +03:00
|
|
|
<MkPostForm v-if="defaultStore.reactiveState.showFixedPostForm.value" :class="$style.postForm" class="post-form _panel" fixed style="margin-bottom: var(--margin);"/>
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-05-19 10:25:48 +03: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 03:35:02 +02:00
|
|
|
<div :class="$style.tl">
|
2023-02-22 04:00:34 +02:00
|
|
|
<MkTimeline
|
2023-01-14 06:47:59 +02:00
|
|
|
ref="tlComponent"
|
2023-10-11 04:15:44 +03:00
|
|
|
:key="src + withRenotes + withReplies + onlyFiles"
|
2023-09-19 04:58:42 +03:00
|
|
|
:src="src.split(':')[0]"
|
|
|
|
:list="src.split(':')[1]"
|
2023-09-28 05:41:41 +03:00
|
|
|
:withRenotes="withRenotes"
|
2023-10-11 04:15:44 +03:00
|
|
|
:withReplies="withReplies"
|
2023-09-29 10:56:17 +03:00
|
|
|
:onlyFiles="onlyFiles"
|
2022-06-20 11:38:49 +03:00
|
|
|
:sound="true"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-12-03 06:52:57 +02:00
|
|
|
</div>
|
2022-06-20 11:38:49 +03:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 21:37:25 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 08:02:15 +02:00
|
|
|
<script lang="ts" setup>
|
2023-11-03 08:35:07 +02:00
|
|
|
import { computed, watch, provide } from 'vue';
|
2023-02-17 07:59:11 +02:00
|
|
|
import type { Tab } from '@/components/global/MkPageHeader.tabs.vue';
|
2023-02-22 04:00:34 +02:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2023-11-03 08:35:07 +02:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2023-02-09 03:35:28 +02:00
|
|
|
import MkPostForm from '@/components/MkPostForm.vue';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { scroll } from '@/scripts/scroll.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { instance } from '@/instance.js';
|
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { miLocalStorage } from '@/local-storage.js';
|
2023-10-13 10:42:57 +03:00
|
|
|
import { antennasCache, userListsCache } from '@/cache.js';
|
2023-10-30 02:12:20 +02:00
|
|
|
import { deviceKind } from '@/scripts/device-kind.js';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2023-02-11 06:08:18 +02:00
|
|
|
provide('shouldOmitHeaderTitle', true);
|
|
|
|
|
2023-01-15 13:52:53 +02: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 08:02:15 +02:00
|
|
|
const keymap = {
|
|
|
|
't': focus,
|
|
|
|
};
|
|
|
|
|
2023-02-22 04:00:34 +02:00
|
|
|
const tlComponent = $shallowRef<InstanceType<typeof MkTimeline>>();
|
2023-01-03 03:12:37 +02:00
|
|
|
const rootEl = $shallowRef<HTMLElement>();
|
2022-01-16 08:02:15 +02:00
|
|
|
|
|
|
|
let queue = $ref(0);
|
2023-02-05 07:02:54 +02:00
|
|
|
let srcWhenNotSignin = $ref(isLocalTimelineAvailable ? 'local' : 'global');
|
|
|
|
const src = $computed({ get: () => ($i ? defaultStore.reactiveState.tl.value.src : srcWhenNotSignin), set: (x) => saveSrc(x) });
|
2023-09-28 05:41:41 +03:00
|
|
|
const withRenotes = $ref(true);
|
2023-10-13 10:49:56 +03:00
|
|
|
const withReplies = $ref($i ? defaultStore.state.tlWithReplies : false);
|
2023-09-29 10:56:17 +03:00
|
|
|
const onlyFiles = $ref(false);
|
2022-02-04 01:39:20 +02:00
|
|
|
|
2023-09-19 03:36:07 +03:00
|
|
|
watch($$(src), () => queue = 0);
|
2022-01-16 08:02:15 +02:00
|
|
|
|
2023-10-13 10:49:56 +03:00
|
|
|
watch($$(withReplies), (x) => {
|
|
|
|
if ($i) defaultStore.set('tlWithReplies', x);
|
|
|
|
});
|
|
|
|
|
2022-01-16 08:02:15 +02:00
|
|
|
function queueUpdated(q: number): void {
|
|
|
|
queue = q;
|
|
|
|
}
|
|
|
|
|
|
|
|
function top(): void {
|
2023-02-11 09:04:45 +02:00
|
|
|
if (rootEl) scroll(rootEl, { top: 0 });
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseList(ev: MouseEvent): Promise<void> {
|
2023-09-11 08:55:18 +03:00
|
|
|
const lists = await userListsCache.fetch();
|
2022-01-16 08:02:15 +02:00
|
|
|
const items = lists.map(list => ({
|
2022-02-04 01:39:20 +02:00
|
|
|
type: 'link' as const,
|
2022-01-16 08:02:15 +02:00
|
|
|
text: list.name,
|
|
|
|
to: `/timeline/list/${list.id}`,
|
|
|
|
}));
|
2022-01-28 04:53:12 +02:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseAntenna(ev: MouseEvent): Promise<void> {
|
2023-09-11 08:55:18 +03:00
|
|
|
const antennas = await antennasCache.fetch();
|
2022-01-16 08:02:15 +02:00
|
|
|
const items = antennas.map(antenna => ({
|
2022-02-04 01:39:20 +02:00
|
|
|
type: 'link' as const,
|
2022-01-16 08:02:15 +02:00
|
|
|
text: antenna.name,
|
|
|
|
indicate: antenna.hasUnreadNote,
|
|
|
|
to: `/timeline/antenna/${antenna.id}`,
|
|
|
|
}));
|
2022-01-28 04:53:12 +02:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseChannel(ev: MouseEvent): Promise<void> {
|
2023-03-31 05:30:27 +03:00
|
|
|
const channels = await os.api('channels/my-favorites', {
|
2023-02-17 07:59:11 +02:00
|
|
|
limit: 100,
|
|
|
|
});
|
2022-01-16 08:02:15 +02:00
|
|
|
const items = channels.map(channel => ({
|
2022-02-04 01:39:20 +02:00
|
|
|
type: 'link' as const,
|
2022-01-16 08:02:15 +02:00
|
|
|
text: channel.name,
|
|
|
|
indicate: channel.hasUnreadNote,
|
|
|
|
to: `/channels/${channel.id}`,
|
|
|
|
}));
|
2022-01-28 04:53:12 +02:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
2023-09-19 04:58:42 +03:00
|
|
|
function saveSrc(newSrc: 'home' | 'local' | 'social' | 'global' | `list:${string}`): void {
|
|
|
|
let userList = null;
|
|
|
|
if (newSrc.startsWith('userList:')) {
|
|
|
|
const id = newSrc.substring('userList:'.length);
|
|
|
|
userList = defaultStore.reactiveState.pinnedUserLists.value.find(l => l.id === id);
|
|
|
|
}
|
2022-01-16 08:02:15 +02:00
|
|
|
defaultStore.set('tl', {
|
2022-02-04 01:39:20 +02:00
|
|
|
src: newSrc,
|
2023-09-19 04:58:42 +03:00
|
|
|
userList,
|
2022-01-16 08:02:15 +02:00
|
|
|
});
|
2023-02-05 07:02:54 +02:00
|
|
|
srcWhenNotSignin = newSrc;
|
2022-01-16 08:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function timetravel(): Promise<void> {
|
|
|
|
const { canceled, result: date } = await os.inputDate({
|
2022-01-28 04:39:49 +02:00
|
|
|
title: i18n.ts.date,
|
2022-01-16 08:02:15 +02:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
tlComponent.timetravel(date);
|
|
|
|
}
|
|
|
|
|
|
|
|
function focus(): void {
|
|
|
|
tlComponent.focus();
|
|
|
|
}
|
|
|
|
|
2023-11-03 08:35:07 +02:00
|
|
|
function closeTutorial(): void {
|
|
|
|
if (!['home', 'local', 'social', 'global'].includes(src)) return;
|
|
|
|
const before = defaultStore.state.timelineTutorials;
|
|
|
|
before[src] = true;
|
|
|
|
defaultStore.set('timelineTutorials', before);
|
|
|
|
}
|
|
|
|
|
2023-10-31 10:26:59 +02:00
|
|
|
const headerActions = $computed(() => {
|
|
|
|
const tmp = [
|
|
|
|
{
|
|
|
|
icon: 'ti ti-dots',
|
|
|
|
text: i18n.ts.options,
|
|
|
|
handler: (ev) => {
|
|
|
|
os.popupMenu([{
|
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.showRenotes,
|
|
|
|
icon: 'ti ti-repeat',
|
|
|
|
ref: $$(withRenotes),
|
|
|
|
}, src === 'local' || src === 'social' ? {
|
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.showRepliesToOthersInTimeline,
|
|
|
|
ref: $$(withReplies),
|
|
|
|
} : undefined, {
|
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.fileAttachedOnly,
|
|
|
|
icon: 'ti ti-photo',
|
|
|
|
ref: $$(onlyFiles),
|
|
|
|
}], ev.currentTarget ?? ev.target);
|
|
|
|
},
|
2023-10-30 02:12:20 +02:00
|
|
|
},
|
2023-10-31 10:26:59 +02:00
|
|
|
];
|
|
|
|
if (deviceKind === 'desktop') {
|
|
|
|
tmp.unshift({
|
|
|
|
icon: 'ti ti-refresh',
|
|
|
|
text: i18n.ts.reload,
|
|
|
|
handler: (ev: Event) => {
|
|
|
|
console.log('called');
|
|
|
|
tlComponent.reloadTimeline();
|
|
|
|
},
|
|
|
|
});
|
2023-10-30 02:12:20 +02:00
|
|
|
}
|
2023-10-31 10:26:59 +02:00
|
|
|
return tmp;
|
|
|
|
});
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-09-19 04:58:42 +03:00
|
|
|
const headerTabs = $computed(() => [...(defaultStore.reactiveState.pinnedUserLists.value.map(l => ({
|
|
|
|
key: 'list:' + l.id,
|
|
|
|
title: l.name,
|
|
|
|
icon: 'ti ti-star',
|
|
|
|
iconOnly: true,
|
|
|
|
}))), {
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'home',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts._timelines.home,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-home',
|
2022-06-20 11:38:49 +03:00
|
|
|
iconOnly: true,
|
|
|
|
}, ...(isLocalTimelineAvailable ? [{
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'local',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts._timelines.local,
|
2022-12-31 13:40:47 +02:00
|
|
|
icon: 'ti ti-planet',
|
2022-06-20 11:38:49 +03:00
|
|
|
iconOnly: true,
|
|
|
|
}, {
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'social',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts._timelines.social,
|
2023-09-29 09:14:18 +03:00
|
|
|
icon: 'ti ti-universe',
|
2022-06-20 11:38:49 +03:00
|
|
|
iconOnly: true,
|
|
|
|
}] : []), ...(isGlobalTimelineAvailable ? [{
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'global',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts._timelines.global,
|
2022-12-31 13:40:47 +02:00
|
|
|
icon: 'ti ti-whirl',
|
2022-06-20 11:38:49 +03:00
|
|
|
iconOnly: true,
|
2022-06-21 08:12:39 +03:00
|
|
|
}] : []), {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-list',
|
2022-06-21 08:12:39 +03:00
|
|
|
title: i18n.ts.lists,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseList,
|
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-antenna',
|
2022-06-21 08:12:39 +03:00
|
|
|
title: i18n.ts.antennas,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseAntenna,
|
|
|
|
}, {
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-device-tv',
|
2022-06-21 08:12:39 +03:00
|
|
|
title: i18n.ts.channel,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseChannel,
|
2023-02-11 09:04:45 +02:00
|
|
|
}] as Tab[]);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-02-05 07:02:54 +02: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 09:04:45 +02:00
|
|
|
] as Tab[]);
|
2023-02-05 07:02:54 +02:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.timeline,
|
2023-09-29 09:14:18 +03:00
|
|
|
icon: src === 'local' ? 'ti ti-planet' : src === 'social' ? 'ti ti-universe' : src === 'global' ? 'ti ti-whirl' : 'ti ti-home',
|
2022-06-20 11:38:49 +03:00
|
|
|
})));
|
2020-01-29 21:37:25 +02:00
|
|
|
</script>
|
|
|
|
|
2023-01-10 03:35:02 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.new {
|
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 16px);
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
2023-02-11 03:36:14 +02:00
|
|
|
margin: calc(-0.675em - 8px) 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: calc(-0.675em - 8px - var(--margin));
|
|
|
|
}
|
2023-05-19 10:25:48 +03:00
|
|
|
}
|
2023-01-10 03:35:02 +02:00
|
|
|
|
2023-05-19 10:25:48 +03:00
|
|
|
.newButton {
|
|
|
|
display: block;
|
|
|
|
margin: var(--margin) auto 0 auto;
|
|
|
|
padding: 8px 16px;
|
|
|
|
border-radius: 32px;
|
2023-01-10 03:35:02 +02:00
|
|
|
}
|
2020-02-18 21:08:35 +02:00
|
|
|
|
2023-01-10 03:35:02 +02:00
|
|
|
.postForm {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
2021-10-14 12:51:15 +03:00
|
|
|
|
2023-01-10 03:35:02 +02:00
|
|
|
.tl {
|
|
|
|
background: var(--bg);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
|
|
|
</style>
|