"use client"; import { useState, useEffect, useCallback, useMemo } from "react"; import MultiSelect from "../../../../components/controls/MultiSelect"; import type { ChipOption } from "../../../../components/controls/MultiSelect/MultiSelect.types"; import Create from "../../../../components/modals/Create"; import ContentLockup from "../../../../components/type/ContentLockup"; import { useMessages } from "../../../../contexts/MessagesContext"; import { buildCoreValueChipOptionsFromDraft } from "../../../../../lib/create/coreValueChipOptionsFromDraft"; import { useCreateFlow } from "../../context/CreateFlowContext"; import type { CommunityStructureChipSnapshotRow, CoreValueDetailEntry, } from "../../types"; import { CreateFlowHeaderLockup } from "../../components/CreateFlowHeaderLockup"; import { CreateFlowTwoColumnSelectShell } from "../../components/CreateFlowTwoColumnSelectShell"; import { CoreValueEditFields } from "../../components/methodEditFields"; const MAX_CORE_VALUES = 5; /** * Why three sessions, not two: * * - `pending` — preset chip just selected; modal opened to capture * meaning/signals. Dismiss = unselect the chip (keep it in the * preset row, just not selected). * - `customPending` — brand-new custom chip just created via the Add * value flow; modal opened with empty fields. Dismiss = drop the * chip entirely (it was never confirmed via the Add Value button). * - `editing` — chip already exists & is selected; modal reopened to * tweak meaning/signals. Dismiss = no-op (chip stays as-is). */ type ModalSession = "pending" | "customPending" | "editing"; /** Row in `coreValues.json` `values` — string (legacy) or `{ label, meaning, signals }`. */ type CoreValuePresetJson = | string | { label: string; meaning?: string; signals?: string }; type CoreValuePreset = { label: string; meaning: string; signals: string; }; function normalizeCoreValuePresets( values: readonly CoreValuePresetJson[], ): CoreValuePreset[] { return values.map((v) => { if (typeof v === "string") { return { label: v, meaning: "", signals: "" }; } return { label: v.label, meaning: typeof v.meaning === "string" ? v.meaning : "", signals: typeof v.signals === "string" ? v.signals : "", }; }); } function selectedIdsFromOptions(options: ChipOption[]): string[] { return options .filter((o) => o.state === "selected") .map((o) => o.id); } function chipOptionsToSnapshotRows( options: ChipOption[], ): CommunityStructureChipSnapshotRow[] { return options.map((o) => ({ id: o.id, label: o.label, ...(o.state !== undefined ? { state: o.state } : {}), })); } const EMPTY_DETAIL: CoreValueDetailEntry = { meaning: "", signals: "" }; /** Create Custom — Core Values (Figma `20264:68378`). Up to five selections; preset list + custom chips. */ export function CoreValuesSelectScreen() { const m = useMessages(); const cv = m.create.customRule.coreValues; const presets = useMemo( () => normalizeCoreValuePresets(cv.values as CoreValuePresetJson[]), [cv.values], ); const { markCreateFlowInteraction, updateState, state } = useCreateFlow(); const [coreValueOptions, setCoreValueOptions] = useState(() => buildCoreValueChipOptionsFromDraft( presets, state.coreValuesChipsSnapshot, state.selectedCoreValueIds, ), ); const [activeModalChipId, setActiveModalChipId] = useState( null, ); const [modalSession, setModalSession] = useState(null); const [draft, setDraft] = useState(EMPTY_DETAIL); useEffect(() => { setCoreValueOptions( buildCoreValueChipOptionsFromDraft( presets, state.coreValuesChipsSnapshot, state.selectedCoreValueIds, ), ); }, [ presets, state.coreValuesChipsSnapshot, state.selectedCoreValueIds, ]); /** Sync chips to create-flow draft. Never call `updateState` from inside a `setCoreValueOptions` updater — defer with `queueMicrotask`. */ const syncCoreValuesToDraft = useCallback( (next: ChipOption[]) => { updateState({ selectedCoreValueIds: selectedIdsFromOptions(next), coreValuesChipsSnapshot: chipOptionsToSnapshotRows(next), }); }, [updateState], ); const persistCoreValues = useCallback( (next: ChipOption[]) => { markCreateFlowInteraction(); setCoreValueOptions(next); syncCoreValuesToDraft(next); }, [markCreateFlowInteraction, syncCoreValuesToDraft], ); /** Default meaning/signals from `coreValues.json` `values` for each preset label. */ const getPresetTexts = useCallback( (valueLabel: string): CoreValueDetailEntry => { const row = presets.find((p) => p.label === valueLabel); if (!row) return EMPTY_DETAIL; return { meaning: row.meaning, signals: row.signals }; }, [presets], ); const getInitialTexts = useCallback( (chipId: string, valueLabel: string): CoreValueDetailEntry => { const saved = state.coreValueDetailsByChipId?.[chipId]; const preset = getPresetTexts(valueLabel); return { meaning: saved?.meaning ?? preset.meaning, signals: saved?.signals ?? preset.signals, }; }, [state.coreValueDetailsByChipId, getPresetTexts], ); const openModal = useCallback( (chipId: string, session: ModalSession, valueLabel: string) => { setDraft(getInitialTexts(chipId, valueLabel)); setActiveModalChipId(chipId); setModalSession(session); markCreateFlowInteraction(); }, [getInitialTexts, markCreateFlowInteraction], ); const handleDraftChange = useCallback( (next: CoreValueDetailEntry) => { markCreateFlowInteraction(); setDraft(next); }, [markCreateFlowInteraction], ); const handleModalDismiss = useCallback(() => { if (activeModalChipId && modalSession === "pending") { const next = coreValueOptions.map((opt) => opt.id === activeModalChipId ? { ...opt, state: "unselected" as const } : opt, ); persistCoreValues(next); } else if (activeModalChipId && modalSession === "customPending") { // Custom chip never confirmed via Add Value — drop it from both // the local options and the create-flow draft so refresh / back // navigation doesn't resurrect a phantom chip. const next = coreValueOptions.filter( (opt) => opt.id !== activeModalChipId, ); persistCoreValues(next); } setActiveModalChipId(null); setModalSession(null); }, [activeModalChipId, modalSession, coreValueOptions, persistCoreValues]); const handleModalConfirm = useCallback(() => { if (!activeModalChipId) return; markCreateFlowInteraction(); updateState({ coreValueDetailsByChipId: { ...(state.coreValueDetailsByChipId ?? {}), [activeModalChipId]: draft, }, }); setActiveModalChipId(null); setModalSession(null); }, [ activeModalChipId, draft, markCreateFlowInteraction, state.coreValueDetailsByChipId, updateState, ]); const handleChipClick = (chipId: string) => { const target = coreValueOptions.find((o) => o.id === chipId); if (!target || target.state === "custom") return; const selectedCount = coreValueOptions.filter( (o) => o.state === "selected", ).length; if (target.state === "selected") { const next: ChipOption[] = coreValueOptions.map((opt) => opt.id === chipId ? { ...opt, state: "unselected" as const } : opt, ); persistCoreValues(next); return; } if (selectedCount >= MAX_CORE_VALUES) return; const next: ChipOption[] = coreValueOptions.map((opt) => opt.id === chipId ? { ...opt, state: "selected" as const } : opt, ); persistCoreValues(next); openModal(chipId, "pending", target.label); }; const addHandlers = { onAddClick: () => { markCreateFlowInteraction(); setCoreValueOptions((prev) => { const next: ChipOption[] = [ ...prev, { id: crypto.randomUUID(), label: "", state: "custom" }, ]; queueMicrotask(() => syncCoreValuesToDraft(next)); return next; }); }, onCustomChipConfirm: (chipId: string, value: string) => { markCreateFlowInteraction(); setCoreValueOptions((prev) => { const withLabel = prev.map((opt) => opt.id === chipId ? { ...opt, label: value, state: "unselected" as const } : opt, ); const selectedCount = withLabel.filter( (o) => o.state === "selected", ).length; const canSelect = selectedCount < MAX_CORE_VALUES; const next = canSelect ? withLabel.map((opt) => opt.id === chipId ? { ...opt, state: "selected" as const } : opt, ) : withLabel; queueMicrotask(() => { syncCoreValuesToDraft(next); // Both branches treat the chip as a brand-new draft until the // user confirms via Add Value — dismissal removes it. openModal(chipId, "customPending", value); }); return next; }); }, onCustomChipClose: (chipId: string) => { markCreateFlowInteraction(); setCoreValueOptions((prev) => { const next = prev.filter((o) => o.id !== chipId); queueMicrotask(() => syncCoreValuesToDraft(next)); return next; }); }, }; const modalChipLabel = coreValueOptions.find((o) => o.id === activeModalChipId)?.label ?? ""; const description = ( <> {cv.header.descriptionLead}{" "} {" "} {cv.header.descriptionTrail} ); const detailModal = cv.detailModal; return ( } > {detailModal && ( } showBackButton={false} showNextButton onNext={handleModalConfirm} nextButtonText={detailModal.addValueButton} ariaLabel={modalChipLabel || "Core value details"} > )} ); }