"use client"; import React, { useState } from "react"; import { observer } from "mobx-react"; import { useParams } from "next/navigation"; // icons import { ArchiveX } from "lucide-react"; // types import { PROJECT_AUTOMATION_MONTHS, EUserPermissions, EUserPermissionsLevel } from "@plane/constants"; import { useTranslation } from "@plane/i18n"; import { IProject } from "@plane/types"; // ui import { CustomSelect, CustomSearchSelect, ToggleSwitch, StateGroupIcon, DoubleCircleIcon, Loader } from "@plane/ui"; // component import { SelectMonthModal } from "@/components/automation"; // constants // hooks import { useProject, useProjectState, useUserPermissions } from "@/hooks/store"; type Props = { handleChange: (formData: Partial) => Promise; }; export const AutoCloseAutomation: React.FC = observer((props) => { const { handleChange } = props; // router const { workspaceSlug } = useParams(); // states const [monthModal, setmonthModal] = useState(false); // store hooks const { currentProjectDetails } = useProject(); const { projectStates } = useProjectState(); const { allowPermissions } = useUserPermissions(); const { t } = useTranslation(); // const stateGroups = projectStateStore.groupedProjectStates ?? undefined; const options = projectStates ?.filter((state) => state.group === "cancelled") .map((state) => ({ value: state.id, query: state.name, content: (
{state.name}
), })); const multipleOptions = (options ?? []).length > 1; const defaultState = projectStates?.find((s) => s.group === "cancelled")?.id || null; const selectedOption = projectStates?.find((s) => s.id === (currentProjectDetails?.default_state ?? defaultState)); const currentDefaultState = projectStates?.find((s) => s.id === defaultState); const initialValues: Partial = { close_in: 1, default_state: defaultState, }; const isAdmin = allowPermissions( [EUserPermissions.ADMIN], EUserPermissionsLevel.PROJECT, workspaceSlug?.toString(), currentProjectDetails?.id ); return ( <> setmonthModal(false)} handleChange={handleChange} />

{t("project_settings.automations.auto-close.title")}

{t("project_settings.automations.auto-close.description")}

currentProjectDetails?.close_in === 0 ? handleChange({ close_in: 1, default_state: defaultState }) : handleChange({ close_in: 0, default_state: null }) } size="sm" disabled={!isAdmin} />
{currentProjectDetails ? ( currentProjectDetails.close_in !== 0 && (
{t("project_settings.automations.auto-close.duration")}
{ handleChange({ close_in: val }); }} input disabled={!isAdmin} > <> {PROJECT_AUTOMATION_MONTHS.map((month) => ( {t(month.i18n_label, { month: month.value })} ))}
{t("project_settings.automations.auto-close.auto_close_status")}
{selectedOption ? ( ) : currentDefaultState ? ( ) : ( )} {selectedOption?.name ? selectedOption.name : (currentDefaultState?.name ?? {t("state")})}
} onChange={(val: string) => { handleChange({ default_state: val }); }} options={options} disabled={!multipleOptions} input />
) ) : ( )} ); });