mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
892a30c3a8
* fix: web-view * feat: select module * dev: select cycle & module * fix: permissions, logs and archive issue * fix: logs for issue select fix: hard-coded web-view validation * fix: attachment confirm delete workflow * fix: typo * fix: logging link instead of redirecting to the link * fix: made editor height 100% * style: due-date select * fix: update comment not working * fix: changed button text style: spacing * fix: due date select not working for today's date * fix: typography * fix: spacing in select parent
153 lines
3.8 KiB
TypeScript
153 lines
3.8 KiB
TypeScript
// react
|
|
import React, { useState } from "react";
|
|
|
|
// next
|
|
import { useRouter } from "next/router";
|
|
|
|
// swr
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
import cyclesService from "services/cycles.service";
|
|
|
|
// hooks
|
|
import useUser from "hooks/use-user";
|
|
|
|
// fetch keys
|
|
import {
|
|
ISSUE_DETAILS,
|
|
INCOMPLETE_CYCLES_LIST,
|
|
CYCLE_ISSUES,
|
|
PROJECT_ISSUES_ACTIVITY,
|
|
} from "constants/fetch-keys";
|
|
|
|
// icons
|
|
import { ChevronDown } from "lucide-react";
|
|
|
|
// components
|
|
import { WebViewModal } from "components/web-view";
|
|
|
|
// types
|
|
import { ICycle, IIssueCycle } from "types";
|
|
|
|
type Props = {
|
|
disabled?: boolean;
|
|
value?: IIssueCycle | null;
|
|
};
|
|
|
|
export const CycleSelect: React.FC<Props> = (props) => {
|
|
const { disabled = false, value } = props;
|
|
|
|
const [isBottomSheetOpen, setIsBottomSheetOpen] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
|
|
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 { user } = useUser();
|
|
|
|
const handleCycleChange = (cycleDetails: ICycle) => {
|
|
if (!workspaceSlug || !projectId || !issueId || disabled) return;
|
|
|
|
issuesService
|
|
.addIssueToCycle(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
cycleDetails.id,
|
|
{
|
|
issues: [issueId.toString()],
|
|
},
|
|
user
|
|
)
|
|
.then(() => {
|
|
mutate(ISSUE_DETAILS(issueId as string));
|
|
mutate(PROJECT_ISSUES_ACTIVITY(issueId as string));
|
|
});
|
|
};
|
|
|
|
const removeIssueFromCycle = (bridgeId?: string, cycleId?: string) => {
|
|
if (!workspaceSlug || !projectId || !bridgeId || !cycleId || disabled) return;
|
|
|
|
mutate(
|
|
ISSUE_DETAILS(issueId as string),
|
|
(prev) => {
|
|
if (!prev) return prev;
|
|
|
|
return {
|
|
...prev,
|
|
issue_cycle: null,
|
|
};
|
|
},
|
|
false
|
|
);
|
|
|
|
issuesService
|
|
.removeIssueFromCycle(workspaceSlug.toString(), projectId.toString(), cycleId, bridgeId)
|
|
.then(() => {
|
|
mutate(CYCLE_ISSUES(cycleId));
|
|
mutate(ISSUE_DETAILS(issueId as string));
|
|
mutate(PROJECT_ISSUES_ACTIVITY(issueId as string));
|
|
})
|
|
.catch((e) => {
|
|
console.log(e);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<WebViewModal
|
|
isOpen={isBottomSheetOpen}
|
|
onClose={() => setIsBottomSheetOpen(false)}
|
|
modalTitle="Select Module"
|
|
>
|
|
<WebViewModal.Options
|
|
options={[
|
|
...(incompleteCycles ?? []).map((cycle) => ({
|
|
checked: cycle.id === value?.cycle,
|
|
label: cycle.name,
|
|
value: cycle.id,
|
|
onClick: () => {
|
|
handleCycleChange(cycle);
|
|
setIsBottomSheetOpen(false);
|
|
},
|
|
})),
|
|
{
|
|
checked: !value,
|
|
label: "None",
|
|
onClick: () => {
|
|
setIsBottomSheetOpen(false);
|
|
removeIssueFromCycle(value?.id, value?.cycle);
|
|
},
|
|
value: "none",
|
|
},
|
|
]}
|
|
/>
|
|
</WebViewModal>
|
|
|
|
<button
|
|
type="button"
|
|
disabled={disabled}
|
|
onClick={() => setIsBottomSheetOpen(true)}
|
|
className={
|
|
"relative w-full px-2.5 py-0.5 text-base flex justify-between items-center gap-0.5 text-custom-text-100"
|
|
}
|
|
>
|
|
<span className="text-custom-text-200">{value?.cycle_detail.name ?? "Select cycle"}</span>
|
|
<ChevronDown className="w-4 h-4 text-custom-text-200" />
|
|
</button>
|
|
</>
|
|
);
|
|
};
|