forked from github/plane
1655d0cb1c
* feat: update, delete link refactor: using old fetch-key * feat: issue activity with ability to view & add comment feat: click on view more to view more options in the issue detail * fix: upload image not working on mobile
187 lines
4.3 KiB
TypeScript
187 lines
4.3 KiB
TypeScript
// react
|
|
import React, { useEffect } from "react";
|
|
|
|
// next
|
|
import { useRouter } from "next/router";
|
|
|
|
// swr
|
|
import { mutate } from "swr";
|
|
|
|
// react hooks form
|
|
import { useForm } from "react-hook-form";
|
|
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
|
|
// fetch keys
|
|
import { ISSUE_DETAILS } from "constants/fetch-keys";
|
|
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
|
|
// ui
|
|
import { PrimaryButton, Input } from "components/ui";
|
|
|
|
// types
|
|
import type { linkDetails, IIssueLink } from "types";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
data?: linkDetails;
|
|
links?: linkDetails[];
|
|
onSuccess: () => void;
|
|
};
|
|
|
|
export const CreateUpdateLinkForm: React.FC<Props> = (props) => {
|
|
const { isOpen, data, links, onSuccess } = props;
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
reset,
|
|
formState: { errors, isSubmitting },
|
|
} = useForm({
|
|
defaultValues: {
|
|
title: "",
|
|
url: "",
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (!data) return;
|
|
reset({
|
|
title: data.title,
|
|
url: data.url,
|
|
});
|
|
}, [data, reset]);
|
|
|
|
useEffect(() => {
|
|
if (!isOpen)
|
|
reset({
|
|
title: "",
|
|
url: "",
|
|
});
|
|
}, [isOpen, reset]);
|
|
|
|
const onSubmit = async (formData: IIssueLink) => {
|
|
if (!workspaceSlug || !projectId || !issueId) return;
|
|
|
|
const payload = { metadata: {}, ...formData };
|
|
|
|
if (!data)
|
|
await issuesService
|
|
.createIssueLink(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
issueId.toString(),
|
|
payload
|
|
)
|
|
.then(() => {
|
|
onSuccess();
|
|
mutate(ISSUE_DETAILS(issueId.toString()));
|
|
})
|
|
.catch((err) => {
|
|
if (err?.status === 400)
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "This URL already exists for this issue.",
|
|
});
|
|
else
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Something went wrong. Please try again.",
|
|
});
|
|
});
|
|
else {
|
|
const updatedLinks = links?.map((l) =>
|
|
l.id === data.id
|
|
? {
|
|
...l,
|
|
title: formData.title,
|
|
url: formData.url,
|
|
}
|
|
: l
|
|
);
|
|
|
|
mutate(
|
|
ISSUE_DETAILS(issueId.toString()),
|
|
(prevData) => ({ ...prevData, issue_link: updatedLinks }),
|
|
false
|
|
);
|
|
|
|
await issuesService
|
|
.updateIssueLink(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
issueId.toString(),
|
|
data!.id,
|
|
payload
|
|
)
|
|
.then(() => {
|
|
onSuccess();
|
|
mutate(ISSUE_DETAILS(issueId.toString()));
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<form className="space-y-5" onSubmit={handleSubmit(onSubmit)}>
|
|
<div>
|
|
<div className="space-y-5">
|
|
<div className="mt-2 space-y-3">
|
|
<div>
|
|
<Input
|
|
id="url"
|
|
label="URL"
|
|
name="url"
|
|
type="url"
|
|
placeholder="https://..."
|
|
autoComplete="off"
|
|
error={errors.url}
|
|
register={register}
|
|
validations={{
|
|
required: "URL is required",
|
|
}}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Input
|
|
id="title"
|
|
label="Title (optional)"
|
|
name="title"
|
|
type="text"
|
|
placeholder="Enter title"
|
|
autoComplete="off"
|
|
error={errors.title}
|
|
register={register}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-5 flex justify-end gap-2">
|
|
<PrimaryButton
|
|
type="submit"
|
|
loading={isSubmitting}
|
|
className="w-full !py-2 text-custom-text-300 !text-base flex items-center justify-center"
|
|
>
|
|
{data
|
|
? isSubmitting
|
|
? "Updating Link..."
|
|
: "Update Link"
|
|
: isSubmitting
|
|
? "Adding Link..."
|
|
: "Add Link"}
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|