2022-12-23 08:21:55 +02:00
|
|
|
<template>
|
2023-05-19 14:52:15 +03:00
|
|
|
<div>
|
2023-04-01 07:42:40 +03:00
|
|
|
<Transition :name="defaultStore.state.animation ? '_transition_zoom' : ''" mode="out-in">
|
2022-12-26 07:34:46 +02:00
|
|
|
<MkLoading v-if="fetching"/>
|
2023-05-19 14:52:15 +03:00
|
|
|
<div v-else :class="$style.instances">
|
|
|
|
<MkA v-for="(instance, i) in instances" :key="instance.id" v-tooltip.mfm.noDelay="`${instance.name}\n${instance.host}\n${instance.softwareName} ${instance.softwareVersion}`" :to="`/instance-info/${instance.host}`" :class="$style.instance">
|
2022-12-26 07:34:46 +02:00
|
|
|
<MkInstanceCardMini :instance="instance"/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
2022-12-30 06:37:14 +02:00
|
|
|
</Transition>
|
2022-12-23 08:21:55 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-02-16 16:09:41 +02:00
|
|
|
import { ref } from 'vue';
|
2022-12-23 08:21:55 +02:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { useInterval } from '@/scripts/use-interval';
|
|
|
|
import MkInstanceCardMini from '@/components/MkInstanceCardMini.vue';
|
2023-04-01 07:42:40 +03:00
|
|
|
import { defaultStore } from '@/store';
|
2022-12-23 08:21:55 +02:00
|
|
|
|
|
|
|
const instances = ref([]);
|
|
|
|
const fetching = ref(true);
|
|
|
|
|
|
|
|
const fetch = async () => {
|
|
|
|
const fetchedInstances = await os.api('federation/instances', {
|
2023-01-03 02:00:42 +02:00
|
|
|
sort: '+latestRequestReceivedAt',
|
2022-12-23 08:21:55 +02:00
|
|
|
limit: 6,
|
|
|
|
});
|
|
|
|
instances.value = fetchedInstances;
|
|
|
|
fetching.value = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
useInterval(fetch, 1000 * 60, {
|
|
|
|
immediate: true,
|
|
|
|
afterMounted: true,
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-19 14:52:15 +03:00
|
|
|
<style lang="scss" module>
|
|
|
|
.instances {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
}
|
2022-12-23 08:21:55 +02:00
|
|
|
|
2023-05-19 14:52:15 +03:00
|
|
|
.instance:hover {
|
|
|
|
text-decoration: none;
|
2022-12-23 08:21:55 +02:00
|
|
|
}
|
|
|
|
</style>
|