iceshrimp-legacy/packages/client/src/components/MkChannelList.vue

43 lines
878 B
Vue
Raw Normal View History

<template>
2023-05-07 01:05:18 +02:00
<MkPagination :pagination="pagination">
<template #empty>
<div class="_fullinfo">
<img
2023-05-07 21:48:28 +02:00
src="/static-assets/badges/not-found.png"
2023-05-07 01:05:18 +02:00
class="_ghost"
2023-05-07 02:43:11 +02:00
:alt="i18n.ts.notFound"
2023-05-07 01:05:18 +02:00
/>
<div>{{ i18n.ts.notFound }}</div>
</div>
</template>
2023-05-07 01:05:18 +02:00
<template #default="{ items }">
<MkChannelPreview
v-for="item in items"
:key="item.id"
class="_margin"
:channel="extractor(item)"
/>
</template>
</MkPagination>
</template>
<script lang="ts" setup>
2023-05-07 01:05:18 +02:00
import MkChannelPreview from "@/components/MkChannelPreview.vue";
import MkPagination, { Paging } from "@/components/MkPagination.vue";
import { i18n } from "@/i18n";
2023-05-07 01:05:18 +02:00
const props = withDefaults(
defineProps<{
pagination: Paging;
noGap?: boolean;
extractor?: (item: any) => any;
}>(),
{
extractor: (item) => item,
2023-07-06 03:28:27 +02:00
},
2023-05-07 01:05:18 +02:00
);
</script>
2023-05-07 01:05:18 +02:00
<style lang="scss" scoped></style>