2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader/></template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="800">
|
2023-01-03 04:37:32 +00:00
|
|
|
<MkPagination :pagination="pagination">
|
2022-06-20 08:38:49 +00:00
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
2023-06-09 05:00:53 +00:00
|
|
|
<img :src="infoImageUrl" 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 }">
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkDateSeparatedList v-slot="{ item }" :items="items" :direction="'down'" :noGap="false" :ad="false">
|
2023-03-31 05:14:30 +00:00
|
|
|
<MkNote :key="item.id" :note="item.note" :class="$style.note"/>
|
2023-01-09 20:31:02 +00:00
|
|
|
</MkDateSeparatedList>
|
2022-06-20 08:38:49 +00:00
|
|
|
</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-09-06 09:21:49 +00:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2023-03-31 05:14:30 +00:00
|
|
|
import MkNote from '@/components/MkNote.vue';
|
2023-01-09 20:31:02 +00:00
|
|
|
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { infoImageUrl } from '@/instance.js';
|
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
|
|
|
};
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.favorites,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-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>
|