forked from mirrors/misskey
* wip * wip * wip * wip * wip * Update MkResult.vue * Add storybook story for MkResult (#15964) * Update MkResult.vue --------- Co-authored-by: taichan <40626578+tai-cha@users.noreply.github.com>
46 lines
1.1 KiB
Vue
46 lines
1.1 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<PageWithHeader>
|
|
<div class="_spacer" style="--MI_SPACER-w: 800px;">
|
|
<MkPagination :pagination="pagination">
|
|
<template #empty><MkResult type="empty" :text="i18n.ts.noNotes"/></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>
|
|
</div>
|
|
</PageWithHeader>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
import MkNote from '@/components/MkNote.vue';
|
|
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePage } from '@/page.js';
|
|
|
|
const pagination = {
|
|
endpoint: 'i/favorites' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
definePage(() => ({
|
|
title: i18n.ts.favorites,
|
|
icon: 'ti ti-star',
|
|
}));
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.note {
|
|
background: var(--MI_THEME-panel);
|
|
border-radius: var(--MI-radius);
|
|
}
|
|
</style>
|