forked from didirus/AstralRinth
* Make images lazy and fix #198 * Fix console spam * Fix bug with bad pagination impl * Fixes #232 * Finalize more bug fixes * run lint * Improve minecraft sign in, improve onboarding * Linter * Added back button * Implement #530 * run linter * Address changes * Bump version + run fmt --------- Co-authored-by: Jai A <jaiagr+gpg@pm.me>
74 lines
1.9 KiB
Vue
74 lines
1.9 KiB
Vue
<script setup>
|
|
import { onUnmounted, ref, shallowRef } from 'vue'
|
|
import GridDisplay from '@/components/GridDisplay.vue'
|
|
import { list } from '@/helpers/profile.js'
|
|
import { useRoute } from 'vue-router'
|
|
import { useBreadcrumbs } from '@/store/breadcrumbs'
|
|
import { offline_listener, profile_listener } from '@/helpers/events.js'
|
|
import { handleError } from '@/store/notifications.js'
|
|
import { Button, PlusIcon } from 'omorphia'
|
|
import InstanceCreationModal from '@/components/ui/InstanceCreationModal.vue'
|
|
import { NewInstanceImage } from '@/assets/icons'
|
|
import { isOffline } from '@/helpers/utils'
|
|
|
|
const route = useRoute()
|
|
const breadcrumbs = useBreadcrumbs()
|
|
|
|
breadcrumbs.setRootContext({ name: 'Library', link: route.path })
|
|
|
|
const profiles = await list(true).catch(handleError)
|
|
const instances = shallowRef(Object.values(profiles))
|
|
|
|
const offline = ref(await isOffline())
|
|
const unlistenOffline = await offline_listener((b) => {
|
|
offline.value = b
|
|
})
|
|
|
|
const unlistenProfile = await profile_listener(async () => {
|
|
const profiles = await list(true).catch(handleError)
|
|
instances.value = Object.values(profiles)
|
|
})
|
|
onUnmounted(() => {
|
|
unlistenProfile()
|
|
unlistenOffline()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<GridDisplay v-if="instances.length > 0" label="Instances" :instances="instances" />
|
|
<div v-else class="no-instance">
|
|
<div class="icon">
|
|
<NewInstanceImage />
|
|
</div>
|
|
<h3>No instances found</h3>
|
|
<Button color="primary" :disabled="offline" @click="$refs.installationModal.show()">
|
|
<PlusIcon />
|
|
Create new instance
|
|
</Button>
|
|
<InstanceCreationModal ref="installationModal" />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.no-instance {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
gap: var(--gap-md);
|
|
|
|
p,
|
|
h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.icon {
|
|
svg {
|
|
width: 10rem;
|
|
height: 10rem;
|
|
}
|
|
}
|
|
}
|
|
</style>
|