2021-12-09 23:51:30 +00:00
|
|
|
import { UsersIcon } from "@heroicons/react/outline";
|
2022-02-07 23:35:26 +00:00
|
|
|
import { useRef, useState } from "react";
|
2021-12-09 23:51:30 +00:00
|
|
|
|
|
|
|
import { useLocale } from "@lib/hooks/useLocale";
|
|
|
|
import { trpc } from "@lib/trpc";
|
|
|
|
|
2022-02-07 23:35:26 +00:00
|
|
|
import { Alert } from "@components/ui/Alert";
|
|
|
|
|
2021-12-09 23:51:30 +00:00
|
|
|
interface Props {
|
|
|
|
onClose: () => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function TeamCreate(props: Props) {
|
|
|
|
const { t } = useLocale();
|
|
|
|
const utils = trpc.useContext();
|
2022-02-07 23:35:26 +00:00
|
|
|
const [errorMessage, setErrorMessage] = useState<null | string>(null);
|
2021-12-09 23:51:30 +00:00
|
|
|
const nameRef = useRef<HTMLInputElement>() as React.MutableRefObject<HTMLInputElement>;
|
|
|
|
|
|
|
|
const createTeamMutation = trpc.useMutation("viewer.teams.create", {
|
|
|
|
onSuccess: () => {
|
|
|
|
utils.invalidateQueries(["viewer.teams.list"]);
|
|
|
|
props.onClose();
|
|
|
|
},
|
2022-02-07 23:35:26 +00:00
|
|
|
onError: (e) => {
|
|
|
|
setErrorMessage(e?.message || t("something_went_wrong"));
|
|
|
|
},
|
2021-12-09 23:51:30 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const createTeam = (e: React.FormEvent<HTMLFormElement>) => {
|
|
|
|
e.preventDefault();
|
|
|
|
createTeamMutation.mutate({ name: nameRef?.current?.value });
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className="fixed inset-0 z-50 overflow-y-auto"
|
|
|
|
aria-labelledby="modal-title"
|
|
|
|
role="dialog"
|
|
|
|
aria-modal="true">
|
2022-02-09 00:05:13 +00:00
|
|
|
<div className="flex min-h-screen items-end justify-center px-4 pt-4 pb-20 text-center sm:block sm:p-0">
|
2021-12-09 23:51:30 +00:00
|
|
|
<div
|
2022-02-09 00:05:13 +00:00
|
|
|
className="fixed inset-0 z-0 bg-gray-500 bg-opacity-75 transition-opacity"
|
2021-12-09 23:51:30 +00:00
|
|
|
aria-hidden="true"></div>
|
|
|
|
|
2022-02-09 00:05:13 +00:00
|
|
|
<span className="hidden sm:inline-block sm:h-screen sm:align-middle" aria-hidden="true">
|
2021-12-09 23:51:30 +00:00
|
|
|
​
|
|
|
|
</span>
|
|
|
|
|
2022-02-09 00:05:13 +00:00
|
|
|
<div className="inline-block transform rounded-sm bg-white px-4 pt-5 pb-4 text-left align-bottom shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg sm:p-6 sm:align-middle">
|
2021-12-09 23:51:30 +00:00
|
|
|
<div className="mb-4 sm:flex sm:items-start">
|
2022-02-09 00:05:13 +00:00
|
|
|
<div className="mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full bg-neutral-100 sm:mx-0 sm:h-10 sm:w-10">
|
|
|
|
<UsersIcon className="h-6 w-6 text-neutral-900" />
|
2021-12-09 23:51:30 +00:00
|
|
|
</div>
|
|
|
|
<div className="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
|
|
|
<h3 className="text-lg font-medium leading-6 text-gray-900" id="modal-title">
|
|
|
|
{t("create_new_team")}
|
|
|
|
</h3>
|
|
|
|
<div>
|
|
|
|
<p className="text-sm text-gray-400">{t("create_new_team_description")}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<form onSubmit={createTeam}>
|
|
|
|
<div className="mb-4">
|
|
|
|
<label htmlFor="name" className="block text-sm font-medium text-gray-700">
|
|
|
|
{t("name")}
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
ref={nameRef}
|
|
|
|
type="text"
|
|
|
|
name="name"
|
|
|
|
id="name"
|
|
|
|
placeholder="Acme Inc."
|
|
|
|
required
|
2022-02-09 00:05:13 +00:00
|
|
|
className="mt-1 block w-full rounded-sm border border-gray-300 px-3 py-2 shadow-sm focus:border-neutral-500 focus:outline-none focus:ring-neutral-500 sm:text-sm"
|
2021-12-09 23:51:30 +00:00
|
|
|
/>
|
|
|
|
</div>
|
2022-02-07 23:35:26 +00:00
|
|
|
{errorMessage && <Alert severity="error" title={errorMessage} />}
|
2022-02-27 21:03:56 +00:00
|
|
|
<div className="mt-5 flex flex-row-reverse sm:mt-4">
|
2021-12-09 23:51:30 +00:00
|
|
|
<button type="submit" className="btn btn-primary">
|
|
|
|
{t("create_team")}
|
|
|
|
</button>
|
2022-02-09 00:05:13 +00:00
|
|
|
<button onClick={props.onClose} type="button" className="btn btn-white ltr:mr-2">
|
2021-12-09 23:51:30 +00:00
|
|
|
{t("cancel")}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|