181 lines
5.0 KiB
TypeScript
181 lines
5.0 KiB
TypeScript
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { t } from "@lingui/core/macro";
|
|
import { env } from "next-runtime-env";
|
|
import { useEffect } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { HiCheck, HiXMark } from "react-icons/hi2";
|
|
import { z } from "zod";
|
|
|
|
import Button from "~/components/Button";
|
|
import Input from "~/components/Input";
|
|
import { useDebounce } from "~/hooks/useDebounce";
|
|
import { useModal } from "~/providers/modal";
|
|
import { usePopup } from "~/providers/popup";
|
|
import { api } from "~/utils/api";
|
|
|
|
interface QueryParams {
|
|
boardPublicId: string;
|
|
members: string[];
|
|
labels: string[];
|
|
}
|
|
|
|
export function UpdateBoardSlugForm({
|
|
boardPublicId,
|
|
workspaceSlug,
|
|
boardSlug,
|
|
queryParams,
|
|
}: {
|
|
boardPublicId: string;
|
|
workspaceSlug: string;
|
|
boardSlug: string;
|
|
queryParams: QueryParams;
|
|
}) {
|
|
const { closeModal } = useModal();
|
|
const { showPopup } = usePopup();
|
|
const utils = api.useUtils();
|
|
|
|
const schema = z.object({
|
|
slug: z
|
|
.string()
|
|
.min(3, {
|
|
message: t`Board URL must be at least 3 characters long`,
|
|
})
|
|
.max(60, { message: t`Board URL cannot exceed 60 characters` })
|
|
.regex(/^(?![-]+$)[a-zA-Z0-9-]+$/, {
|
|
message: t`Board URL can only contain letters, numbers, and hyphens`,
|
|
}),
|
|
});
|
|
|
|
type FormValues = z.infer<typeof schema>;
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { isDirty, errors },
|
|
watch,
|
|
} = useForm<FormValues>({
|
|
resolver: zodResolver(schema),
|
|
values: {
|
|
slug: boardSlug,
|
|
},
|
|
mode: "onChange",
|
|
});
|
|
|
|
const slug = watch("slug");
|
|
|
|
const [debouncedSlug] = useDebounce(slug, 500);
|
|
|
|
const updateBoardSlug = api.board.update.useMutation({
|
|
onError: () => {
|
|
showPopup({
|
|
header: t`Unable to update board URL`,
|
|
message: t`Please try again later, or contact customer support.`,
|
|
icon: "error",
|
|
});
|
|
},
|
|
onSettled: async () => {
|
|
closeModal();
|
|
await utils.board.byId.invalidate(queryParams);
|
|
},
|
|
});
|
|
|
|
const checkBoardSlugAvailability = api.board.checkSlugAvailability.useQuery(
|
|
{
|
|
boardSlug: debouncedSlug,
|
|
boardPublicId,
|
|
},
|
|
{
|
|
enabled: !!debouncedSlug && debouncedSlug !== boardSlug && !errors.slug,
|
|
},
|
|
);
|
|
|
|
const isBoardSlugAvailable = checkBoardSlugAvailability.data;
|
|
|
|
useEffect(() => {
|
|
const nameElement: HTMLElement | null =
|
|
document.querySelector<HTMLElement>("#board-slug");
|
|
if (nameElement) nameElement.focus();
|
|
}, []);
|
|
|
|
const onSubmit = (data: FormValues) => {
|
|
if (!isBoardSlugAvailable) return;
|
|
if (isBoardSlugAvailable.isReserved) return;
|
|
|
|
updateBoardSlug.mutate({
|
|
slug: data.slug,
|
|
boardPublicId,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<div className="px-5 pt-5">
|
|
<div className="flex w-full items-center justify-between pb-4">
|
|
<h2 className="text-sm font-bold text-neutral-900 dark:text-dark-1000">
|
|
{t`Edit board URL`}
|
|
</h2>
|
|
<button
|
|
type="button"
|
|
className="rounded p-1 hover:bg-light-200 focus:outline-none dark:hover:bg-dark-300"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
closeModal();
|
|
}}
|
|
>
|
|
<HiXMark size={18} className="text-light-900 dark:text-dark-900" />
|
|
</button>
|
|
</div>
|
|
|
|
<Input
|
|
id="board-slug"
|
|
{...register("slug")}
|
|
errorMessage={
|
|
errors.slug?.message ||
|
|
(isBoardSlugAvailable?.isReserved
|
|
? t`This board URL has already been taken`
|
|
: undefined)
|
|
}
|
|
prefix={`${env("NEXT_PUBLIC_KAN_ENV") === "cloud" ? "kan.bn" : env("NEXT_PUBLIC_BASE_URL")}/${workspaceSlug}/`}
|
|
onKeyDown={async (e) => {
|
|
if (e.key === "Enter") {
|
|
e.preventDefault();
|
|
await handleSubmit(onSubmit)();
|
|
}
|
|
}}
|
|
iconRight={
|
|
!!errors.slug?.message || isBoardSlugAvailable?.isReserved ? (
|
|
<HiXMark className="h-4 w-4 text-red-500" />
|
|
) : (
|
|
<HiCheck className="h-4 w-4 dark:text-dark-1000" />
|
|
)
|
|
}
|
|
/>
|
|
</div>
|
|
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
|
<div className="flex items-center gap-2">
|
|
<Button
|
|
variant="secondary"
|
|
href="/settings?edit=workspace_url"
|
|
onClick={closeModal}
|
|
>
|
|
{t`Edit workspace URL`}
|
|
</Button>
|
|
<Button
|
|
type="submit"
|
|
isLoading={updateBoardSlug.isPending}
|
|
disabled={
|
|
!isDirty ||
|
|
updateBoardSlug.isPending ||
|
|
errors.slug?.message !== undefined ||
|
|
isBoardSlugAvailable?.isReserved ||
|
|
checkBoardSlugAvailability.isLoading
|
|
}
|
|
>
|
|
{t`Update`}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|