mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
69 lines
2.4 KiB
TypeScript
69 lines
2.4 KiB
TypeScript
import { ReactElement } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
// layouts
|
|
import { Lightbulb } from "lucide-react";
|
|
import { Loader } from "@plane/ui";
|
|
import { PageHead } from "@/components/core";
|
|
import { InstanceAIForm } from "@/components/instance";
|
|
import { useApplication } from "@/hooks/store";
|
|
import { InstanceAdminLayout } from "@/layouts/admin-layout";
|
|
// types
|
|
import { NextPageWithLayout } from "@/lib/types";
|
|
// hooks
|
|
// ui
|
|
// icons
|
|
// components
|
|
|
|
const InstanceAdminAIPage: NextPageWithLayout = observer(() => {
|
|
// store
|
|
const {
|
|
instance: { fetchInstanceConfigurations, formattedConfig },
|
|
} = useApplication();
|
|
|
|
useSWR("INSTANCE_CONFIGURATIONS", () => fetchInstanceConfigurations());
|
|
|
|
return (
|
|
<>
|
|
<PageHead title="God Mode - AI" />
|
|
<div className="flex flex-col gap-8">
|
|
<div className="mb-2 border-b border-custom-border-100 pb-3">
|
|
<div className="pb-1 text-xl font-medium text-custom-text-100">AI features for all your workspaces</div>
|
|
<div className="text-sm font-normal text-custom-text-300">
|
|
Configure your AI API credentials so Plane AI features are turned on for all your workspaces.
|
|
</div>
|
|
</div>
|
|
{formattedConfig ? (
|
|
<>
|
|
<div>
|
|
<div className="pb-1 text-xl font-medium text-custom-text-100">OpenAI</div>
|
|
<div className="text-sm font-normal text-custom-text-300">If you use ChatGPT, this is for you.</div>
|
|
</div>
|
|
<InstanceAIForm config={formattedConfig} />
|
|
<div className="my-2 flex">
|
|
<div className="flex items-center gap-2 rounded border border-custom-primary-100/20 bg-custom-primary-100/10 px-4 py-2 text-xs text-custom-primary-200">
|
|
<Lightbulb height="14" width="14" />
|
|
<div>If you have a preferred AI models vendor, please get in touch with us.</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
) : (
|
|
<Loader className="space-y-4">
|
|
<div className="grid grid-cols-2 gap-x-8 gap-y-4">
|
|
<Loader.Item height="50px" />
|
|
<Loader.Item height="50px" />
|
|
</div>
|
|
<Loader.Item height="50px" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
|
|
InstanceAdminAIPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <InstanceAdminLayout>{page}</InstanceAdminLayout>;
|
|
};
|
|
|
|
export default InstanceAdminAIPage;
|