mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 08:36:27 +01:00
56 lines
1.2 KiB
Vue
56 lines
1.2 KiB
Vue
|
<template>
|
||
|
<div :class="$style.root">
|
||
|
<MkLoading v-if="fetching"/>
|
||
|
<transition-group v-else tag="div" :name="$store.state.animation ? 'chart' : ''" class="users">
|
||
|
<MkA v-for="(user, i) in newUsers" :key="user.id" :to="`/user-info/${user.id}`" class="user">
|
||
|
<MkUserCardMini :user="user"/>
|
||
|
</MkA>
|
||
|
</transition-group>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { onMounted, onUnmounted, ref } from 'vue';
|
||
|
import * as os from '@/os';
|
||
|
import { useInterval } from '@/scripts/use-interval';
|
||
|
import MkUserCardMini from '@/components/MkUserCardMini.vue';
|
||
|
|
||
|
let newUsers = $ref(null);
|
||
|
let fetching = $ref(true);
|
||
|
|
||
|
const fetch = async () => {
|
||
|
const _newUsers = await os.api('admin/show-users', {
|
||
|
limit: 5,
|
||
|
sort: '+createdAt',
|
||
|
origin: 'local',
|
||
|
});
|
||
|
newUsers = _newUsers;
|
||
|
fetching = false;
|
||
|
};
|
||
|
|
||
|
useInterval(fetch, 1000 * 60, {
|
||
|
immediate: true,
|
||
|
afterMounted: true,
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" module>
|
||
|
.root {
|
||
|
&:global {
|
||
|
> .users {
|
||
|
.chart-move {
|
||
|
transition: transform 1s ease;
|
||
|
}
|
||
|
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
|
||
|
grid-gap: 12px;
|
||
|
|
||
|
> .user:hover {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|