56 lines
1.3 KiB
Vue
56 lines
1.3 KiB
Vue
<template>
|
|
<MkSpacer :content-max="800">
|
|
<MkPagination ref="pagingComponent" :pagination="pagination">
|
|
<template #empty>
|
|
<div class="_fullinfo">
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
|
<div>{{ $ts.noNotes }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template #default="{ items }">
|
|
<XList v-slot="{ item }" :items="items" :direction="'down'" :no-gap="false" :ad="false">
|
|
<XNote :key="item.id" :note="item.note" :class="$style.note" @update:note="noteUpdated(item, $event)"/>
|
|
</XList>
|
|
</template>
|
|
</MkPagination>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
import XNote from '@/components/note.vue';
|
|
import XList from '@/components/date-separated-list.vue';
|
|
import * as symbols from '@/symbols';
|
|
import { i18n } from '@/i18n';
|
|
|
|
const pagination = {
|
|
endpoint: 'i/favorites' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
|
|
|
|
const noteUpdated = (item, note) => {
|
|
pagingComponent.value?.updateItem(item.id, old => ({
|
|
...old,
|
|
note: note,
|
|
}));
|
|
};
|
|
|
|
defineExpose({
|
|
[symbols.PAGE_INFO]: {
|
|
title: i18n.locale.favorites,
|
|
icon: 'fas fa-star',
|
|
bg: 'var(--bg)',
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.note {
|
|
background: var(--panel);
|
|
border-radius: var(--radius);
|
|
}
|
|
</style> |