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-02-16 14:09:41 +00:00
|
|
|
import { computed, watch } from 'vue';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { scroll } from '@/scripts/scroll';
|
|
|
|
import * as os from '@/os';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { useRouter } from '@/router';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-07-03 07:36:23 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
antennaId: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
let antenna = $ref(null);
|
|
|
|
let queue = $ref(0);
|
2023-01-03 01:12:37 +00:00
|
|
|
let rootEl = $shallowRef<HTMLElement>();
|
2023-02-22 02:00:34 +00:00
|
|
|
let tlEl = $shallowRef<InstanceType<typeof MkTimeline>>();
|
2022-06-20 08:38:49 +00:00
|
|
|
const keymap = $computed(() => ({
|
|
|
|
't': focus,
|
|
|
|
}));
|
|
|
|
|
|
|
|
function queueUpdated(q) {
|
|
|
|
queue = q;
|
|
|
|
}
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
function top() {
|
|
|
|
scroll(rootEl, { top: 0 });
|
|
|
|
}
|
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
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
tlEl.timetravel(date);
|
|
|
|
}
|
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() {
|
|
|
|
tlEl.focus();
|
|
|
|
}
|
2021-09-21 12:04:59 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
watch(() => props.antennaId, async () => {
|
|
|
|
antenna = await os.api('antennas/show', {
|
|
|
|
antennaId: props.antennaId,
|
|
|
|
});
|
|
|
|
}, { immediate: true });
|
|
|
|
|
2022-07-02 05:00:37 +00:00
|
|
|
const headerActions = $computed(() => antenna ? [{
|
2023-02-14 04:17:00 +00:00
|
|
|
icon: 'ti ti-calendar-time',
|
2022-07-02 05:00:37 +00:00
|
|
|
text: i18n.ts.jumpToSpecifiedDate,
|
|
|
|
handler: timetravel,
|
|
|
|
}, {
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-settings',
|
2022-07-02 05:00:37 +00:00
|
|
|
text: i18n.ts.settings,
|
|
|
|
handler: settings,
|
|
|
|
}] : []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => antenna ? {
|
|
|
|
title: antenna.name,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-antenna',
|
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;
|
|
|
|
border-radius: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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>
|