Some checks failed
Branch Build CE / Build Setup (push) Has been cancelled
Branch Build CE / Build-Push Admin Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Web Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Space Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Live Collaboration Docker Image (push) Has been cancelled
Branch Build CE / Build-Push API Server Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Proxy Docker Image (push) Has been cancelled
Branch Build CE / Build-Push AIO Docker Image (push) Has been cancelled
Branch Build CE / Upload Build Assets (push) Has been cancelled
Branch Build CE / Build Release (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Sync Repositories / sync_changes (push) Has been cancelled
103 lines
3.4 KiB
TypeScript
103 lines
3.4 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import Image from "next/image";
|
|
import useSWR from "swr";
|
|
// plane internal packages
|
|
import { setPromiseToast } from "@plane/propel/toast";
|
|
import { Loader, ToggleSwitch } from "@plane/ui";
|
|
// components
|
|
import giteaLogo from "@/app/assets/logos/gitea-logo.svg?url";
|
|
import { AuthenticationMethodCard } from "@/components/authentication/authentication-method-card";
|
|
// hooks
|
|
import { useInstance } from "@/hooks/store";
|
|
//local components
|
|
import type { Route } from "./+types/page";
|
|
import { InstanceGiteaConfigForm } from "./form";
|
|
|
|
const InstanceGiteaAuthenticationPage = observer(() => {
|
|
// store
|
|
const { fetchInstanceConfigurations, formattedConfig, updateInstanceConfigurations } = useInstance();
|
|
// state
|
|
const [isSubmitting, setIsSubmitting] = useState<boolean>(false);
|
|
// config
|
|
const enableGiteaConfig = formattedConfig?.IS_GITEA_ENABLED ?? "";
|
|
useSWR("INSTANCE_CONFIGURATIONS", () => fetchInstanceConfigurations());
|
|
|
|
const updateConfig = async (key: "IS_GITEA_ENABLED", value: string) => {
|
|
setIsSubmitting(true);
|
|
|
|
const payload = {
|
|
[key]: value,
|
|
};
|
|
|
|
const updateConfigPromise = updateInstanceConfigurations(payload);
|
|
|
|
setPromiseToast(updateConfigPromise, {
|
|
loading: "Saving Configuration...",
|
|
success: {
|
|
title: "Configuration saved",
|
|
message: () => `Gitea authentication is now ${value === "1" ? "active" : "disabled"}.`,
|
|
},
|
|
error: {
|
|
title: "Error",
|
|
message: () => "Failed to save configuration",
|
|
},
|
|
});
|
|
|
|
await updateConfigPromise
|
|
.then(() => {
|
|
setIsSubmitting(false);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
setIsSubmitting(false);
|
|
});
|
|
};
|
|
|
|
const isGiteaEnabled = enableGiteaConfig === "1";
|
|
|
|
return (
|
|
<>
|
|
<div className="relative container mx-auto w-full h-full p-4 py-4 space-y-6 flex flex-col">
|
|
<div className="border-b border-custom-border-100 mx-4 py-4 space-y-1 flex-shrink-0">
|
|
<AuthenticationMethodCard
|
|
name="Gitea"
|
|
description="Allow members to login or sign up to plane with their Gitea accounts."
|
|
icon={<Image src={giteaLogo} height={24} width={24} alt="Gitea Logo" />}
|
|
config={
|
|
<ToggleSwitch
|
|
value={isGiteaEnabled}
|
|
onChange={() => {
|
|
updateConfig("IS_GITEA_ENABLED", isGiteaEnabled ? "0" : "1");
|
|
}}
|
|
size="sm"
|
|
disabled={isSubmitting || !formattedConfig}
|
|
/>
|
|
}
|
|
disabled={isSubmitting || !formattedConfig}
|
|
withBorder={false}
|
|
/>
|
|
</div>
|
|
<div className="flex-grow overflow-hidden overflow-y-scroll vertical-scrollbar scrollbar-md px-4">
|
|
{formattedConfig ? (
|
|
<InstanceGiteaConfigForm config={formattedConfig} />
|
|
) : (
|
|
<Loader className="space-y-8">
|
|
<Loader.Item height="50px" width="25%" />
|
|
<Loader.Item height="50px" />
|
|
<Loader.Item height="50px" />
|
|
<Loader.Item height="50px" />
|
|
<Loader.Item height="50px" width="50%" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
export const meta: Route.MetaFunction = () => [{ title: "Gitea Authentication - God Mode" }];
|
|
|
|
export default InstanceGiteaAuthenticationPage;
|