2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2021-04-16 15:12:50 +00:00
|
|
|
<transition name="fade" mode="out-in">
|
2021-04-16 14:19:39 +00:00
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
|
2021-04-16 15:12:50 +00:00
|
|
|
<MkError v-else-if="error" @retry="init()"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2021-04-16 15:12:50 +00: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 13:15:49 +00:00
|
|
|
</div>
|
|
|
|
|
2021-08-16 06:21:58 +00:00
|
|
|
<div v-else class="giivymft" :class="{ noGap }">
|
2021-04-16 15:12:50 +00:00
|
|
|
<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-08-14 13:35:15 +00:00
|
|
|
<XList ref="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed" :no-gap="noGap" :ad="true" class="notes">
|
2021-08-16 06:21:58 +00:00
|
|
|
<XNote class="qtqtichx" :note="note" @update:note="updated(note, $event)" :key="note._featuredId_ || note._prId_ || note.id"/>
|
2021-04-16 15:12:50 +00:00
|
|
|
</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 13:15:49 +00:00
|
|
|
</div>
|
2021-04-16 15:12:50 +00:00
|
|
|
</transition>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-23 08:30:14 +00:00
|
|
|
import paging from '@client/scripts/paging';
|
2020-01-29 19:37:25 +00:00
|
|
|
import XNote from './note.vue';
|
|
|
|
import XList from './date-separated-list.vue';
|
2021-03-23 08:30:14 +00:00
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-01-29 19:37:25 +00:00
|
|
|
components: {
|
2021-02-20 12:02:59 +00:00
|
|
|
XNote, XList, MkButton,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [
|
|
|
|
paging({
|
|
|
|
before: (self) => {
|
|
|
|
self.$emit('before');
|
|
|
|
},
|
|
|
|
|
|
|
|
after: (self, e) => {
|
|
|
|
self.$emit('after', e);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
|
|
|
|
props: {
|
|
|
|
pagination: {
|
|
|
|
required: true
|
|
|
|
},
|
2020-07-27 14:25:37 +00:00
|
|
|
prop: {
|
|
|
|
type: String,
|
2020-01-29 19:37:25 +00:00
|
|
|
required: false
|
2021-04-16 15:12:50 +00:00
|
|
|
},
|
|
|
|
noGap: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
emits: ['before', 'after'],
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
computed: {
|
|
|
|
notes(): any[] {
|
2020-07-27 14:25:37 +00:00
|
|
|
return this.prop ? this.items.map(item => item[this.prop]) : this.items;
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2020-02-16 13:15:49 +00:00
|
|
|
|
|
|
|
reversed(): boolean {
|
|
|
|
return this.pagination.reversed;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2020-07-27 14:25:37 +00:00
|
|
|
updated(oldValue, newValue) {
|
|
|
|
const i = this.notes.findIndex(n => n === oldValue);
|
|
|
|
if (this.prop) {
|
2020-10-17 11:12:00 +00:00
|
|
|
this.items[i][this.prop] = newValue;
|
2020-07-27 14:25:37 +00:00
|
|
|
} else {
|
2020-10-17 11:12:00 +00:00
|
|
|
this.items[i] = newValue;
|
2020-07-27 14:25:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
focus() {
|
|
|
|
this.$refs.notes.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2021-04-16 15:12:50 +00:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.fade-enter-active,
|
|
|
|
.fade-leave-active {
|
|
|
|
transition: opacity 0.125s ease;
|
|
|
|
}
|
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2021-08-14 13:35:15 +00:00
|
|
|
|
|
|
|
.giivymft {
|
2021-08-16 06:21:58 +00:00
|
|
|
&.noGap {
|
|
|
|
> .notes {
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.noGap) {
|
|
|
|
> .notes {
|
2021-08-21 08:40:15 +00:00
|
|
|
background: var(--bg);
|
|
|
|
|
2021-08-16 06:21:58 +00:00
|
|
|
.qtqtichx {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
}
|
2021-08-14 13:35:15 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-16 15:12:50 +00:00
|
|
|
</style>
|