2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-09-21 12:04:59 +00:00
|
|
|
<template>
|
2022-07-02 05:00:37 +00:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 07:25:48 +00:00
|
|
|
<MkSpacer :contentMax="800">
|
|
|
|
<div ref="rootEl" v-hotkey.global="keymap">
|
|
|
|
<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="tlEl" :key="antennaId"
|
|
|
|
src="antenna"
|
|
|
|
:antenna="antennaId"
|
|
|
|
:sound="true"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-07-02 05:00:37 +00:00
|
|
|
</div>
|
2023-05-19 07:25:48 +00:00
|
|
|
</MkSpacer>
|
2022-07-02 05:00:37 +00:00
|
|
|
</MkStickyContainer>
|
2021-09-21 12:04:59 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { computed, watch, ref, shallowRef } from 'vue';
|
2023-12-26 05:19:35 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { scroll } from '@/scripts/scroll.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { useRouter } from '@/router.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
antennaId: string;
|
|
|
|
}>();
|
|
|
|
|
2023-12-26 05:19:35 +00:00
|
|
|
const antenna = ref<Misskey.entities.Antenna | null>(null);
|
2023-12-07 05:42:09 +00:00
|
|
|
const queue = ref(0);
|
|
|
|
const rootEl = shallowRef<HTMLElement>();
|
|
|
|
const tlEl = shallowRef<InstanceType<typeof MkTimeline>>();
|
|
|
|
const keymap = computed(() => ({
|
2022-06-20 08:38:49 +00:00
|
|
|
't': focus,
|
|
|
|
}));
|
|
|
|
|
|
|
|
function queueUpdated(q) {
|
2023-12-07 05:42:09 +00:00
|
|
|
queue.value = q;
|
2022-06-20 08:38:49 +00:00
|
|
|
}
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
function top() {
|
2023-12-07 05:42:09 +00:00
|
|
|
scroll(rootEl.value, { top: 0 });
|
2022-06-20 08:38:49 +00:00
|
|
|
}
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
async function timetravel() {
|
|
|
|
const { canceled, result: date } = await os.inputDate({
|
|
|
|
title: i18n.ts.date,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
tlEl.value.timetravel(date);
|
2022-06-20 08:38:49 +00:00
|
|
|
}
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
function settings() {
|
|
|
|
router.push(`/my/antennas/${props.antennaId}`);
|
|
|
|
}
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
function focus() {
|
2023-12-07 05:42:09 +00:00
|
|
|
tlEl.value.focus();
|
2022-06-20 08:38:49 +00:00
|
|
|
}
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
watch(() => props.antennaId, async () => {
|
2023-12-07 05:42:09 +00:00
|
|
|
antenna.value = await os.api('antennas/show', {
|
2022-06-20 08:38:49 +00:00
|
|
|
antennaId: props.antennaId,
|
|
|
|
});
|
|
|
|
}, { immediate: true });
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => antenna.value ? [{
|
2023-09-30 22:46:42 +00:00
|
|
|
icon: 'ph-calendar ph-bold ph-lg',
|
2022-07-02 05:00:37 +00:00
|
|
|
text: i18n.ts.jumpToSpecifiedDate,
|
|
|
|
handler: timetravel,
|
|
|
|
}, {
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-gear ph-bold ph-lg',
|
2022-07-02 05:00:37 +00:00
|
|
|
text: i18n.ts.settings,
|
|
|
|
handler: settings,
|
|
|
|
}] : []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerTabs = computed(() => []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
definePageMetadata(computed(() => antenna.value ? {
|
|
|
|
title: antenna.value.name,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-flying-saucer ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
} : null));
|
2021-09-21 12:04:59 +00:00
|
|
|
</script>
|
|
|
|
|
2023-05-19 07:25:48 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.new {
|
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 16px);
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
margin: calc(-0.675em - 8px) 0;
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2023-05-19 07:25:48 +00:00
|
|
|
&:first-child {
|
|
|
|
margin-top: calc(-0.675em - 8px - var(--margin));
|
2021-09-21 12:04:59 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-25 23:40:13 +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-05-19 07:25:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tl {
|
|
|
|
background: var(--bg);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
2021-09-21 12:04:59 +00:00
|
|
|
</style>
|