Sharkey/src/client/components/notes.vue

98 lines
2.2 KiB
Vue
Raw Normal View History

<template>
2020-07-04 14:38:39 +03:00
<div class="mk-notes">
<div class="_fullinfo" v-if="empty">
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
<div>{{ $t('noNotes') }}</div>
2020-02-08 11:35:42 +02:00
</div>
<mk-error v-if="error" @retry="init()"/>
<div v-show="more && reversed" style="margin-bottom: var(--margin);">
<button class="_panel _button" ref="loadMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
2020-02-16 15:15:49 +02:00
<template v-if="moreFetching"><mk-loading inline/></template>
2020-03-21 05:32:40 +02:00
</button>
2020-02-16 15:15:49 +02:00
</div>
2020-07-04 15:07:45 +03:00
<x-list ref="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed">
<x-note :note="note" @updated="updated(note, $event)" :detail="detail" :key="note._featuredId_ || note._prId_ || note.id"/>
</x-list>
<div v-show="more && !reversed" style="margin-top: var(--margin);">
<button class="_panel _button" ref="loadMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
2020-02-11 19:52:37 +02:00
<template v-if="moreFetching"><mk-loading inline/></template>
2020-03-21 05:32:40 +02:00
</button>
2020-02-16 15:15:49 +02:00
</div>
</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 19:52:37 +02:00
import MkButton from './ui/button.vue';
export default Vue.extend({
components: {
2020-02-11 19:52:37 +02:00
XNote, XList, MkButton
},
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
},
prop: {
type: String,
required: false
}
},
computed: {
notes(): any[] {
return this.prop ? this.items.map(item => item[this.prop]) : this.items;
},
2020-02-16 15:15:49 +02:00
reversed(): boolean {
return this.pagination.reversed;
}
},
methods: {
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);
}
},
focus() {
this.$refs.notes.focus();
}
}
});
</script>