2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-notes" v-size="[{ max: 500 }]">
|
2020-02-09 11:40:15 +01:00
|
|
|
<div class="empty" v-if="empty">
|
2020-02-08 10:35:42 +01:00
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" alt=""/>
|
|
|
|
<div>{{ $t('noNotes') }}</div>
|
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
<mk-error v-if="error" @retry="init()"/>
|
|
|
|
|
2020-02-09 14:00:45 +01:00
|
|
|
<x-list ref="notes" class="notes" :items="notes" v-slot="{ item: note }">
|
2020-02-06 06:23:01 +01:00
|
|
|
<x-note :note="note" :detail="detail" :key="note.id"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</x-list>
|
|
|
|
|
|
|
|
<footer v-if="more">
|
|
|
|
<button @click="fetchMore()" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" class="_buttonPrimary">
|
|
|
|
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
|
|
|
|
<template v-if="moreFetching"><fa :icon="faSpinner" pulse fixed-width/></template>
|
|
|
|
</button>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faSpinner } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import i18n from '../i18n';
|
|
|
|
import paging from '../scripts/paging';
|
|
|
|
import XNote from './note.vue';
|
|
|
|
import XList from './date-separated-list.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
i18n,
|
|
|
|
|
|
|
|
components: {
|
|
|
|
XNote, XList
|
|
|
|
},
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
faSpinner
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
notes(): any[] {
|
|
|
|
return this.extract ? this.extract(this.items) : this.items;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
focus() {
|
|
|
|
this.$refs.notes.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-notes {
|
|
|
|
> .empty {
|
|
|
|
padding: 32px;
|
|
|
|
text-align: center;
|
2020-02-08 10:35:42 +01:00
|
|
|
|
|
|
|
> img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
height: 128px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
border-radius: 16px;
|
2020-02-09 14:25:36 +01:00
|
|
|
pointer-events: none;
|
|
|
|
user-select: none;
|
2020-02-08 10:35:42 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .notes {
|
|
|
|
> ::v-deep * {
|
|
|
|
margin-bottom: var(--marginFull);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_500px {
|
|
|
|
> .notes {
|
|
|
|
> ::v-deep * {
|
|
|
|
margin-bottom: var(--marginHalf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
|
|
|
margin: 0;
|
|
|
|
padding: 16px;
|
|
|
|
width: 100%;
|
|
|
|
border-radius: var(--radius);
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|