mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
267cf75004
* chore: update profile and god mode routes * fix: profile activity loader * chore: update profile route in the change password page
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { ReactElement } from "react";
|
|
import useSWR from "swr";
|
|
import { observer } from "mobx-react-lite";
|
|
// layouts
|
|
import { InstanceAdminHeader, InstanceAdminLayout } from "layouts/admin-layout";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
// store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// ui
|
|
import { Loader } from "@plane/ui";
|
|
// components
|
|
import { InstanceEmailForm } from "components/instance/email-form";
|
|
|
|
const InstanceAdminEmailPage: NextPageWithLayout = observer(() => {
|
|
// store
|
|
const {
|
|
instance: { fetchInstanceConfigurations, formattedConfig },
|
|
} = useMobxStore();
|
|
|
|
useSWR("INSTANCE_CONFIGURATIONS", () => fetchInstanceConfigurations());
|
|
|
|
return (
|
|
<div>
|
|
{formattedConfig ? (
|
|
<InstanceEmailForm config={formattedConfig} />
|
|
) : (
|
|
<Loader className="space-y-4 m-8">
|
|
<Loader.Item height="50px" />
|
|
<Loader.Item height="50px" />
|
|
<Loader.Item height="50px" width="25%" />
|
|
<Loader.Item height="50px" width="25%" />
|
|
<Loader.Item height="50px" width="25%" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
InstanceAdminEmailPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <InstanceAdminLayout header={<InstanceAdminHeader title="Email" />}>{page}</InstanceAdminLayout>;
|
|
};
|
|
|
|
export default InstanceAdminEmailPage;
|