"use client"; import { useState } from "react"; import { observer } from "mobx-react-lite"; import Image from "next/image"; import { useTheme } from "next-themes"; import useSWR from "swr"; import { Loader, ToggleSwitch, setPromiseToast } from "@plane/ui"; // components import { PageHeader } from "@/components/core"; // helpers import { resolveGeneralTheme } from "@/helpers/common.helper"; // hooks import { useInstance } from "@/hooks/store"; // icons import githubLightModeImage from "@/public/logos/github-black.png"; import githubDarkModeImage from "@/public/logos/github-white.png"; // local components import { AuthenticationMethodCard } from "../components"; import { InstanceGithubConfigForm } from "./form"; const InstanceGithubAuthenticationPage = observer(() => { // store const { fetchInstanceConfigurations, formattedConfig, updateInstanceConfigurations } = useInstance(); // state const [isSubmitting, setIsSubmitting] = useState(false); // theme const { resolvedTheme } = useTheme(); // config const enableGithubConfig = formattedConfig?.IS_GITHUB_ENABLED ?? ""; useSWR("INSTANCE_CONFIGURATIONS", () => fetchInstanceConfigurations()); const updateConfig = async (key: "IS_GITHUB_ENABLED", value: string) => { setIsSubmitting(true); const payload = { [key]: value, }; const updateConfigPromise = updateInstanceConfigurations(payload); setPromiseToast(updateConfigPromise, { loading: "Saving Configuration...", success: { title: "Configuration saved", message: () => `Github authentication is now ${value ? "active" : "disabled"}.`, }, error: { title: "Error", message: () => "Failed to save configuration", }, }); await updateConfigPromise .then(() => { setIsSubmitting(false); }) .catch((err) => { console.error(err); setIsSubmitting(false); }); }; return ( <>
} config={ { Boolean(parseInt(enableGithubConfig)) === true ? updateConfig("IS_GITHUB_ENABLED", "0") : updateConfig("IS_GITHUB_ENABLED", "1"); }} size="sm" disabled={isSubmitting || !formattedConfig} /> } disabled={isSubmitting || !formattedConfig} withBorder={false} />
{formattedConfig ? ( ) : ( )}
); }); export default InstanceGithubAuthenticationPage;