2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-01-03 05:37:32 +01:00
|
|
|
<MkPagination :pagination="pagination">
|
2022-01-09 13:35:35 +01:00
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
2023-06-09 07:00:53 +02:00
|
|
|
<img :src="infoImageUrl" class="_ghost"/>
|
2022-07-20 15:24:26 +02:00
|
|
|
<div>{{ i18n.ts.noUsers }}</div>
|
2022-01-09 13:35:35 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-02-22 06:43:18 +01:00
|
|
|
<template #default="{ items }">
|
2023-05-08 03:32:08 +02:00
|
|
|
<div :class="$style.root">
|
2023-02-22 06:43:18 +01:00
|
|
|
<MkUserInfo v-for="item in items" :key="item.id" class="user" :user="extractor(item)"/>
|
2022-01-09 13:35:35 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</MkPagination>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
<script lang="ts" setup>
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkUserInfo from '@/components/MkUserInfo.vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkPagination, { Paging } from '@/components/MkPagination.vue';
|
2022-07-20 15:24:26 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2023-06-09 07:00:53 +02:00
|
|
|
import { infoImageUrl } from '@/instance';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-22 06:43:18 +01:00
|
|
|
const props = withDefaults(defineProps<{
|
2022-01-09 13:35:35 +01:00
|
|
|
pagination: Paging;
|
|
|
|
noGap?: boolean;
|
2023-02-22 06:43:18 +01:00
|
|
|
extractor?: (item: any) => any;
|
|
|
|
}>(), {
|
|
|
|
extractor: (item) => item,
|
|
|
|
});
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
2023-05-08 03:32:08 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2022-01-09 13:35:35 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: var(--margin);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
</style>
|