2023-02-14 04:40:31 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<Transition :name="$store.state.animation ? '_transition_zoom' : ''" mode="out-in">
|
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
<div v-else :class="$style.root" class="_panel">
|
2023-02-15 21:45:41 +01:00
|
|
|
<MkA v-for="user in moderators" :key="user.id" class="user" :to="`/user-info/${user.id}`">
|
|
|
|
<MkAvatar :user="user" class="avatar" indicator/>
|
|
|
|
</MkA>
|
2023-02-14 04:40:31 +01:00
|
|
|
</div>
|
|
|
|
</Transition>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, onUnmounted, ref } from 'vue';
|
|
|
|
import * as os from '@/os';
|
2023-02-15 21:45:41 +01:00
|
|
|
import number from '@/filters/number';
|
|
|
|
import { i18n } from '@/i18n';
|
2023-02-14 04:40:31 +01:00
|
|
|
|
|
|
|
let moderators: any = $ref(null);
|
|
|
|
let fetching = $ref(true);
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
moderators = await os.api('admin/show-users', {
|
2023-02-14 05:21:42 +01:00
|
|
|
sort: '+updatedAt',
|
2023-02-14 04:40:31 +01:00
|
|
|
state: 'adminOrModerator',
|
|
|
|
limit: 30,
|
|
|
|
});
|
|
|
|
|
|
|
|
fetching = false;
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(30px, 40px));
|
|
|
|
grid-gap: 12px;
|
|
|
|
place-content: center;
|
|
|
|
padding: 12px;
|
2023-02-15 21:45:41 +01:00
|
|
|
|
|
|
|
&:global {
|
|
|
|
> .user {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
aspect-ratio: 1;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-02-14 04:40:31 +01:00
|
|
|
}
|
|
|
|
</style>
|