mirror of
https://github.com/kokonect-link/cherrypick
synced 2025-01-09 19:34:00 +09:00
335 lines
12 KiB
Vue
335 lines
12 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey, cherrypick contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header>
|
|
<CPPageHeader v-if="isMobile && defaultStore.state.mobileHeaderChange" v-model:tab="src" style="position: relative; z-index: 1001" :tabs="$i ? headerTabs : headerTabsWhenNotLogin" :displayMyAvatar="true"/>
|
|
<MkPageHeader v-else-if="isMobile || !isFriendly" v-model:tab="src" style="position: relative; z-index: 1001" :tabs="$i ? headerTabs : headerTabsWhenNotLogin" :displayMyAvatar="true"/>
|
|
<MkPageHeader v-else v-model:tab="src" style="position: relative; z-index: 1001" :actions="headerActions" :tabs="$i ? headerTabs : headerTabsWhenNotLogin" :displayMyAvatar="true"/>
|
|
</template>
|
|
<MkSpacer :contentMax="800">
|
|
<div ref="rootEl" v-hotkey.global="keymap">
|
|
<XTutorial v-if="$i && defaultStore.reactiveState.timelineTutorial.value != -1" class="_panel" style="margin-bottom: var(--margin);"/>
|
|
<MkPostForm v-if="defaultStore.reactiveState.showFixedPostForm.value" :class="$style.postForm" class="post-form _panel" fixed style="margin-bottom: var(--margin);" :autofocus="false"/>
|
|
|
|
<transition
|
|
:enterActiveClass="defaultStore.state.animation ? $style.transition_new_enterActive : ''"
|
|
:leaveActiveClass="defaultStore.state.animation ? $style.transition_new_leaveActive : ''"
|
|
:enterFromClass="defaultStore.state.animation ? $style.transition_new_enterFrom : ''"
|
|
:leaveToClass="defaultStore.state.animation ? $style.transition_new_leaveTo : ''"
|
|
>
|
|
<div v-if="queue > 0 && defaultStore.state.newNoteReceivedNotificationBehavior === 'default'" :class="[$style.new, { [$style.showEl]: (showEl && ['hideHeaderOnly', 'hideHeaderFloatBtn', 'hide'].includes(<string>defaultStore.state.displayHeaderNavBarWhenScroll)) && isMobile && !isFriendly, [$style.showElTab]: (showEl && ['hideHeaderOnly', 'hideHeaderFloatBtn', 'hide'].includes(<string>defaultStore.state.displayHeaderNavBarWhenScroll)) && isMobile && isFriendly, [$style.reduceAnimation]: !defaultStore.state.animation }]"><button class="_buttonPrimary" :class="$style.newButton" @click="top()"><i class="ti ti-arrow-up"></i>{{ i18n.ts.newNoteRecived }}</button></div>
|
|
</transition>
|
|
<transition
|
|
:enterActiveClass="defaultStore.state.animation ? $style.transition_new_enterActive : ''"
|
|
:leaveActiveClass="defaultStore.state.animation ? $style.transition_new_leaveActive : ''"
|
|
:enterFromClass="defaultStore.state.animation ? $style.transition_new_enterFrom : ''"
|
|
:leaveToClass="defaultStore.state.animation ? $style.transition_new_leaveTo : ''"
|
|
>
|
|
<div v-if="queue > 0 && defaultStore.state.newNoteReceivedNotificationBehavior === 'count'" :class="[$style.new, { [$style.showEl]: (showEl && ['hideHeaderOnly', 'hideHeaderFloatBtn', 'hide'].includes(<string>defaultStore.state.displayHeaderNavBarWhenScroll)) && isMobile && !isFriendly, [$style.showElTab]: (showEl && ['hideHeaderOnly', 'hideHeaderFloatBtn', 'hide'].includes(<string>defaultStore.state.displayHeaderNavBarWhenScroll)) && isMobile && isFriendly, [$style.reduceAnimation]: !defaultStore.state.animation }]"><button class="_buttonPrimary" :class="$style.newButton" @click="top()"><i class="ti ti-arrow-up"></i><I18n :src="i18n.ts.newNoteRecivedCount" textTag="span"><template #n>{{ queue }}</template></I18n></button></div>
|
|
</transition>
|
|
<div :class="$style.tl">
|
|
<MkTimeline
|
|
ref="tlComponent"
|
|
:key="src"
|
|
:src="src.split(':')[0]"
|
|
:list="src.split(':')[1]"
|
|
:sound="true"
|
|
@queue="queueUpdated"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent, computed, watch, ref, provide, onMounted } from 'vue';
|
|
import type { Tab } from '@/components/global/MkPageHeader.tabs.vue';
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
|
import MkPostForm from '@/components/MkPostForm.vue';
|
|
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';
|
|
import { antennasCache, userListsCache } from '@/cache.js';
|
|
import { globalEvents } from '@/events.js';
|
|
import { deviceKind } from '@/scripts/device-kind.js';
|
|
import { unisonReload } from '@/scripts/unison-reload.js';
|
|
|
|
let showEl = $ref(false);
|
|
const isFriendly = ref(miLocalStorage.getItem('ui') === 'friendly');
|
|
|
|
if (!isFriendly.value && !defaultStore.state.mobileHeaderChange) provide('shouldOmitHeaderTitle', true);
|
|
|
|
const MOBILE_THRESHOLD = 500;
|
|
|
|
const isMobile = ref(deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD);
|
|
window.addEventListener('resize', () => {
|
|
isMobile.value = deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD;
|
|
});
|
|
|
|
const XTutorial = defineAsyncComponent(() => import('./timeline.tutorial.vue'));
|
|
|
|
const isLocalTimelineAvailable = ($i == null && instance.policies.ltlAvailable) || ($i != null && $i.policies.ltlAvailable);
|
|
const isGlobalTimelineAvailable = ($i == null && instance.policies.gtlAvailable) || ($i != null && $i.policies.gtlAvailable);
|
|
const isMediaTimelineAvailable = ($i == null && instance.policies.mtlAvailable) || ($i != null && $i.policies.mtlAvailable);
|
|
const isCatTimelineAvailable = ($i == null && instance.policies.ctlAvailable) || ($i != null && $i.policies.ctlAvailable);
|
|
const keymap = {
|
|
't': focus,
|
|
};
|
|
|
|
const tlComponent = $shallowRef<InstanceType<typeof MkTimeline>>();
|
|
const rootEl = $shallowRef<HTMLElement>();
|
|
|
|
let queue = $ref(0);
|
|
let srcWhenNotSignin = $ref(isLocalTimelineAvailable ? 'local' : 'global');
|
|
const src = $computed({ get: () => ($i ? defaultStore.reactiveState.tl.value.src : srcWhenNotSignin), set: (x) => saveSrc(x) });
|
|
|
|
watch($$(src), () => {
|
|
queue = 0;
|
|
queueUpdated(queue);
|
|
});
|
|
|
|
onMounted(() => {
|
|
globalEvents.on('showEl', (showEl_receive) => {
|
|
showEl = showEl_receive;
|
|
});
|
|
});
|
|
|
|
function queueUpdated(q: number): void {
|
|
queue = q;
|
|
globalEvents.emit('queueUpdated', q);
|
|
}
|
|
|
|
function top(): void {
|
|
if (rootEl) scroll(rootEl, { top: 0 });
|
|
}
|
|
|
|
async function chooseList(ev: MouseEvent): Promise<void> {
|
|
const lists = await userListsCache.fetch();
|
|
const items = lists.map(list => ({
|
|
type: 'link' as const,
|
|
text: list.name,
|
|
to: `/timeline/list/${list.id}`,
|
|
}));
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
|
}
|
|
|
|
async function chooseAntenna(ev: MouseEvent): Promise<void> {
|
|
const antennas = await antennasCache.fetch();
|
|
const items = antennas.map(antenna => ({
|
|
type: 'link' as const,
|
|
text: antenna.name,
|
|
indicate: antenna.hasUnreadNote,
|
|
to: `/timeline/antenna/${antenna.id}`,
|
|
}));
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
|
}
|
|
|
|
async function chooseChannel(ev: MouseEvent): Promise<void> {
|
|
const channels = await os.api('channels/my-favorites', {
|
|
limit: 100,
|
|
});
|
|
const items = channels.map(channel => ({
|
|
type: 'link' as const,
|
|
text: channel.name,
|
|
indicate: channel.hasUnreadNote,
|
|
to: `/channels/${channel.id}`,
|
|
}));
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
|
}
|
|
|
|
function saveSrc(newSrc: 'home' | 'local' | 'media' | 'social' | 'cat' | '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);
|
|
}
|
|
defaultStore.set('tl', {
|
|
src: newSrc,
|
|
userList,
|
|
});
|
|
srcWhenNotSignin = newSrc;
|
|
}
|
|
|
|
async function timetravel(): Promise<void> {
|
|
const { canceled, result: date } = await os.inputDate({
|
|
title: i18n.ts.date,
|
|
});
|
|
if (canceled) return;
|
|
|
|
tlComponent.timetravel(date);
|
|
}
|
|
|
|
function focus(): void {
|
|
tlComponent.focus();
|
|
}
|
|
|
|
async function reloadAsk() {
|
|
if (defaultStore.state.requireRefreshBehavior === 'dialog') {
|
|
const { canceled } = await os.confirm({
|
|
type: 'info',
|
|
text: i18n.ts.reloadToApplySetting,
|
|
});
|
|
if (canceled) return;
|
|
|
|
unisonReload();
|
|
} else globalEvents.emit('hasRequireRefresh', true);
|
|
}
|
|
|
|
const headerActions = $computed(() => [{
|
|
icon: friendlyEnableNotifications.value ? 'ti ti-notification' : 'ti ti-notification-off',
|
|
text: friendlyEnableNotifications.value ? i18n.ts.friendlyEnableNotifications : i18n.ts.friendlyDisableNotifications,
|
|
handler: () => {
|
|
friendlyEnableNotifications.value = !friendlyEnableNotifications.value;
|
|
reloadAsk();
|
|
},
|
|
}, {
|
|
icon: friendlyEnableWidgets.value ? 'ti ti-apps' : 'ti ti-apps-off',
|
|
text: friendlyEnableWidgets.value ? i18n.ts.friendlyEnableWidgets : i18n.ts.friendlyDisableWidgets,
|
|
handler: () => {
|
|
friendlyEnableWidgets.value = !friendlyEnableWidgets.value;
|
|
reloadAsk();
|
|
},
|
|
}]);
|
|
|
|
const friendlyEnableNotifications = computed(defaultStore.makeGetterSetter('friendlyEnableNotifications'));
|
|
const friendlyEnableWidgets = computed(defaultStore.makeGetterSetter('friendlyEnableWidgets'));
|
|
|
|
const headerTabs = $computed(() => [...(defaultStore.reactiveState.pinnedUserLists.value.map(l => ({
|
|
key: 'list:' + l.id,
|
|
title: l.name,
|
|
icon: 'ti ti-star',
|
|
iconOnly: true,
|
|
}))), ...(defaultStore.state.enableHomeTimeline ? [{
|
|
key: 'home',
|
|
title: i18n.ts._timelines.home,
|
|
icon: 'ti ti-home',
|
|
iconOnly: true,
|
|
}] : []), ...(isLocalTimelineAvailable && defaultStore.state.enableLocalTimeline ? [{
|
|
key: 'local',
|
|
title: i18n.ts._timelines.local,
|
|
icon: 'ti ti-planet',
|
|
iconOnly: true,
|
|
}, ...(isMediaTimelineAvailable && defaultStore.state.enableMediaTimeline ? [{
|
|
key: 'media',
|
|
title: i18n.ts._timelines.media,
|
|
icon: 'ti ti-photo',
|
|
iconOnly: true,
|
|
}] : []), ...(defaultStore.state.enableSocialTimeline ? [{
|
|
key: 'social',
|
|
title: i18n.ts._timelines.social,
|
|
icon: 'ti ti-rocket',
|
|
iconOnly: true,
|
|
}] : []), ...(isCatTimelineAvailable && defaultStore.state.enableCatTimeline ? [{
|
|
key: 'cat',
|
|
title: i18n.ts._timelines.cat,
|
|
icon: 'ti ti-cat',
|
|
iconOnly: true,
|
|
}] : [])] : []), ...(isGlobalTimelineAvailable && defaultStore.state.enableGlobalTimeline ? [{
|
|
key: 'global',
|
|
title: i18n.ts._timelines.global,
|
|
icon: 'ti ti-world',
|
|
iconOnly: true,
|
|
}] : []), ...(defaultStore.state.enableListTimeline ? [{
|
|
icon: 'ti ti-list',
|
|
title: i18n.ts.lists,
|
|
iconOnly: true,
|
|
onClick: chooseList,
|
|
}] : []), ...(defaultStore.state.enableAntennaTimeline ? [{
|
|
icon: 'ti ti-antenna',
|
|
title: i18n.ts.antennas,
|
|
iconOnly: true,
|
|
onClick: chooseAntenna,
|
|
}] : []), ...(defaultStore.state.enableChannelTimeline ? [{
|
|
icon: 'ti ti-device-tv',
|
|
title: i18n.ts.channel,
|
|
iconOnly: true,
|
|
onClick: chooseChannel,
|
|
}] : [])] as Tab[]);
|
|
|
|
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-world',
|
|
iconOnly: true,
|
|
}] : []),
|
|
] as Tab[]);
|
|
|
|
definePageMetadata(computed(() => ({
|
|
title: i18n.ts.timeline,
|
|
icon: src === 'local' ? 'ti ti-planet' : src === 'media' ? 'ti ti-photo' : src === 'social' ? 'ti ti-rocket' : src === 'cat' ? 'ti ti-cat' : src === 'global' ? 'ti ti-world' : 'ti ti-home',
|
|
})));
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.transition_new_enterActive,
|
|
.transition_new_leaveActive {
|
|
transform: translateY(-64px);
|
|
}
|
|
.transition_new_enterFrom,
|
|
.transition_new_leaveTo {
|
|
}
|
|
|
|
.new {
|
|
position: sticky;
|
|
top: calc(var(--stickyTop, 0px) + 8px);
|
|
z-index: 1000;
|
|
width: 100%;
|
|
margin: calc(-0.675em - 8px) 0;
|
|
transition: opacity 0.5s, transform 0.5s;
|
|
|
|
&:first-child {
|
|
margin-top: calc(-0.675em - 8px - var(--margin));
|
|
}
|
|
|
|
&.showEl {
|
|
transform: translateY(calc(var(--stickyTop, 0px) - 101px))
|
|
}
|
|
|
|
&.showElTab {
|
|
transform: translateY(calc(var(--stickyTop, 0px) - 181px))
|
|
}
|
|
|
|
&.reduceAnimation {
|
|
transition: opacity 0s, transform 0s;
|
|
}
|
|
}
|
|
|
|
.newButton {
|
|
display: block;
|
|
margin: var(--margin) auto 0 auto;
|
|
padding: 8px 16px;
|
|
border-radius: 32px;
|
|
|
|
> i {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
.postForm {
|
|
border-radius: var(--radius);
|
|
}
|
|
|
|
.tl {
|
|
background: var(--bg);
|
|
border-radius: var(--radius);
|
|
overflow: clip;
|
|
}
|
|
</style>
|