2024-05-14 08:56:54 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
import Image from "next/image";
|
|
|
|
import { useTheme } from "next-themes";
|
|
|
|
import { Button } from "@plane/ui";
|
|
|
|
// assets
|
|
|
|
import InstanceFailureDarkImage from "@/public/instance/instance-failure-dark.svg";
|
|
|
|
import InstanceFailureImage from "@/public/instance/instance-failure.svg";
|
|
|
|
|
|
|
|
export default function InstanceError() {
|
|
|
|
const { resolvedTheme } = useTheme();
|
|
|
|
|
|
|
|
const instanceImage = resolvedTheme === "dark" ? InstanceFailureDarkImage : InstanceFailureImage;
|
|
|
|
|
|
|
|
const handleRetry = () => {
|
|
|
|
window.location.reload();
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2024-05-15 10:58:38 +00:00
|
|
|
<div className="relative h-screen overflow-x-hidden overflow-y-auto container px-5 mx-auto flex justify-center items-center">
|
|
|
|
<div className="w-auto max-w-2xl relative space-y-8 py-10">
|
|
|
|
<div className="relative flex flex-col justify-center items-center space-y-4">
|
|
|
|
<Image src={instanceImage} alt="Plane instance failure image" />
|
|
|
|
<h3 className="font-medium text-2xl text-white ">Unable to fetch instance details.</h3>
|
|
|
|
<p className="font-medium text-base text-center">
|
|
|
|
We were unable to fetch the details of the instance. <br />
|
|
|
|
Fret not, it might just be a connectivity issue.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="flex justify-center">
|
|
|
|
<Button size="md" onClick={handleRetry}>
|
|
|
|
Retry
|
|
|
|
</Button>
|
2024-05-14 08:56:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|