2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-04-16 10:12:50 -05:00
|
|
|
<transition name="fade" mode="out-in">
|
2021-04-16 09:19:39 -05:00
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
|
2021-04-16 10:12:50 -05:00
|
|
|
<MkError v-else-if="error" @retry="init()"/>
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2021-04-16 10:12:50 -05:00
|
|
|
<div class="_fullinfo" v-else-if="empty">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
|
|
|
<div>{{ $ts.noNotes }}</div>
|
2020-02-16 07:15:49 -06:00
|
|
|
</div>
|
|
|
|
|
2021-04-16 10:12:50 -05:00
|
|
|
<div v-else>
|
|
|
|
<div v-show="more && reversed" style="margin-bottom: var(--margin);">
|
|
|
|
<MkButton style="margin: 0 auto;" @click="fetchMoreFeature" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
|
|
|
|
<template v-if="!moreFetching">{{ $ts.loadMore }}</template>
|
|
|
|
<template v-if="moreFetching"><MkLoading inline/></template>
|
|
|
|
</MkButton>
|
|
|
|
</div>
|
|
|
|
|
2021-05-04 07:15:57 -05:00
|
|
|
<XList ref="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed" :no-gap="noGap" :ad="true">
|
2021-04-16 10:12:50 -05:00
|
|
|
<XNote :note="note" class="_block" @update:note="updated(note, $event)" :key="note._featuredId_ || note._prId_ || note.id"/>
|
|
|
|
</XList>
|
|
|
|
|
|
|
|
<div v-show="more && !reversed" style="margin-top: var(--margin);">
|
|
|
|
<MkButton style="margin: 0 auto;" v-appear="$store.state.enableInfiniteScroll ? fetchMore : null" @click="fetchMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
|
|
|
|
<template v-if="!moreFetching">{{ $ts.loadMore }}</template>
|
|
|
|
<template v-if="moreFetching"><MkLoading inline/></template>
|
|
|
|
</MkButton>
|
|
|
|
</div>
|
2020-02-16 07:15:49 -06:00
|
|
|
</div>
|
2021-04-16 10:12:50 -05:00
|
|
|
</transition>
|
2020-01-29 13:37:25 -06:00
|
|
|
</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
|
2021-04-16 10:12:50 -05:00
|
|
|
},
|
|
|
|
noGap: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
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>
|
2021-04-16 10:12:50 -05:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.fade-enter-active,
|
|
|
|
.fade-leave-active {
|
|
|
|
transition: opacity 0.125s ease;
|
|
|
|
}
|
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
</style>
|