rudeshark.net/packages/client/src/components/MkChannelList.vue

44 lines
928 B
Vue
Raw Normal View History

<template>
2023-05-07 01:05:18 +02:00
<MkPagination :pagination="pagination">
<template #empty>
<div class="_fullinfo">
<img
src="/static-assets/badges/not-found.webp"
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";
2023-07-17 00:32:32 +02:00
import type { Paging } from "@/components/MkPagination.vue";
import MkPagination from "@/components/MkPagination.vue";
2023-05-07 01:05:18 +02:00
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>