mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
"use client";
|
|
|
|
import useSWR from "swr";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Loader } from "@plane/ui";
|
|
// components
|
|
import { PageHeader } from "@/components/core";
|
|
import { InstanceImageConfigForm } from "./components";
|
|
// hooks
|
|
import { useInstance } from "@/hooks/store";
|
|
|
|
const InstanceImagePage = observer(() => {
|
|
// store
|
|
const { formattedConfig, fetchInstanceConfigurations } = useInstance();
|
|
|
|
useSWR("INSTANCE_CONFIGURATIONS", () => fetchInstanceConfigurations());
|
|
|
|
return (
|
|
<>
|
|
<PageHeader title="Image - God Mode" />
|
|
<div className="relative container mx-auto w-full h-full p-8 py-4 space-y-6 flex flex-col">
|
|
<div className="border-b border-custom-border-100 pb-3 space-y-1 flex-shrink-0">
|
|
<div className="text-xl font-medium text-custom-text-100">Third-party image libraries</div>
|
|
<div className="text-sm font-normal text-custom-text-300">
|
|
Let your users search and choose images from third-party libraries
|
|
</div>
|
|
</div>
|
|
<div className="flex-grow overflow-hidden overflow-y-auto">
|
|
{formattedConfig ? (
|
|
<InstanceImageConfigForm config={formattedConfig} />
|
|
) : (
|
|
<Loader className="space-y-8">
|
|
<Loader.Item height="50px" width="50%" />
|
|
<Loader.Item height="50px" width="20%" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
|
|
export default InstanceImagePage;
|