2021-09-21 14:04:59 +02:00
|
|
|
<template>
|
2022-06-21 07:12:39 +02:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<div ref="rootEl" v-size="{ min: [800] }" class="eqqrhokj">
|
|
|
|
<div v-if="queue > 0" class="new"><button class="_buttonPrimary" @click="top()">{{ $ts.newNoteRecived }}</button></div>
|
|
|
|
<div class="tl _block">
|
|
|
|
<XTimeline
|
|
|
|
ref="tlEl" :key="listId"
|
|
|
|
class="tl"
|
|
|
|
src="list"
|
|
|
|
:list="listId"
|
|
|
|
:sound="true"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-09-21 14:04:59 +02:00
|
|
|
</div>
|
2022-06-21 07:12:39 +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, watch, inject } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import XTimeline from '@/components/timeline.vue';
|
|
|
|
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';
|
|
|
|
import { i18n } from '@/i18n';
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const router = useRouter();
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
listId: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
let list = $ref(null);
|
|
|
|
let queue = $ref(0);
|
|
|
|
let tlEl = $ref<InstanceType<typeof XTimeline>>();
|
|
|
|
let rootEl = $ref<HTMLElement>();
|
2021-09-21 14:04:59 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
watch(() => props.listId, async () => {
|
|
|
|
list = await os.api('users/lists/show', {
|
|
|
|
listId: props.listId,
|
|
|
|
});
|
|
|
|
}, { immediate: true });
|
|
|
|
|
|
|
|
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
|
|
|
function settings() {
|
|
|
|
router.push(`/my/lists/${props.listId}`);
|
|
|
|
}
|
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-21 07:12:39 +02:00
|
|
|
const headerActions = $computed(() => list ? [{
|
|
|
|
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(() => list ? {
|
|
|
|
title: list.name,
|
|
|
|
icon: 'fas fa-list-ul',
|
|
|
|
} : null));
|
2021-09-21 14:04:59 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.eqqrhokj {
|
|
|
|
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);
|
|
|
|
overflow: clip;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.min-width_800px {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|