mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
"use client";
|
|
|
|
import useSWR from "swr";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import useInstance from "hooks/use-instance";
|
|
// ui
|
|
import { Loader } from "@plane/ui";
|
|
// components
|
|
import { InstanceEmailForm } from "components/forms";
|
|
|
|
const InstanceEmailPage = observer(() => {
|
|
// store
|
|
const { fetchInstanceConfigurations, formattedConfig } = useInstance();
|
|
|
|
useSWR("INSTANCE_CONFIGURATIONS", () => fetchInstanceConfigurations());
|
|
|
|
return (
|
|
<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">
|
|
Secure emails from your own instance
|
|
</div>
|
|
<div className="text-sm font-normal text-custom-text-300">
|
|
Plane can send useful emails to you and your users from your own
|
|
instance without talking to the Internet.
|
|
</div>
|
|
<div className="text-sm font-normal text-custom-text-300">
|
|
Set it up below and please test your settings before you save them.{" "}
|
|
<span className="text-red-400">
|
|
Misconfigs can lead to email bounces and errors.
|
|
</span>
|
|
</div>
|
|
</div>
|
|
{formattedConfig ? (
|
|
<InstanceEmailForm config={formattedConfig} />
|
|
) : (
|
|
<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>
|
|
);
|
|
});
|
|
|
|
export default InstanceEmailPage;
|