mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-01-05 16:24:17 +01:00
518de221c5
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/517 Approved-by: Marie <marie@kaifa.ch> Approved-by: Tess K <me@thvxl.se>
59 lines
1.6 KiB
Vue
59 lines
1.6 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader/></template>
|
|
<MkSpacer :contentMax="800">
|
|
<MkPagination :pagination="pagination">
|
|
<template #empty>
|
|
<div class="_fullinfo">
|
|
<img :src="infoImageUrl" class="_ghost"/>
|
|
<div>{{ i18n.ts.noNotes }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template #default="{ items }">
|
|
<MkDateSeparatedList v-slot="{ item }" :items="items" :direction="'down'" :noGap="false" :ad="false">
|
|
<MkNote :key="item.id" :note="item.note" :class="$style.note"/>
|
|
</MkDateSeparatedList>
|
|
</template>
|
|
</MkPagination>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
|
|
import { defineAsyncComponent } from 'vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { infoImageUrl } from '@/instance.js';
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
const MkNote = defineAsyncComponent(() =>
|
|
(defaultStore.state.noteDesign === 'misskey') ? import('@/components/MkNote.vue') :
|
|
(defaultStore.state.noteDesign === 'sharkey') ? import('@/components/SkNote.vue') :
|
|
null
|
|
);
|
|
|
|
const pagination = {
|
|
endpoint: 'i/favorites' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
definePageMetadata(() => ({
|
|
title: i18n.ts.favorites,
|
|
icon: 'ti ti-star',
|
|
}));
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.note {
|
|
background: var(--panel);
|
|
border-radius: var(--radius);
|
|
}
|
|
</style>
|