2023-07-13 06:04:37 +00:00
|
|
|
import React, { useState } from "react";
|
|
|
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
// component
|
|
|
|
import { CustomSearchSelect, CustomSelect, ToggleSwitch } from "components/ui";
|
|
|
|
import { SelectMonthModal } from "components/automation";
|
|
|
|
// icons
|
|
|
|
import { ChevronDownIcon, Squares2X2Icon } from "@heroicons/react/24/outline";
|
|
|
|
import { getStateGroupIcon } from "components/icons";
|
|
|
|
// services
|
|
|
|
import stateService from "services/state.service";
|
|
|
|
// constants
|
|
|
|
import { PROJECT_AUTOMATION_MONTHS } from "constants/project";
|
|
|
|
import { STATES_LIST } from "constants/fetch-keys";
|
|
|
|
// types
|
|
|
|
import { IProject } from "types";
|
|
|
|
// helper
|
|
|
|
import { getStatesList } from "helpers/state.helper";
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
projectDetails: IProject | undefined;
|
|
|
|
handleChange: (formData: Partial<IProject>) => Promise<void>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const AutoCloseAutomation: React.FC<Props> = ({ projectDetails, handleChange }) => {
|
|
|
|
const [monthModal, setmonthModal] = useState(false);
|
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
|
|
|
|
const { data: stateGroups } = useSWR(
|
|
|
|
workspaceSlug && projectId ? STATES_LIST(projectId as string) : null,
|
|
|
|
workspaceSlug && projectId
|
|
|
|
? () => stateService.getStates(workspaceSlug as string, projectId as string)
|
|
|
|
: null
|
|
|
|
);
|
2023-07-26 17:50:44 +00:00
|
|
|
const states = getStatesList(stateGroups);
|
2023-07-13 06:04:37 +00:00
|
|
|
|
|
|
|
const options = states
|
|
|
|
?.filter((state) => state.group === "cancelled")
|
|
|
|
.map((state) => ({
|
|
|
|
value: state.id,
|
|
|
|
query: state.name,
|
|
|
|
content: (
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
{getStateGroupIcon(state.group, "16", "16", state.color)}
|
|
|
|
{state.name}
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
}));
|
|
|
|
|
2023-07-26 17:50:44 +00:00
|
|
|
const multipleOptions = (options ?? []).length > 1;
|
2023-07-13 06:04:37 +00:00
|
|
|
|
|
|
|
const defaultState = stateGroups && stateGroups.cancelled ? stateGroups.cancelled[0].id : null;
|
|
|
|
|
|
|
|
const selectedOption = states?.find(
|
|
|
|
(s) => s.id === projectDetails?.default_state ?? defaultState
|
|
|
|
);
|
2023-07-26 17:50:44 +00:00
|
|
|
const currentDefaultState = states?.find((s) => s.id === defaultState);
|
2023-07-13 06:04:37 +00:00
|
|
|
|
|
|
|
const initialValues: Partial<IProject> = {
|
|
|
|
close_in: 1,
|
|
|
|
default_state: defaultState,
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<SelectMonthModal
|
|
|
|
type="auto-close"
|
|
|
|
initialValues={initialValues}
|
|
|
|
isOpen={monthModal}
|
|
|
|
handleClose={() => setmonthModal(false)}
|
|
|
|
handleChange={handleChange}
|
|
|
|
/>
|
|
|
|
|
2023-07-21 07:07:48 +00:00
|
|
|
<div className="flex flex-col gap-7 px-6 py-5 rounded-[10px] border border-custom-border-300 bg-custom-background-90">
|
2023-07-13 06:04:37 +00:00
|
|
|
<div className="flex items-center justify-between gap-x-8 gap-y-2 ">
|
|
|
|
<div className="flex flex-col gap-2.5">
|
|
|
|
<h4 className="text-lg font-semibold">Auto-close inactive issues</h4>
|
2023-07-17 12:05:47 +00:00
|
|
|
<p className="text-sm text-custom-text-200">
|
2023-07-13 06:04:37 +00:00
|
|
|
Plane will automatically close the issues that have not been updated for the
|
|
|
|
configured time period.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<ToggleSwitch
|
|
|
|
value={projectDetails?.close_in !== 0}
|
2023-07-13 13:30:43 +00:00
|
|
|
onChange={() =>
|
|
|
|
projectDetails?.close_in === 0
|
|
|
|
? handleChange({ close_in: 1, default_state: defaultState })
|
|
|
|
: handleChange({ close_in: 0, default_state: null })
|
|
|
|
}
|
2023-07-13 06:04:37 +00:00
|
|
|
size="sm"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{projectDetails?.close_in !== 0 && (
|
|
|
|
<div className="flex flex-col gap-4 w-full">
|
|
|
|
<div className="flex items-center justify-between gap-2 w-full">
|
|
|
|
<div className="w-1/2 text-base font-medium">
|
|
|
|
Auto-close issues that are inactive for
|
|
|
|
</div>
|
2023-07-17 12:05:47 +00:00
|
|
|
<div className="w-1/2">
|
2023-07-13 06:04:37 +00:00
|
|
|
<CustomSelect
|
|
|
|
value={projectDetails?.close_in}
|
2023-07-17 12:05:47 +00:00
|
|
|
label={`${projectDetails?.close_in} ${
|
|
|
|
projectDetails?.close_in === 1 ? "Month" : "Months"
|
|
|
|
}`}
|
2023-07-13 06:04:37 +00:00
|
|
|
onChange={(val: number) => {
|
|
|
|
handleChange({ close_in: val });
|
|
|
|
}}
|
|
|
|
input
|
|
|
|
width="w-full"
|
|
|
|
>
|
|
|
|
<>
|
|
|
|
{PROJECT_AUTOMATION_MONTHS.map((month) => (
|
|
|
|
<CustomSelect.Option key={month.label} value={month.value}>
|
|
|
|
{month.label}
|
|
|
|
</CustomSelect.Option>
|
|
|
|
))}
|
|
|
|
<button
|
|
|
|
type="button"
|
2023-07-13 11:34:24 +00:00
|
|
|
className="flex w-full select-none items-center rounded px-1 py-1.5 text-custom-text-200 hover:bg-custom-background-80"
|
2023-07-13 06:04:37 +00:00
|
|
|
onClick={() => setmonthModal(true)}
|
|
|
|
>
|
2023-07-13 11:34:24 +00:00
|
|
|
Customize Time Range
|
2023-07-13 06:04:37 +00:00
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
</CustomSelect>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between gap-2 w-full">
|
|
|
|
<div className="w-1/2 text-base font-medium">Auto-close Status</div>
|
|
|
|
<div className="w-1/2 ">
|
|
|
|
<CustomSearchSelect
|
|
|
|
value={
|
|
|
|
projectDetails?.default_state ? projectDetails?.default_state : defaultState
|
|
|
|
}
|
2023-07-17 12:05:47 +00:00
|
|
|
label={
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
{selectedOption ? (
|
|
|
|
getStateGroupIcon(selectedOption.group, "16", "16", selectedOption.color)
|
|
|
|
) : currentDefaultState ? (
|
|
|
|
getStateGroupIcon(
|
|
|
|
currentDefaultState.group,
|
|
|
|
"16",
|
|
|
|
"16",
|
|
|
|
currentDefaultState.color
|
|
|
|
)
|
|
|
|
) : (
|
|
|
|
<Squares2X2Icon className="h-3.5 w-3.5 text-custom-text-200" />
|
2023-07-13 06:04:37 +00:00
|
|
|
)}
|
2023-07-17 12:05:47 +00:00
|
|
|
{selectedOption?.name
|
|
|
|
? selectedOption.name
|
|
|
|
: currentDefaultState?.name ?? (
|
|
|
|
<span className="text-custom-text-200">State</span>
|
|
|
|
)}
|
|
|
|
</div>
|
2023-07-13 06:04:37 +00:00
|
|
|
}
|
|
|
|
onChange={(val: string) => {
|
|
|
|
handleChange({ default_state: val });
|
|
|
|
}}
|
|
|
|
options={options}
|
|
|
|
disabled={!multipleOptions}
|
2023-07-17 12:05:47 +00:00
|
|
|
width="w-full"
|
|
|
|
input
|
2023-07-13 06:04:37 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|