forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
180 lines
6.9 KiB
TypeScript
180 lines
6.9 KiB
TypeScript
import React, { useState, useEffect } from "react";
|
||
|
||
import { useRouter } from "next/router";
|
||
|
||
import useSWR, { mutate } from "swr";
|
||
|
||
// component
|
||
import { Dialog, Transition } from "@headlessui/react";
|
||
// services
|
||
import cyclesService from "services/cycles.service";
|
||
// hooks
|
||
import useToast from "hooks/use-toast";
|
||
import useIssuesView from "hooks/use-issues-view";
|
||
//icons
|
||
import { MagnifyingGlassIcon, XMarkIcon } from "@heroicons/react/24/outline";
|
||
import { ContrastIcon, ExclamationIcon, TransferIcon } from "components/icons";
|
||
// fetch-key
|
||
import { CYCLE_ISSUES_WITH_PARAMS, INCOMPLETE_CYCLES_LIST } from "constants/fetch-keys";
|
||
// types
|
||
import { ICycle } from "types";
|
||
//helper
|
||
import { getDateRangeStatus } from "helpers/date-time.helper";
|
||
|
||
type Props = {
|
||
isOpen: boolean;
|
||
handleClose: () => void;
|
||
};
|
||
|
||
export const TransferIssuesModal: React.FC<Props> = ({ isOpen, handleClose }) => {
|
||
const [query, setQuery] = useState("");
|
||
|
||
const router = useRouter();
|
||
const { workspaceSlug, projectId, cycleId } = router.query;
|
||
|
||
const { params } = useIssuesView();
|
||
|
||
const { setToastAlert } = useToast();
|
||
|
||
const transferIssue = async (payload: any) => {
|
||
await cyclesService
|
||
.transferIssues(workspaceSlug as string, projectId as string, cycleId as string, payload)
|
||
.then((res) => {
|
||
mutate(CYCLE_ISSUES_WITH_PARAMS(cycleId as string, params));
|
||
setToastAlert({
|
||
type: "success",
|
||
title: "Issues transfered successfully",
|
||
message: "Issues have been transferred successfully",
|
||
});
|
||
})
|
||
.catch((err) => {
|
||
setToastAlert({
|
||
type: "error",
|
||
title: "Error!",
|
||
message: "Issues cannot be transfer. Please try again.",
|
||
});
|
||
});
|
||
};
|
||
|
||
const { data: incompleteCycles } = useSWR(
|
||
workspaceSlug && projectId ? INCOMPLETE_CYCLES_LIST(projectId as string) : null,
|
||
workspaceSlug && projectId
|
||
? () =>
|
||
cyclesService.getCyclesWithParams(
|
||
workspaceSlug as string,
|
||
projectId as string,
|
||
"incomplete"
|
||
)
|
||
: null
|
||
);
|
||
|
||
const filteredOptions =
|
||
query === ""
|
||
? incompleteCycles
|
||
: incompleteCycles?.filter((option) =>
|
||
option.name.toLowerCase().includes(query.toLowerCase())
|
||
);
|
||
|
||
useEffect(() => {
|
||
const handleKeyDown = (e: KeyboardEvent) => {
|
||
if (e.key === "Escape") {
|
||
handleClose();
|
||
}
|
||
};
|
||
}, [handleClose]);
|
||
return (
|
||
<Transition.Root show={isOpen} as={React.Fragment}>
|
||
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
||
<Transition.Child
|
||
as={React.Fragment}
|
||
enter="ease-out duration-300"
|
||
enterFrom="opacity-0"
|
||
enterTo="opacity-100"
|
||
leave="ease-in duration-200"
|
||
leaveFrom="opacity-100"
|
||
leaveTo="opacity-0"
|
||
>
|
||
<div className="fixed inset-0 bg-[#131313] bg-opacity-50 transition-opacity" />
|
||
</Transition.Child>
|
||
|
||
<div className="fixed inset-0 z-10">
|
||
<div className="mt-10 flex min-h-full items-start justify-center p-4 text-center sm:p-0 md:mt-20">
|
||
<Transition.Child
|
||
as={React.Fragment}
|
||
enter="ease-out duration-300"
|
||
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
||
leave="ease-in duration-200"
|
||
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
||
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
||
>
|
||
<Dialog.Panel className="relative transform rounded-lg bg-custom-background-90 py-5 text-left shadow-xl transition-all sm:w-full sm:max-w-2xl">
|
||
<div className="flex flex-col gap-4">
|
||
<div className="flex items-center justify-between px-5">
|
||
<div className="flex items-center gap-3">
|
||
<TransferIcon className="h-4 w-5" color="#495057" />
|
||
<h4 className="text-xl font-medium text-custom-text-100">Transfer Issues</h4>
|
||
</div>
|
||
<button onClick={handleClose}>
|
||
<XMarkIcon className="h-4 w-4" />
|
||
</button>
|
||
</div>
|
||
<div className="flex items-center gap-2 border-b border-custom-border-200 px-5 pb-3">
|
||
<MagnifyingGlassIcon className="h-4 w-4 text-custom-text-200" />
|
||
<input
|
||
className="bg-custom-background-90 outline-none"
|
||
placeholder="Search for a cycle..."
|
||
onChange={(e) => setQuery(e.target.value)}
|
||
value={query}
|
||
/>
|
||
</div>
|
||
<div className="flex w-full flex-col items-start gap-2 px-5">
|
||
{filteredOptions ? (
|
||
filteredOptions.length > 0 ? (
|
||
filteredOptions.map((option: ICycle) => (
|
||
<button
|
||
key={option.id}
|
||
className="flex w-full items-center gap-4 rounded px-4 py-3 text-sm text-custom-text-200 hover:bg-custom-background-90"
|
||
onClick={() => {
|
||
transferIssue({
|
||
new_cycle_id: option?.id,
|
||
});
|
||
handleClose();
|
||
}}
|
||
>
|
||
<ContrastIcon className="h-5 w-5" />
|
||
<div className="flex w-full justify-between">
|
||
<span>{option?.name}</span>
|
||
<span className=" flex items-center rounded-full bg-custom-background-80 px-2 capitalize">
|
||
{getDateRangeStatus(option?.start_date, option?.end_date)}
|
||
</span>
|
||
</div>
|
||
</button>
|
||
))
|
||
) : (
|
||
<div className="flex w-full items-center justify-center gap-4 p-5 text-sm">
|
||
<ExclamationIcon
|
||
height={14}
|
||
width={14}
|
||
className="fill-current text-custom-text-200"
|
||
/>
|
||
<span className="text-center text-custom-text-200">
|
||
You don’t have any current cycle. Please create one to transfer the
|
||
issues.
|
||
</span>
|
||
</div>
|
||
)
|
||
) : (
|
||
<p className="text-center text-custom-text-200">Loading...</p>
|
||
)}
|
||
</div>
|
||
</div>
|
||
</Dialog.Panel>
|
||
</Transition.Child>
|
||
</div>
|
||
</div>
|
||
</Dialog>
|
||
</Transition.Root>
|
||
);
|
||
};
|