Files
plane/apps/space/core/lib/instance-provider.tsx
T

75 lines
2.6 KiB
TypeScript
Raw Normal View History

2026-01-27 13:54:22 +05:30
/**
* Copyright (c) 2023-present Plane Software, Inc. and contributors
* SPDX-License-Identifier: AGPL-3.0-only
* See the LICENSE file for details.
*/
import { observer } from "mobx-react";
2024-05-22 18:49:58 +05:30
import Link from "next/link";
2024-05-18 16:22:53 +05:30
import { useTheme } from "next-themes";
import useSWR from "swr";
// plane imports
import { SPACE_BASE_PATH } from "@plane/constants";
import { PlaneLockup } from "@plane/propel/icons";
// assets
import PlaneBackgroundPatternDark from "@/app/assets/auth/background-pattern-dark.svg?url";
import PlaneBackgroundPattern from "@/app/assets/auth/background-pattern.svg?url";
2024-05-18 16:22:53 +05:30
// components
2025-08-15 13:12:36 +05:30
import { LogoSpinner } from "@/components/common/logo-spinner";
import { InstanceFailureView } from "@/components/instance/instance-failure-view";
2024-05-18 16:22:53 +05:30
// hooks
2025-08-15 13:12:36 +05:30
import { useInstance } from "@/hooks/store/use-instance";
import { useUser } from "@/hooks/store/use-user";
2024-05-18 16:22:53 +05:30
export const InstanceProvider = observer(function InstanceProvider({ children }: { children: React.ReactNode }) {
2024-05-18 16:22:53 +05:30
const { fetchInstanceInfo, instance, error } = useInstance();
const { fetchCurrentUser } = useUser();
const { resolvedTheme } = useTheme();
const patternBackground = resolvedTheme === "dark" ? PlaneBackgroundPatternDark : PlaneBackgroundPattern;
useSWR("INSTANCE_INFO", () => fetchInstanceInfo(), {
revalidateOnFocus: false,
revalidateIfStale: false,
errorRetryCount: 0,
});
useSWR("CURRENT_USER", () => fetchCurrentUser(), {
shouldRetryOnError: false,
revalidateOnFocus: true,
revalidateIfStale: true,
});
2024-05-18 16:22:53 +05:30
if (!instance && !error)
return (
2026-03-02 20:40:50 +05:30
<div className="flex h-screen w-full items-center justify-center">
2024-05-18 16:22:53 +05:30
<LogoSpinner />
</div>
);
if (error) {
return (
<div className="relative">
2026-03-02 20:40:50 +05:30
<div className="flex h-screen w-full flex-col overflow-hidden overflow-y-auto">
<div className="z-50 container mx-auto flex h-[110px] flex-shrink-0 items-center justify-between gap-5 px-5 lg:px-0">
2024-05-18 16:22:53 +05:30
<div className="flex items-center gap-x-2 py-10">
<Link href={`${SPACE_BASE_PATH}/`}>
2025-12-12 20:50:14 +05:30
<PlaneLockup className="h-7 w-auto text-primary" />
2024-05-22 18:49:58 +05:30
</Link>
2024-05-18 16:22:53 +05:30
</div>
</div>
<div className="absolute inset-0 z-0">
2026-03-02 20:40:50 +05:30
<img src={patternBackground} className="h-full w-screen object-cover" alt="Plane background pattern" />
2024-05-18 16:22:53 +05:30
</div>
<div className="relative z-10 flex-grow">
2026-03-02 20:40:50 +05:30
<div className="relative mx-auto flex h-full w-full items-center justify-center overflow-y-auto px-6 py-10">
2024-05-18 16:22:53 +05:30
<InstanceFailureView />
</div>
</div>
</div>
</div>
);
}
2024-12-05 15:12:37 +05:30
return children;
2024-05-18 16:22:53 +05:30
});