2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2020-07-04 06:38:39 -05:00
|
|
|
<div class="mk-notes">
|
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-07-24 11:56:52 -05:00
|
|
|
<div>{{ $t('noNotes') }}</div>
|
2020-02-08 03:35:42 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
<mk-error v-if="error" @retry="init()"/>
|
|
|
|
|
2020-05-30 22:53:06 -05:00
|
|
|
<div v-show="more && reversed" style="margin-bottom: var(--margin);">
|
|
|
|
<button class="_panel _button" ref="loadMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
|
2020-07-24 11:56:52 -05:00
|
|
|
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
|
2020-02-16 07:15:49 -06:00
|
|
|
<template v-if="moreFetching"><mk-loading inline/></template>
|
2020-03-20 22:32:40 -05:00
|
|
|
</button>
|
2020-02-16 07:15:49 -06:00
|
|
|
</div>
|
|
|
|
|
2020-07-04 07:07:45 -05:00
|
|
|
<x-list ref="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed">
|
2020-07-27 09:25:37 -05:00
|
|
|
<x-note :note="note" @updated="updated(note, $event)" :detail="detail" :key="note._featuredId_ || note._prId_ || note.id"/>
|
2020-01-29 13:37:25 -06:00
|
|
|
</x-list>
|
|
|
|
|
2020-05-30 22:53:06 -05:00
|
|
|
<div v-show="more && !reversed" style="margin-top: var(--margin);">
|
|
|
|
<button class="_panel _button" ref="loadMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
|
2020-07-24 11:56:52 -05:00
|
|
|
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
|
2020-02-11 11:52:37 -06:00
|
|
|
<template v-if="moreFetching"><mk-loading inline/></template>
|
2020-03-20 22:32:40 -05:00
|
|
|
</button>
|
2020-02-16 07:15:49 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import paging from '../scripts/paging';
|
|
|
|
import XNote from './note.vue';
|
|
|
|
import XList from './date-separated-list.vue';
|
2020-02-11 11:52:37 -06:00
|
|
|
import MkButton from './ui/button.vue';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
2020-02-11 11:52:37 -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
|
|
|
|
},
|
|
|
|
|
|
|
|
detail: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
|
2020-07-27 09:25:37 -05:00
|
|
|
prop: {
|
|
|
|
type: String,
|
2020-01-29 13:37:25 -06:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
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) {
|
|
|
|
Vue.set(this.items[i], this.prop, newValue);
|
|
|
|
} else {
|
|
|
|
Vue.set(this.items, i, newValue);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
focus() {
|
|
|
|
this.$refs.notes.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|