2021-09-21 14:04:59 +02:00
|
|
|
<template>
|
2022-07-02 07:00:37 +02:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<div ref="rootEl" v-hotkey.global="keymap" v-size="{ min: [800] }" class="tqmomfks">
|
|
|
|
<div v-if="queue > 0" class="new"><button class="_buttonPrimary" @click="top()">{{ $ts.newNoteRecived }}</button></div>
|
|
|
|
<div class="tl _block">
|
|
|
|
<XTimeline
|
|
|
|
ref="tlEl" :key="antennaId"
|
|
|
|
class="tl"
|
|
|
|
src="antenna"
|
|
|
|
:antenna="antennaId"
|
|
|
|
:sound="true"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-09-21 14:04:59 +02:00
|
|
|
</div>
|
2022-07-02 07:00:37 +02:00
|
|
|
</MkStickyContainer>
|
2021-09-21 14:04:59 +02:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, inject, watch } from 'vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import XTimeline from '@/components/MkTimeline.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { scroll } from '@/scripts/scroll';
|
|
|
|
import * as os from '@/os';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { useRouter } from '@/router';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-07-03 09:36:23 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
antennaId: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
let antenna = $ref(null);
|
|
|
|
let queue = $ref(0);
|
|
|
|
let rootEl = $ref<HTMLElement>();
|
|
|
|
let tlEl = $ref<InstanceType<typeof XTimeline>>();
|
|
|
|
const keymap = $computed(() => ({
|
|
|
|
't': focus,
|
|
|
|
}));
|
|
|
|
|
|
|
|
function queueUpdated(q) {
|
|
|
|
queue = q;
|
|
|
|
}
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function top() {
|
|
|
|
scroll(rootEl, { top: 0 });
|
|
|
|
}
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
async function timetravel() {
|
|
|
|
const { canceled, result: date } = await os.inputDate({
|
|
|
|
title: i18n.ts.date,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
tlEl.timetravel(date);
|
|
|
|
}
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function settings() {
|
|
|
|
router.push(`/my/antennas/${props.antennaId}`);
|
|
|
|
}
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function focus() {
|
|
|
|
tlEl.focus();
|
|
|
|
}
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
watch(() => props.antennaId, async () => {
|
|
|
|
antenna = await os.api('antennas/show', {
|
|
|
|
antennaId: props.antennaId,
|
|
|
|
});
|
|
|
|
}, { immediate: true });
|
|
|
|
|
2022-07-02 07:00:37 +02:00
|
|
|
const headerActions = $computed(() => antenna ? [{
|
|
|
|
icon: 'fas fa-calendar-alt',
|
|
|
|
text: i18n.ts.jumpToSpecifiedDate,
|
|
|
|
handler: timetravel,
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-cog',
|
|
|
|
text: i18n.ts.settings,
|
|
|
|
handler: settings,
|
|
|
|
}] : []);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => antenna ? {
|
|
|
|
title: antenna.name,
|
|
|
|
icon: 'fas fa-satellite',
|
|
|
|
} : null));
|
2021-09-21 14:04:59 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.tqmomfks {
|
|
|
|
padding: var(--margin);
|
|
|
|
|
|
|
|
> .new {
|
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 16px);
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
> button {
|
|
|
|
display: block;
|
|
|
|
margin: var(--margin) auto 0 auto;
|
|
|
|
padding: 8px 16px;
|
|
|
|
border-radius: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .tl {
|
|
|
|
background: var(--bg);
|
|
|
|
border-radius: var(--radius);
|
2022-07-13 14:41:06 +02:00
|
|
|
overflow: clip;
|
2021-09-21 14:04:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.min-width_800px {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|