Sharkey/src/client/components/notes.vue

106 lines
2.3 KiB
Vue
Raw Normal View History

<template>
<div class="mk-notes" v-size="[{ max: 500 }]">
<div class="_fullinfo" v-if="empty">
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
2020-02-08 11:35:42 +02:00
<div>{{ $t('noNotes') }}</div>
</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' }">
2020-02-16 15:15:49 +02:00
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
<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>
<x-list ref="notes" class="notes" :items="notes" v-slot="{ item: note }" :direction="reversed ? 'up' : 'down'" :reversed="reversed">
2020-02-18 12:05:11 +02:00
<x-note :note="note" :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
},
extract: {
required: false
}
},
computed: {
notes(): any[] {
return this.extract ? this.extract(this.items) : this.items;
},
2020-02-16 15:15:49 +02:00
reversed(): boolean {
return this.pagination.reversed;
}
},
methods: {
focus() {
this.$refs.notes.focus();
}
}
});
</script>
<style lang="scss" scoped>
.mk-notes {
> .notes {
2020-02-16 15:15:49 +02:00
> ::v-deep *:not(:last-child) {
margin-bottom: var(--marginFull);
}
}
&.max-width_500px {
> .notes {
2020-02-16 15:15:49 +02:00
> ::v-deep *:not(:last-child) {
2020-03-20 11:11:39 +02:00
//margin-bottom: var(--marginHalf);
margin-bottom: 0;
}
}
}
}
</style>