2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader/></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>
|
2022-01-09 16:45:20 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<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"/>
|
|
|
|
</XList>
|
|
|
|
</template>
|
|
|
|
</MkPagination>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 08:29:08 +01:00
|
|
|
<script lang="ts" setup>
|
2022-01-09 16:45:20 +01:00
|
|
|
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';
|
2022-01-07 08:29:08 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-07 08:29:08 +01:00
|
|
|
const pagination = {
|
2022-01-09 16:45:20 +01:00
|
|
|
endpoint: 'i/favorites' as const,
|
2022-01-07 08:29:08 +01:00
|
|
|
limit: 10,
|
2022-01-09 16:45:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.favorites,
|
|
|
|
icon: 'fas fa-star',
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
2022-01-09 16:45:20 +01:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.note {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
2022-01-14 02:25:51 +01:00
|
|
|
</style>
|