2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-04-09 22:40:50 -05:00
|
|
|
<div>
|
2020-03-28 05:33:11 -05:00
|
|
|
<div class="_fullinfo" v-if="empty">
|
2020-03-23 05:06:46 -05:00
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
2020-12-25 19:47:36 -06:00
|
|
|
<div>{{ $ts.noNotes }}</div>
|
2020-02-08 03:35:42 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2021-04-16 09:19:39 -05:00
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
<MkError v-if="error" @retry="init()"/>
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-05-30 22:53:06 -05:00
|
|
|
<div v-show="more && reversed" style="margin-bottom: var(--margin);">
|
2021-02-20 22:34:00 -06:00
|
|
|
<MkButton style="margin: 0 auto;" @click="fetchMoreFeature" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
|
2020-12-25 19:47:36 -06:00
|
|
|
<template v-if="!moreFetching">{{ $ts.loadMore }}</template>
|
2020-10-17 06:12:00 -05:00
|
|
|
<template v-if="moreFetching"><MkLoading inline/></template>
|
2021-02-20 06:02:59 -06:00
|
|
|
</MkButton>
|
2020-02-16 07:15:49 -06:00
|
|
|
</div>
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
<XList ref="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed">
|
2021-04-12 22:43:19 -05:00
|
|
|
<XNote :note="note" class="_block" @update:note="updated(note, $event)" :key="note._featuredId_ || note._prId_ || note.id"/>
|
2020-10-17 06:12:00 -05:00
|
|
|
</XList>
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-05-30 22:53:06 -05:00
|
|
|
<div v-show="more && !reversed" style="margin-top: var(--margin);">
|
2021-02-20 22:34:00 -06:00
|
|
|
<MkButton style="margin: 0 auto;" v-appear="$store.state.enableInfiniteScroll ? fetchMore : null" @click="fetchMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
|
2020-12-25 19:47:36 -06:00
|
|
|
<template v-if="!moreFetching">{{ $ts.loadMore }}</template>
|
2020-10-17 06:12:00 -05:00
|
|
|
<template v-if="moreFetching"><MkLoading inline/></template>
|
2021-02-20 06:02:59 -06:00
|
|
|
</MkButton>
|
2020-02-16 07:15:49 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import paging from '@client/scripts/paging';
|
2020-01-29 13:37:25 -06:00
|
|
|
import XNote from './note.vue';
|
|
|
|
import XList from './date-separated-list.vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
components: {
|
2021-02-20 06:02:59 -06:00
|
|
|
XNote, XList, MkButton,
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [
|
|
|
|
paging({
|
|
|
|
before: (self) => {
|
|
|
|
self.$emit('before');
|
|
|
|
},
|
|
|
|
|
|
|
|
after: (self, e) => {
|
|
|
|
self.$emit('after', e);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
|
|
|
|
props: {
|
|
|
|
pagination: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
|
2020-07-27 09:25:37 -05:00
|
|
|
prop: {
|
|
|
|
type: String,
|
2020-01-29 13:37:25 -06:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
emits: ['before', 'after'],
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
computed: {
|
|
|
|
notes(): any[] {
|
2020-07-27 09:25:37 -05:00
|
|
|
return this.prop ? this.items.map(item => item[this.prop]) : this.items;
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
2020-02-16 07:15:49 -06:00
|
|
|
|
|
|
|
reversed(): boolean {
|
|
|
|
return this.pagination.reversed;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2020-07-27 09:25:37 -05:00
|
|
|
updated(oldValue, newValue) {
|
|
|
|
const i = this.notes.findIndex(n => n === oldValue);
|
|
|
|
if (this.prop) {
|
2020-10-17 06:12:00 -05:00
|
|
|
this.items[i][this.prop] = newValue;
|
2020-07-27 09:25:37 -05:00
|
|
|
} else {
|
2020-10-17 06:12:00 -05:00
|
|
|
this.items[i] = newValue;
|
2020-07-27 09:25:37 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
focus() {
|
|
|
|
this.$refs.notes.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|