2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
2024-02-13 15:59:27 +00:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
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">
|
2024-01-18 09:21:33 +00:00
|
|
|
<MkHorizontalSwipe v-model:tab="src" :tabs="$i ? headerTabs : headerTabsWhenNotLogin">
|
2024-02-16 06:39:48 +00:00
|
|
|
<div :key="src" ref="rootEl" v-hotkey.global="keymap">
|
2024-01-18 09:21:33 +00: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>
|
|
|
|
<MkPostForm v-if="defaultStore.reactiveState.showFixedPostForm.value" :class="$style.postForm" class="post-form _panel" fixed style="margin-bottom: var(--margin);"/>
|
|
|
|
<div v-if="queue > 0" :class="$style.new"><button class="_buttonPrimary" :class="$style.newButton" @click="top()">{{ i18n.ts.newNoteRecived }}</button></div>
|
|
|
|
<div :class="$style.tl">
|
|
|
|
<MkTimeline
|
|
|
|
ref="tlComponent"
|
|
|
|
:key="src + withRenotes + withReplies + onlyFiles"
|
|
|
|
:src="src.split(':')[0]"
|
|
|
|
:list="src.split(':')[1]"
|
|
|
|
:withRenotes="withRenotes"
|
|
|
|
:withReplies="withReplies"
|
|
|
|
:onlyFiles="onlyFiles"
|
2024-01-21 12:11:23 +00:00
|
|
|
:withBots="withBots"
|
2024-01-18 09:21:33 +00:00
|
|
|
:sound="true"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2024-01-18 09:21:33 +00:00
|
|
|
</MkHorizontalSwipe>
|
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-12-07 05:42:09 +00:00
|
|
|
import { computed, watch, provide, shallowRef, ref } 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-11-03 06:35:07 +00:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2023-02-09 01:35:28 +00:00
|
|
|
import MkPostForm from '@/components/MkPostForm.vue';
|
2024-01-18 09:21:33 +00:00
|
|
|
import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { scroll } from '@/scripts/scroll.js';
|
|
|
|
import * as os from '@/os.js';
|
2024-01-04 09:32:46 +00:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
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';
|
2023-10-13 07:42:57 +00:00
|
|
|
import { antennasCache, userListsCache } from '@/cache.js';
|
2023-10-30 00:12:20 +00:00
|
|
|
import { deviceKind } from '@/scripts/device-kind.js';
|
2024-02-16 06:39:48 +00:00
|
|
|
import { deepMerge } from '@/scripts/merge.js';
|
2023-12-12 03:19:49 +00:00
|
|
|
import { MenuItem } from '@/types/menu.js';
|
2023-12-22 11:41:42 +00:00
|
|
|
import { miLocalStorage } from '@/local-storage.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-02-11 04:08:18 +00:00
|
|
|
provide('shouldOmitHeaderTitle', true);
|
|
|
|
|
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);
|
2023-12-04 01:10:51 +00:00
|
|
|
const isBubbleTimelineAvailable = ($i == null && instance.policies.btlAvailable) || ($i != null && $i.policies.btlAvailable);
|
2022-01-16 06:02:15 +00:00
|
|
|
const keymap = {
|
|
|
|
't': focus,
|
|
|
|
};
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const tlComponent = shallowRef<InstanceType<typeof MkTimeline>>();
|
|
|
|
const rootEl = shallowRef<HTMLElement>();
|
2022-01-16 06:02:15 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const queue = ref(0);
|
2024-02-16 06:39:48 +00:00
|
|
|
const srcWhenNotSignin = ref<'local' | 'global'>(isLocalTimelineAvailable ? 'local' : 'global');
|
2024-02-19 09:47:42 +00:00
|
|
|
const src = computed<'home' | 'local' | 'social' | 'global' | 'bubble' | `list:${string}`>({
|
2024-01-21 09:29:17 +00:00
|
|
|
get: () => ($i ? defaultStore.reactiveState.tl.value.src : srcWhenNotSignin.value),
|
|
|
|
set: (x) => saveSrc(x),
|
|
|
|
});
|
2024-02-16 06:39:48 +00:00
|
|
|
const withRenotes = computed<boolean>({
|
2024-01-22 00:20:56 +00:00
|
|
|
get: () => defaultStore.reactiveState.tl.value.filter.withRenotes,
|
2024-02-16 06:39:48 +00:00
|
|
|
set: (x) => saveTlFilter('withRenotes', x),
|
2024-01-21 09:29:17 +00:00
|
|
|
});
|
2024-02-16 06:39:48 +00:00
|
|
|
|
|
|
|
// computed内での無限ループを防ぐためのフラグ
|
|
|
|
const localSocialTLFilterSwitchStore = ref<'withReplies' | 'onlyFiles' | false>('withReplies');
|
|
|
|
|
|
|
|
const withReplies = computed<boolean>({
|
2024-01-21 09:29:17 +00:00
|
|
|
get: () => {
|
|
|
|
if (!$i) return false;
|
2024-02-16 06:39:48 +00:00
|
|
|
if (['local', 'social'].includes(src.value) && localSocialTLFilterSwitchStore.value === 'onlyFiles') {
|
2024-01-21 09:29:17 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2024-01-22 00:20:56 +00:00
|
|
|
return defaultStore.reactiveState.tl.value.filter.withReplies;
|
2024-01-21 09:29:17 +00:00
|
|
|
}
|
|
|
|
},
|
2024-02-16 06:39:48 +00:00
|
|
|
set: (x) => saveTlFilter('withReplies', x),
|
2024-01-21 09:29:17 +00:00
|
|
|
});
|
2024-02-19 09:47:42 +00:00
|
|
|
const withBots = computed<boolean>({
|
2024-01-21 12:11:23 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
get: () => (defaultStore.reactiveState.tl.value.filter?.withBots ?? saveTlFilter('withBots', true)),
|
|
|
|
set: (x) => saveTlFilter('withBots', x),
|
|
|
|
});
|
2024-02-16 06:39:48 +00:00
|
|
|
const onlyFiles = computed<boolean>({
|
2024-01-21 09:29:17 +00:00
|
|
|
get: () => {
|
2024-02-16 06:39:48 +00:00
|
|
|
if (['local', 'social'].includes(src.value) && localSocialTLFilterSwitchStore.value === 'withReplies') {
|
2024-01-21 09:29:17 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2024-01-22 00:20:56 +00:00
|
|
|
return defaultStore.reactiveState.tl.value.filter.onlyFiles;
|
2024-01-21 09:29:17 +00:00
|
|
|
}
|
|
|
|
},
|
2024-02-16 06:39:48 +00:00
|
|
|
set: (x) => saveTlFilter('onlyFiles', x),
|
2024-01-21 09:29:17 +00:00
|
|
|
});
|
2022-02-03 23:39:20 +00:00
|
|
|
|
2024-02-16 06:39:48 +00:00
|
|
|
watch([withReplies, onlyFiles], ([withRepliesTo, onlyFilesTo]) => {
|
|
|
|
if (withRepliesTo) {
|
|
|
|
localSocialTLFilterSwitchStore.value = 'withReplies';
|
|
|
|
} else if (onlyFilesTo) {
|
|
|
|
localSocialTLFilterSwitchStore.value = 'onlyFiles';
|
|
|
|
} else {
|
|
|
|
localSocialTLFilterSwitchStore.value = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const withSensitive = computed<boolean>({
|
|
|
|
get: () => defaultStore.reactiveState.tl.value.filter.withSensitive,
|
|
|
|
set: (x) => saveTlFilter('withSensitive', x),
|
2024-01-18 09:21:33 +00:00
|
|
|
});
|
2022-01-16 06:02:15 +00:00
|
|
|
|
2024-01-21 09:29:17 +00:00
|
|
|
watch(src, () => {
|
|
|
|
queue.value = 0;
|
2023-10-13 07:49:56 +00:00
|
|
|
});
|
|
|
|
|
2024-02-16 06:39:48 +00:00
|
|
|
watch(withSensitive, () => {
|
|
|
|
// これだけはクライアント側で完結する処理なので手動でリロード
|
|
|
|
tlComponent.value?.reloadTimeline();
|
|
|
|
});
|
|
|
|
|
2022-01-16 06:02:15 +00:00
|
|
|
function queueUpdated(q: number): void {
|
2023-12-07 05:42:09 +00:00
|
|
|
queue.value = q;
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function top(): void {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (rootEl.value) scroll(rootEl.value, { top: 0 });
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function chooseList(ev: MouseEvent): Promise<void> {
|
2023-09-11 05:55:18 +00:00
|
|
|
const lists = await userListsCache.fetch();
|
2023-12-12 03:19:49 +00:00
|
|
|
const items: MenuItem[] = [
|
|
|
|
...lists.map(list => ({
|
|
|
|
type: 'link' as const,
|
|
|
|
text: list.name,
|
|
|
|
to: `/timeline/list/${list.id}`,
|
|
|
|
})),
|
|
|
|
(lists.length === 0 ? undefined : { type: 'divider' }),
|
|
|
|
{
|
|
|
|
type: 'link' as const,
|
2023-12-31 21:26:19 +00:00
|
|
|
icon: 'ph-plus ph-bold ph-lg',
|
2023-12-12 03:19:49 +00:00
|
|
|
text: i18n.ts.createNew,
|
|
|
|
to: '/my/lists',
|
|
|
|
},
|
|
|
|
];
|
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> {
|
2023-09-11 05:55:18 +00:00
|
|
|
const antennas = await antennasCache.fetch();
|
2023-12-12 03:19:49 +00:00
|
|
|
const items: MenuItem[] = [
|
|
|
|
...antennas.map(antenna => ({
|
|
|
|
type: 'link' as const,
|
|
|
|
text: antenna.name,
|
|
|
|
indicate: antenna.hasUnreadNote,
|
|
|
|
to: `/timeline/antenna/${antenna.id}`,
|
|
|
|
})),
|
|
|
|
(antennas.length === 0 ? undefined : { type: 'divider' }),
|
|
|
|
{
|
|
|
|
type: 'link' as const,
|
2023-12-31 21:26:19 +00:00
|
|
|
icon: 'ph-plus ph-bold ph-lg',
|
2023-12-12 03:19:49 +00:00
|
|
|
text: i18n.ts.createNew,
|
|
|
|
to: '/my/antennas',
|
|
|
|
},
|
|
|
|
];
|
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> {
|
2024-01-04 09:32:46 +00:00
|
|
|
const channels = await misskeyApi('channels/my-favorites', {
|
2023-02-17 05:59:11 +00:00
|
|
|
limit: 100,
|
|
|
|
});
|
2023-12-13 22:18:29 +00:00
|
|
|
const items: MenuItem[] = [
|
2023-12-22 11:41:42 +00:00
|
|
|
...channels.map(channel => {
|
|
|
|
const lastReadedAt = miLocalStorage.getItemAsJson(`channelLastReadedAt:${channel.id}`) ?? null;
|
|
|
|
const hasUnreadNote = (lastReadedAt && channel.lastNotedAt) ? Date.parse(channel.lastNotedAt) > lastReadedAt : !!(!lastReadedAt && channel.lastNotedAt);
|
|
|
|
|
|
|
|
return {
|
|
|
|
type: 'link' as const,
|
|
|
|
text: channel.name,
|
|
|
|
indicate: hasUnreadNote,
|
|
|
|
to: `/channels/${channel.id}`,
|
|
|
|
};
|
|
|
|
}),
|
2023-12-13 22:18:29 +00:00
|
|
|
(channels.length === 0 ? undefined : { type: 'divider' }),
|
2023-12-12 03:19:49 +00:00
|
|
|
{
|
|
|
|
type: 'link' as const,
|
2023-12-31 21:26:19 +00:00
|
|
|
icon: 'ph-plus ph-bold ph-lg',
|
2023-12-12 03:19:49 +00:00
|
|
|
text: i18n.ts.createNew,
|
|
|
|
to: '/channels',
|
|
|
|
},
|
|
|
|
];
|
2022-01-28 02:53:12 +00:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
2023-12-23 01:09:23 +00:00
|
|
|
function saveSrc(newSrc: 'home' | 'local' | 'social' | 'global' | 'bubble' | `list:${string}`): void {
|
2024-02-16 06:39:48 +00:00
|
|
|
const out = deepMerge({ src: newSrc }, defaultStore.state.tl);
|
2024-01-21 09:29:17 +00:00
|
|
|
|
2023-09-19 01:58:42 +00:00
|
|
|
if (newSrc.startsWith('userList:')) {
|
|
|
|
const id = newSrc.substring('userList:'.length);
|
2024-01-21 09:29:17 +00:00
|
|
|
out.userList = defaultStore.reactiveState.pinnedUserLists.value.find(l => l.id === id) ?? null;
|
2023-09-19 01:58:42 +00:00
|
|
|
}
|
2024-01-21 09:29:17 +00:00
|
|
|
|
|
|
|
defaultStore.set('tl', out);
|
2024-02-16 06:39:48 +00:00
|
|
|
if (['local', 'global'].includes(newSrc)) {
|
|
|
|
srcWhenNotSignin.value = newSrc as 'local' | 'global';
|
|
|
|
}
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
2024-01-21 09:29:17 +00:00
|
|
|
function saveTlFilter(key: keyof typeof defaultStore.state.tl.filter, newValue: boolean) {
|
|
|
|
if (key !== 'withReplies' || $i) {
|
2024-02-16 06:39:48 +00:00
|
|
|
const out = deepMerge({ filter: { [key]: newValue } }, defaultStore.state.tl);
|
2024-01-21 09:29:17 +00:00
|
|
|
defaultStore.set('tl', out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
tlComponent.value.timetravel(date);
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function focus(): void {
|
2023-12-07 05:42:09 +00:00
|
|
|
tlComponent.value.focus();
|
2022-01-16 06:02:15 +00:00
|
|
|
}
|
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
function closeTutorial(): void {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (!['home', 'local', 'social', 'global'].includes(src.value)) return;
|
2023-11-03 06:35:07 +00:00
|
|
|
const before = defaultStore.state.timelineTutorials;
|
2023-12-07 05:42:09 +00:00
|
|
|
before[src.value] = true;
|
2023-11-03 06:35:07 +00:00
|
|
|
defaultStore.set('timelineTutorials', before);
|
|
|
|
}
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => {
|
2023-10-31 08:26:59 +00:00
|
|
|
const tmp = [
|
|
|
|
{
|
2023-10-31 18:33:24 +00:00
|
|
|
icon: 'ph-dots-three ph-bold ph-lg',
|
2023-10-31 08:26:59 +00:00
|
|
|
text: i18n.ts.options,
|
|
|
|
handler: (ev) => {
|
|
|
|
os.popupMenu([{
|
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.showRenotes,
|
2023-12-07 05:42:09 +00:00
|
|
|
ref: withRenotes,
|
|
|
|
}, src.value === 'local' || src.value === 'social' ? {
|
2023-10-31 08:26:59 +00:00
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.showRepliesToOthersInTimeline,
|
2023-12-07 05:42:09 +00:00
|
|
|
ref: withReplies,
|
|
|
|
disabled: onlyFiles,
|
2023-10-31 08:26:59 +00:00
|
|
|
} : undefined, {
|
2024-01-21 09:29:17 +00:00
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.withSensitive,
|
|
|
|
ref: withSensitive,
|
|
|
|
}, {
|
2023-10-31 08:26:59 +00:00
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.fileAttachedOnly,
|
2023-12-07 05:42:09 +00:00
|
|
|
ref: onlyFiles,
|
|
|
|
disabled: src.value === 'local' || src.value === 'social' ? withReplies : false,
|
2023-10-31 08:26:59 +00:00
|
|
|
}], ev.currentTarget ?? ev.target);
|
|
|
|
},
|
2023-10-30 00:12:20 +00:00
|
|
|
},
|
2023-10-31 08:26:59 +00:00
|
|
|
];
|
|
|
|
if (deviceKind === 'desktop') {
|
|
|
|
tmp.unshift({
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-arrows-counter-clockwise ph-bold ph-lg',
|
2023-10-31 08:26:59 +00:00
|
|
|
text: i18n.ts.reload,
|
|
|
|
handler: (ev: Event) => {
|
2024-01-21 09:29:17 +00:00
|
|
|
tlComponent.value?.reloadTimeline();
|
2023-10-31 08:26:59 +00:00
|
|
|
},
|
|
|
|
});
|
2023-10-30 00:12:20 +00:00
|
|
|
}
|
2023-10-31 08:26:59 +00:00
|
|
|
return tmp;
|
|
|
|
});
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerTabs = computed(() => [...(defaultStore.reactiveState.pinnedUserLists.value.map(l => ({
|
2023-09-19 01:58:42 +00:00
|
|
|
key: 'list:' + l.id,
|
|
|
|
title: l.name,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-star ph-bold ph-lg',
|
2023-09-19 01:58:42 +00:00
|
|
|
iconOnly: true,
|
|
|
|
}))), {
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'home',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts._timelines.home,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-house ph-bold ph-lg',
|
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,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-planet ph-bold ph-lg',
|
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,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-rocket-launch ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
iconOnly: true,
|
2023-12-04 01:10:51 +00:00
|
|
|
}] : []), ...(isBubbleTimelineAvailable ? [{
|
|
|
|
key: 'bubble',
|
|
|
|
title: 'Bubble',
|
|
|
|
icon: 'ph-drop ph-bold ph-lg',
|
|
|
|
iconOnly: true,
|
2022-06-20 08:38:49 +00:00
|
|
|
}] : []), ...(isGlobalTimelineAvailable ? [{
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'global',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts._timelines.global,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
iconOnly: true,
|
2022-06-21 05:12:39 +00:00
|
|
|
}] : []), {
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-list ph-bold ph-lg',
|
2022-06-21 05:12:39 +00:00
|
|
|
title: i18n.ts.lists,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseList,
|
|
|
|
}, {
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-flying-saucer ph-bold ph-lg',
|
2022-06-21 05:12:39 +00:00
|
|
|
title: i18n.ts.antennas,
|
|
|
|
iconOnly: true,
|
|
|
|
onClick: chooseAntenna,
|
|
|
|
}, {
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-television ph-bold ph-lg',
|
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-12-07 05:42:09 +00:00
|
|
|
const headerTabsWhenNotLogin = computed(() => [
|
2023-02-05 05:02:54 +00:00
|
|
|
...(isLocalTimelineAvailable ? [{
|
|
|
|
key: 'local',
|
|
|
|
title: i18n.ts._timelines.local,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-planet ph-bold ph-lg',
|
2023-02-05 05:02:54 +00:00
|
|
|
iconOnly: true,
|
|
|
|
}] : []),
|
|
|
|
...(isGlobalTimelineAvailable ? [{
|
|
|
|
key: 'global',
|
|
|
|
title: i18n.ts._timelines.global,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
|
2023-02-05 05:02:54 +00:00
|
|
|
iconOnly: true,
|
|
|
|
}] : []),
|
2023-02-11 07:04:45 +00:00
|
|
|
] as Tab[]);
|
2023-02-05 05:02:54 +00:00
|
|
|
|
2024-02-16 07:17:09 +00:00
|
|
|
definePageMetadata(() => ({
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.timeline,
|
2023-12-23 01:09:23 +00:00
|
|
|
icon: src.value === 'local' ? 'ph-planet ph-bold ph-lg' : src.value === 'social' ? 'ph-rocket-launch ph-bold ph-lg' : src.value === 'global' ? 'ph-globe-hemisphere-west ph-bold ph-lg' : src.value === 'bubble' ? 'ph-drop ph-bold ph-lg' : 'ph-house ph-bold ph-lg',
|
2024-02-16 07:17:09 +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;
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-xl);
|
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>
|