2021-09-21 07:04:59 -05:00
|
|
|
<template>
|
|
|
|
<div class="eqqrhokj" v-hotkey.global="keymap" v-size="{ min: [800] }">
|
|
|
|
<div class="new" v-if="queue > 0"><button class="_buttonPrimary" @click="top()">{{ $ts.newNoteRecived }}</button></div>
|
|
|
|
<div class="tl _block">
|
|
|
|
<XTimeline ref="tl" class="tl"
|
|
|
|
:key="listId"
|
|
|
|
src="list"
|
|
|
|
:list="listId"
|
|
|
|
:sound="true"
|
|
|
|
@before="before()"
|
|
|
|
@after="after()"
|
|
|
|
@queue="queueUpdated"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent, defineAsyncComponent, computed } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import Progress from '@/scripts/loading';
|
|
|
|
import XTimeline from '@/components/timeline.vue';
|
|
|
|
import { scroll } from '@/scripts/scroll';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2021-09-21 07:04:59 -05:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
XTimeline,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
listId: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
list: null,
|
|
|
|
queue: 0,
|
|
|
|
[symbols.PAGE_INFO]: computed(() => this.list ? {
|
|
|
|
title: this.list.name,
|
|
|
|
icon: 'fas fa-list-ul',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
actions: [{
|
|
|
|
icon: 'fas fa-calendar-alt',
|
|
|
|
text: this.$ts.jumpToSpecifiedDate,
|
|
|
|
handler: this.timetravel
|
|
|
|
}, {
|
|
|
|
icon: 'fas fa-cog',
|
|
|
|
text: this.$ts.settings,
|
|
|
|
handler: this.settings
|
|
|
|
}],
|
|
|
|
} : null),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
keymap(): any {
|
|
|
|
return {
|
|
|
|
't': this.focus
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
listId: {
|
|
|
|
async handler() {
|
|
|
|
this.list = await os.api('users/lists/show', {
|
|
|
|
listId: this.listId
|
|
|
|
});
|
|
|
|
},
|
|
|
|
immediate: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
before() {
|
|
|
|
Progress.start();
|
|
|
|
},
|
|
|
|
|
|
|
|
after() {
|
|
|
|
Progress.done();
|
|
|
|
},
|
|
|
|
|
|
|
|
queueUpdated(q) {
|
|
|
|
this.queue = q;
|
|
|
|
},
|
|
|
|
|
|
|
|
top() {
|
2021-10-08 22:33:08 -05:00
|
|
|
scroll(this.$el, { top: 0 });
|
2021-09-21 07:04:59 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
settings() {
|
|
|
|
this.$router.push(`/my/lists/${this.listId}`);
|
|
|
|
},
|
|
|
|
|
|
|
|
async timetravel() {
|
2021-11-18 03:45:58 -06:00
|
|
|
const { canceled, result: date } = await os.inputDate({
|
2021-09-21 07:04:59 -05:00
|
|
|
title: this.$ts.date,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
2021-11-18 03:45:58 -06:00
|
|
|
this.$refs.tl.timetravel(date);
|
2021-09-21 07:04:59 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
(this.$refs.tl as any).focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</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>
|