HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/diasporameetsafrica.com/wp-content/plugins/extendify/src/QuickEdit/state/store.js
import { create } from 'zustand';

export const useQuickEditStore = create((set, get) => ({
	hovered: null,
	// Quick Edit canvas-mount target — set when the user clicks the Quick
	// Edit pill. See click-rule.js's module header for the full unified
	// selector contract; this and `agentBlock` are the two selection
	// slots Quick Edit and the AI Agent share.
	selected: null,
	dirty: {},
	saving: false,
	error: null,
	// Ask AI staged block — see buildAgentBlockDescriptor for the shape.
	// Distinct from `selected` by design: a QE canvas opens a modal flow
	// for one block, while an Ask AI selection stages a block for a
	// multi-turn workflow.
	agentBlock: null,
	agentBlockCode: null,
	// Sticky pre-pill-action selection — set when the user clicks a tagged
	// block on the live front end. While set, hover on other tagged blocks
	// is suppressed and the bar/outline stay pinned. Cleared by an outside
	// click, a click on a different tagged block, or a pill action (which
	// hands off to `selected` / `agentBlock`). Shape mirrors buildTarget:
	// { el, blockType, blockId, source }.
	committedSelection: null,

	setHovered: (target) => set({ hovered: target }),
	setSelected: (target) => set({ selected: target, dirty: {}, error: null }),
	clearSelected: () => set({ selected: null, dirty: {}, error: null }),

	setAgentBlock: (agentBlock) => set({ agentBlock, agentBlockCode: null }),
	setAgentBlockCode: (agentBlockCode) => set({ agentBlockCode }),

	setCommittedSelection: (committedSelection) => set({ committedSelection }),

	setField: (fieldKey, value) =>
		set((state) => ({
			dirty: { ...state.dirty, [fieldKey]: value },
		})),

	setSaving: (saving) => set({ saving }),
	setError: (error) => set({ error }),

	getPatches: () => {
		const dirty = get().dirty;
		return Object.entries(dirty).map(([fieldKey, value]) => ({
			fieldKey,
			value,
		}));
	},
}));