"use client"; import React, { useMemo, 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, EIconSize, PROJECT_SETTINGS_TRACKER_ELEMENTS, PROJECT_SETTINGS_TRACKER_EVENTS, } 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 { captureElementAndEvent } from "@/helpers/event-tracker.helper"; import { useProject } from "@/hooks/store/use-project"; import { useProjectState } from "@/hooks/store/use-project-state"; import { useUserPermissions } from "@/hooks/store/user"; 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 ); const autoCloseStatus = useMemo(() => { if (currentProjectDetails?.close_in === undefined) return false; return currentProjectDetails.close_in !== 0; }, [currentProjectDetails]); return ( <> setmonthModal(false)} handleChange={handleChange} />

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

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

{ if (currentProjectDetails?.close_in === 0) { await handleChange({ close_in: 1, default_state: defaultState }); } else { await handleChange({ close_in: 0, default_state: null }); } captureElementAndEvent({ element: { elementName: PROJECT_SETTINGS_TRACKER_ELEMENTS.AUTOMATIONS_CLOSE_TOGGLE_BUTTON, }, event: { eventName: PROJECT_SETTINGS_TRACKER_EVENTS.auto_close_workitems, state: "SUCCESS", }, }); }} size="sm" disabled={!isAdmin} />
{currentProjectDetails ? ( autoCloseStatus && (
{t("project_settings.automations.auto-close.duration")}
{ handleChange({ close_in: val }); }} input disabled={!isAdmin} > <> {PROJECT_AUTOMATION_MONTHS.map((month) => ( {t(month.i18n_label, { months: 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 />
) ) : ( )} ); });