31 lines
849 B
Vue
31 lines
849 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkPagination :paginator="paginator">
|
|
<template #empty><MkResult type="empty"/></template>
|
|
|
|
<template #default="{ items }">
|
|
<MkChannelPreview v-for="item in items" :key="item.id" class="_margin" :channel="extractor(item)"/>
|
|
</template>
|
|
</MkPagination>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import * as Misskey from 'misskey-js';
|
|
import type { IPaginator } from '@/utility/paginator.js';
|
|
import MkChannelPreview from '@/components/MkChannelPreview.vue';
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
paginator: IPaginator;
|
|
noGap?: boolean;
|
|
extractor?: (item: any) => Misskey.entities.Channel;
|
|
}>(), {
|
|
extractor: (item) => item,
|
|
});
|
|
</script>
|