You've already forked AstralRinth
forked from didirus/AstralRinth
* chore(pyroservers): attempt better error propogation Signed-off-by: Evan Song <theevansong@gmail.com> * chore(pyroservers): introduce deferred modules * fix(pyroservers): synchronize server icon processing Signed-off-by: Evan Song <theevansong@gmail.com> * refactor: server action buttons Signed-off-by: Evan Song <theevansong@gmail.com> * chore: bring back skeleton * fix(startup): populate values on refresh Signed-off-by: Evan Song <theevansong@gmail.com> * chore: properly refresh network Signed-off-by: Evan Song <theevansong@gmail.com> * fix: do not open backup settings modal if fetch failed * fix(platform): only clear selected loader version if selecting a different loader Signed-off-by: Evan Song <theevansong@gmail.com> * feat: parse links in console log * fix: attempt to mitigate power button state flash Signed-off-by: Evan Song <theevansong@gmail.com> * Revert "fix: attempt to mitigate power button state flash" This reverts commit 3ba5c0b4f7f5bacf1576aba5efe42785696a5aed. * refactor: error accumulation builder in PyroServersFetch Signed-off-by: Evan Song <theevansong@gmail.com> * fix: sentence case Signed-off-by: Evan Song <theevansong@gmail.com> * fix(files): await deferred fs Signed-off-by: Evan Song <theevansong@gmail.com> * fix: startup border Signed-off-by: Evan Song <theevansong@gmail.com> * fix: prevent suspended server errors from being overwritten Signed-off-by: Evan Song <theevansong@gmail.com> * fix: add server id copy button to suspended server listing Signed-off-by: Evan Song <theevansong@gmail.com> * fix: refresh behavior Signed-off-by: Evan Song <theevansong@gmail.com> * fix: behavior of server icon in options Signed-off-by: Evan Song <theevansong@gmail.com> * chore: clean Signed-off-by: Evan Song <theevansong@gmail.com> * chore: clean Signed-off-by: Evan Song <theevansong@gmail.com> * fix: prevent error inspector failures from destroying the page Signed-off-by: Evan Song <theevansong@gmail.com> * chore: clean Signed-off-by: Evan Song <theevansong@gmail.com> * chore: remove nexttick wrapper Signed-off-by: Evan Song <theevansong@gmail.com> * fix: ensure file edit gets initted due to deferred module Signed-off-by: Evan Song <theevansong@gmail.com> * refactor: prevent module errors from breaking the layout * chore: clean Signed-off-by: Evan Song <theevansong@gmail.com> --------- Signed-off-by: Evan Song <theevansong@gmail.com>
118 lines
4.4 KiB
Vue
118 lines
4.4 KiB
Vue
<template>
|
|
<NuxtLink
|
|
class="contents"
|
|
:to="status === 'suspended' ? '' : `/servers/manage/${props.server_id}`"
|
|
>
|
|
<div
|
|
v-tooltip="
|
|
status === 'suspended'
|
|
? suspension_reason === 'upgrading'
|
|
? 'This server is being transferred to a new node. It will be unavailable until this process finishes.'
|
|
: 'This server has been suspended. Please visit your billing settings or contact Modrinth Support for more information.'
|
|
: ''
|
|
"
|
|
class="flex cursor-pointer flex-row items-center overflow-x-hidden rounded-3xl bg-bg-raised p-4 transition-transform duration-100"
|
|
:class="status === 'suspended' ? '!rounded-b-none opacity-75' : 'active:scale-95'"
|
|
data-pyro-server-listing
|
|
:data-pyro-server-listing-id="server_id"
|
|
>
|
|
<UiServersServerIcon v-if="status !== 'suspended'" :image="image" />
|
|
<div
|
|
v-else
|
|
class="bg-bg-secondary flex size-24 items-center justify-center rounded-xl border-[1px] border-solid border-button-border bg-button-bg shadow-sm"
|
|
>
|
|
<LockIcon class="size-20 text-secondary" />
|
|
</div>
|
|
<div class="ml-8 flex flex-col gap-2.5">
|
|
<div class="flex flex-row items-center gap-2">
|
|
<h2 class="m-0 text-xl font-bold text-contrast">{{ name }}</h2>
|
|
<ChevronRightIcon />
|
|
</div>
|
|
|
|
<div
|
|
v-if="projectData?.title"
|
|
class="m-0 flex flex-row items-center gap-2 text-sm font-medium text-secondary"
|
|
>
|
|
<UiAvatar
|
|
:src="iconUrl"
|
|
no-shadow
|
|
style="min-height: 20px; min-width: 20px; height: 20px; width: 20px"
|
|
alt="Server Icon"
|
|
/>
|
|
Using {{ projectData?.title || "Unknown" }}
|
|
</div>
|
|
<div v-else class="min-h-[20px]"></div>
|
|
|
|
<UiServersServerInfoLabels
|
|
:server-data="{ game, mc_version, loader, loader_version, net }"
|
|
:show-game-label="showGameLabel"
|
|
:show-loader-label="showLoaderLabel"
|
|
:linked="false"
|
|
class="pointer-events-none flex w-full flex-row flex-wrap items-center gap-4 text-secondary *:hidden sm:flex-row sm:*:flex"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-if="status === 'suspended' && suspension_reason === 'upgrading'"
|
|
class="relative -mt-4 flex w-full flex-row items-center gap-2 rounded-b-3xl bg-bg-blue p-4 text-sm font-bold text-contrast"
|
|
>
|
|
<UiServersPanelSpinner />
|
|
Your server's hardware is currently being upgraded and will be back online shortly.
|
|
</div>
|
|
<div
|
|
v-if="status === 'suspended' && suspension_reason === 'support'"
|
|
class="relative -mt-4 flex w-full flex-row items-center gap-2 rounded-b-3xl bg-bg-blue p-4 text-sm font-bold text-contrast"
|
|
>
|
|
<HammerIcon />
|
|
You recently requested support for your server and we are actively working on it. It will be
|
|
back online shortly.
|
|
</div>
|
|
<div
|
|
v-else-if="status === 'suspended' && suspension_reason !== 'upgrading'"
|
|
class="relative -mt-4 flex w-full flex-col gap-2 rounded-b-3xl bg-bg-red p-4 text-sm font-bold text-contrast"
|
|
>
|
|
<div class="flex flex-row gap-2">
|
|
<UiServersIconsPanelErrorIcon class="!size-5" /> Your server has been suspended. Please
|
|
update your billing information or contact Modrinth Support for more information.
|
|
</div>
|
|
<UiCopyCode :text="`${props.server_id}`" class="ml-auto" />
|
|
</div>
|
|
</NuxtLink>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ChevronRightIcon, HammerIcon, LockIcon } from "@modrinth/assets";
|
|
import type { Project, Server } from "~/types/servers";
|
|
|
|
const props = defineProps<Partial<Server>>();
|
|
|
|
if (props.server_id) {
|
|
await usePyroServer(props.server_id, ["general"]);
|
|
}
|
|
|
|
const showGameLabel = computed(() => !!props.game);
|
|
const showLoaderLabel = computed(() => !!props.loader);
|
|
|
|
let projectData: Ref<Project | null>;
|
|
if (props.upstream) {
|
|
const { data } = await useAsyncData<Project>(
|
|
`server-project-${props.server_id}`,
|
|
async (): Promise<Project> => {
|
|
const result = await useBaseFetch(`project/${props.upstream?.project_id}`);
|
|
return result as Project;
|
|
},
|
|
);
|
|
projectData = data;
|
|
} else {
|
|
projectData = ref(null);
|
|
}
|
|
|
|
const image = useState<string | undefined>(`server-icon-${props.server_id}`, () => undefined);
|
|
|
|
if (import.meta.server && projectData.value?.icon_url) {
|
|
await usePyroServer(props.server_id!, ["general"]);
|
|
}
|
|
|
|
const iconUrl = computed(() => projectData.value?.icon_url || undefined);
|
|
</script>
|