101 lines
3.5 KiB
TypeScript
101 lines
3.5 KiB
TypeScript
import type { CreateFlowState } from "../../app/(app)/create/types";
|
|
import type { PublishedMethodSelections } from "./buildPublishPayload";
|
|
import type { StoredLastPublishedRule } from "./lastPublishedRule";
|
|
|
|
/**
|
|
* Rehydrate create-flow fields from a stored published rule so `/create/edit-rule`
|
|
* can render final-review editors after refresh or when branching from completed.
|
|
*/
|
|
export function createFlowStateFromPublishedRule(
|
|
rule: StoredLastPublishedRule,
|
|
): Partial<CreateFlowState> {
|
|
const doc = rule.document;
|
|
const out: Partial<CreateFlowState> = {
|
|
title: rule.title,
|
|
editingPublishedRuleId: rule.id,
|
|
};
|
|
const sum = typeof rule.summary === "string" ? rule.summary.trim() : "";
|
|
if (sum.length > 0) {
|
|
out.communityContext = sum;
|
|
out.summary = sum;
|
|
}
|
|
|
|
const coreValues = doc.coreValues;
|
|
if (Array.isArray(coreValues) && coreValues.length > 0) {
|
|
const selectedCoreValueIds: string[] = [];
|
|
const coreValuesChipsSnapshot: NonNullable<
|
|
CreateFlowState["coreValuesChipsSnapshot"]
|
|
> = [];
|
|
const coreValueDetailsByChipId: NonNullable<
|
|
CreateFlowState["coreValueDetailsByChipId"]
|
|
> = {};
|
|
|
|
for (const row of coreValues) {
|
|
if (!row || typeof row !== "object") continue;
|
|
const o = row as Record<string, unknown>;
|
|
const chipIdRaw = typeof o.chipId === "string" ? o.chipId.trim() : "";
|
|
const label = typeof o.label === "string" ? o.label.trim() : "";
|
|
if (!label) continue;
|
|
const chipId =
|
|
chipIdRaw.length > 0 ? chipIdRaw : `hydrated-${label.toLowerCase()}`;
|
|
selectedCoreValueIds.push(chipId);
|
|
coreValuesChipsSnapshot.push({
|
|
id: chipId,
|
|
label,
|
|
state: "selected",
|
|
});
|
|
coreValueDetailsByChipId[chipId] = {
|
|
meaning: typeof o.meaning === "string" ? o.meaning : "",
|
|
signals: typeof o.signals === "string" ? o.signals : "",
|
|
};
|
|
}
|
|
out.selectedCoreValueIds = selectedCoreValueIds;
|
|
out.coreValuesChipsSnapshot = coreValuesChipsSnapshot;
|
|
out.coreValueDetailsByChipId = coreValueDetailsByChipId;
|
|
}
|
|
|
|
const msRaw = doc.methodSelections;
|
|
if (!msRaw || typeof msRaw !== "object" || Array.isArray(msRaw)) {
|
|
out.sections = [];
|
|
return out;
|
|
}
|
|
const ms = msRaw as PublishedMethodSelections;
|
|
|
|
if (Array.isArray(ms.communication) && ms.communication.length > 0) {
|
|
out.selectedCommunicationMethodIds = ms.communication.map((x) => x.id);
|
|
out.communicationMethodDetailsById = Object.fromEntries(
|
|
ms.communication.map((x) => [x.id, x.sections]),
|
|
);
|
|
}
|
|
if (Array.isArray(ms.membership) && ms.membership.length > 0) {
|
|
out.selectedMembershipMethodIds = ms.membership.map((x) => x.id);
|
|
out.membershipMethodDetailsById = Object.fromEntries(
|
|
ms.membership.map((x) => [x.id, x.sections]),
|
|
);
|
|
}
|
|
if (
|
|
Array.isArray(ms.decisionApproaches) &&
|
|
ms.decisionApproaches.length > 0
|
|
) {
|
|
out.selectedDecisionApproachIds = ms.decisionApproaches.map((x) => x.id);
|
|
out.decisionApproachDetailsById = Object.fromEntries(
|
|
ms.decisionApproaches.map((x) => [x.id, x.sections]),
|
|
);
|
|
}
|
|
if (
|
|
Array.isArray(ms.conflictManagement) &&
|
|
ms.conflictManagement.length > 0
|
|
) {
|
|
out.selectedConflictManagementIds = ms.conflictManagement.map(
|
|
(x) => x.id,
|
|
);
|
|
out.conflictManagementDetailsById = Object.fromEntries(
|
|
ms.conflictManagement.map((x) => [x.id, x.sections]),
|
|
);
|
|
}
|
|
|
|
/** Drop template `sections` so final-review uses `methodSelections` / selected ids (edit path). */
|
|
out.sections = [];
|
|
return out;
|
|
}
|