mirror of
https://github.com/outline/outline.git
synced 2025-12-21 10:39:41 -06:00
94 lines
2.3 KiB
TypeScript
94 lines
2.3 KiB
TypeScript
import { observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import { useTranslation, Trans } from "react-i18next";
|
|
import { toast } from "sonner";
|
|
import type User from "~/models/User";
|
|
import Button from "~/components/Button";
|
|
import Flex from "~/components/Flex";
|
|
import Input from "~/components/Input";
|
|
import Notice from "~/components/Notice";
|
|
import Text from "~/components/Text";
|
|
import useStores from "~/hooks/useStores";
|
|
|
|
type Props = {
|
|
user: User;
|
|
};
|
|
|
|
function TeamNew({ user }: Props) {
|
|
const { auth } = useStores();
|
|
const { t } = useTranslation();
|
|
const [name, setName] = React.useState("");
|
|
const [isSaving, setIsSaving] = React.useState(false);
|
|
|
|
const handleSubmit = async (ev: React.SyntheticEvent) => {
|
|
ev.preventDefault();
|
|
setIsSaving(true);
|
|
|
|
try {
|
|
if (name.trim().length > 1) {
|
|
await auth.createTeam({
|
|
name: name.trim(),
|
|
});
|
|
}
|
|
} catch (err) {
|
|
toast.error(err.message);
|
|
} finally {
|
|
setIsSaving(false);
|
|
}
|
|
};
|
|
|
|
const handleNameChange = (ev: React.ChangeEvent<HTMLInputElement>) => {
|
|
setName(ev.target.value);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<form onSubmit={handleSubmit}>
|
|
<Notice>
|
|
<Trans>
|
|
Please note that workspaces are completely separated. They can have
|
|
a different domain, settings, users, and billing.
|
|
</Trans>
|
|
</Notice>
|
|
|
|
<p />
|
|
|
|
<Flex>
|
|
<Input
|
|
type="text"
|
|
label={t("Workspace name")}
|
|
onChange={handleNameChange}
|
|
value={name}
|
|
required
|
|
autoFocus
|
|
flex
|
|
/>
|
|
</Flex>
|
|
|
|
<Text as="p" type="secondary">
|
|
<Trans
|
|
defaults="You are creating a new workspace using your current account — <em>{{email}}</em>"
|
|
values={{
|
|
email: user.email,
|
|
}}
|
|
components={{
|
|
em: <strong />,
|
|
}}
|
|
/>
|
|
.{" "}
|
|
<Trans>
|
|
To create a workspace under another email please sign up from the
|
|
homepage
|
|
</Trans>
|
|
</Text>
|
|
|
|
<Button type="submit" disabled={isSaving || !(name.trim().length > 1)}>
|
|
{isSaving ? `${t("Creating")}…` : t("Create")}
|
|
</Button>
|
|
</form>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default observer(TeamNew);
|