2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00: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"/>
|
2022-07-20 13:24:26 +00:00
|
|
|
<div>{{ i18n.ts.noNotes }}</div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-01-09 15:45:20 +00:00
|
|
|
|
2022-06-20 08:38:49 +00: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 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 07:29:08 +00:00
|
|
|
<script lang="ts" setup>
|
2022-01-09 15:45:20 +00:00
|
|
|
import { ref } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XNote from '@/components/MkNote.vue';
|
|
|
|
import XList from '@/components/MkDateSeparatedList.vue';
|
2022-01-07 07:29:08 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-07 07:29:08 +00:00
|
|
|
const pagination = {
|
2022-01-09 15:45:20 +00:00
|
|
|
endpoint: 'i/favorites' as const,
|
2022-01-07 07:29:08 +00:00
|
|
|
limit: 10,
|
2022-01-09 15:45:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.favorites,
|
|
|
|
icon: 'fas fa-star',
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
2022-01-09 15:45:20 +00:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.note {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
2022-01-14 01:25:51 +00:00
|
|
|
</style>
|