* refactor: update board slug prefix to use dynamic base URL from env * feat: add board slug availability check with real-time validation UI * refactor: consolidate board slug lookup by removing boardSlug repo and updating environment variables * feat: allow board slug reuse across different workspaces * chore: update environment settings and remove unused imports * refactor: update board slug availability check to use boardPublicId instead of workspaceSlug * refactor: simplify board slug availability check with direct SQL query
171 lines
4.6 KiB
TypeScript
171 lines
4.6 KiB
TypeScript
import { zodResolver } from "@hookform/resolvers/zod";
|
|
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";
|
|
|
|
const schema = z.object({
|
|
slug: z
|
|
.string()
|
|
.min(3, {
|
|
message: "Board URL must be at least 3 characters long",
|
|
})
|
|
.max(60, { message: "Board URL cannot exceed 60 characters" })
|
|
.regex(/^(?![-]+$)[a-zA-Z0-9-]+$/, {
|
|
message: "Board URL can only contain letters, numbers, and hyphens",
|
|
}),
|
|
});
|
|
|
|
type FormValues = z.infer<typeof schema>;
|
|
|
|
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 {
|
|
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: "Unable to update board URL",
|
|
message: "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">
|
|
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
|
|
? "This board URL has already been taken"
|
|
: undefined)}
|
|
prefix={`${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>
|
|
<Button
|
|
type="submit"
|
|
isLoading={updateBoardSlug.isPending}
|
|
disabled={
|
|
!isDirty ||
|
|
updateBoardSlug.isPending ||
|
|
errors.slug?.message !== undefined ||
|
|
isBoardSlugAvailable?.isReserved
|
|
}
|
|
>
|
|
Update
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|