d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
146 lines
4.6 KiB
TypeScript
146 lines
4.6 KiB
TypeScript
'use client'
|
|
|
|
import { create } from 'zustand'
|
|
import { persist } from 'zustand/middleware'
|
|
import type {
|
|
WorkflowSearchRange,
|
|
WorkflowSearchTarget,
|
|
WorkflowSearchValuePath,
|
|
} from '@/lib/workflows/search-replace/types'
|
|
import { EDITOR_CONNECTIONS_HEIGHT } from '@/stores/constants'
|
|
import { usePanelStore } from '../store'
|
|
|
|
let renameCallback: (() => void) | null = null
|
|
|
|
export type ActiveSearchTargetKind = WorkflowSearchTarget['kind']
|
|
|
|
export interface ActiveSearchTarget {
|
|
matchId: string
|
|
blockId: string
|
|
subBlockId: string
|
|
canonicalSubBlockId: string
|
|
valuePath: WorkflowSearchValuePath
|
|
kind: string
|
|
targetKind: ActiveSearchTargetKind
|
|
subBlockType: string
|
|
rawValue: string
|
|
searchText: string
|
|
query: string
|
|
range?: WorkflowSearchRange
|
|
structuredOccurrenceIndex?: number
|
|
displayLabel?: string
|
|
resourceGroupKey?: string
|
|
}
|
|
|
|
/**
|
|
* State for the Editor panel.
|
|
* Tracks the currently selected block to edit its subblocks/values and connections panel height.
|
|
*/
|
|
interface PanelEditorState {
|
|
/** Currently selected block identifier, or null when nothing is selected */
|
|
currentBlockId: string | null
|
|
/** Sets the current selected block identifier (use null to clear) */
|
|
setCurrentBlockId: (blockId: string | null) => void
|
|
/** Clears the current selection */
|
|
clearCurrentBlock: () => void
|
|
/** Height of the connections section in pixels */
|
|
connectionsHeight: number
|
|
/** Sets the connections section height */
|
|
setConnectionsHeight: (height: number) => void
|
|
/** Toggle connections between collapsed (min height) and expanded (default height) */
|
|
toggleConnectionsCollapsed: () => void
|
|
/** Register the rename callback (called by Editor on mount) */
|
|
registerRenameCallback: (callback: (() => void) | null) => void
|
|
/** Trigger rename mode by invoking the registered callback */
|
|
triggerRename: () => void
|
|
}
|
|
|
|
interface PanelEditorSearchState {
|
|
/** Ephemeral workflow search target used for scrolling/highlighting editor fields */
|
|
activeSearchTarget: ActiveSearchTarget | null
|
|
/** Sets an active search target to highlight in the editor */
|
|
setActiveSearchTarget: (target: ActiveSearchTarget | null) => void
|
|
}
|
|
|
|
export const usePanelEditorSearchStore = create<PanelEditorSearchState>()((set) => ({
|
|
activeSearchTarget: null,
|
|
setActiveSearchTarget: (target) => {
|
|
set({ activeSearchTarget: target })
|
|
if (target) {
|
|
usePanelStore.getState().setActiveTab('editor')
|
|
}
|
|
},
|
|
}))
|
|
|
|
/**
|
|
* Editor panel store.
|
|
* Persisted to preserve selection across navigations/refreshes.
|
|
*/
|
|
export const usePanelEditorStore = create<PanelEditorState>()(
|
|
persist(
|
|
(set, get) => ({
|
|
currentBlockId: null,
|
|
connectionsHeight: EDITOR_CONNECTIONS_HEIGHT.DEFAULT,
|
|
registerRenameCallback: (callback) => {
|
|
renameCallback = callback
|
|
},
|
|
triggerRename: () => {
|
|
renameCallback?.()
|
|
},
|
|
setCurrentBlockId: (blockId) => {
|
|
set({ currentBlockId: blockId })
|
|
if (blockId !== null) {
|
|
usePanelStore.getState().setActiveTab('editor')
|
|
}
|
|
},
|
|
clearCurrentBlock: () => {
|
|
set({ currentBlockId: null })
|
|
usePanelEditorSearchStore.getState().setActiveSearchTarget(null)
|
|
},
|
|
setConnectionsHeight: (height) => {
|
|
const clampedHeight = Math.max(
|
|
EDITOR_CONNECTIONS_HEIGHT.MIN,
|
|
Math.min(EDITOR_CONNECTIONS_HEIGHT.MAX, height)
|
|
)
|
|
set({ connectionsHeight: clampedHeight })
|
|
if (typeof window !== 'undefined') {
|
|
document.documentElement.style.setProperty(
|
|
'--editor-connections-height',
|
|
`${clampedHeight}px`
|
|
)
|
|
}
|
|
},
|
|
toggleConnectionsCollapsed: () => {
|
|
const currentState = get()
|
|
const isAtMinHeight = currentState.connectionsHeight <= 35
|
|
const newHeight = isAtMinHeight
|
|
? EDITOR_CONNECTIONS_HEIGHT.DEFAULT
|
|
: EDITOR_CONNECTIONS_HEIGHT.MIN
|
|
|
|
set({ connectionsHeight: newHeight })
|
|
if (typeof window !== 'undefined') {
|
|
document.documentElement.style.setProperty(
|
|
'--editor-connections-height',
|
|
`${newHeight}px`
|
|
)
|
|
}
|
|
},
|
|
}),
|
|
{
|
|
name: 'panel-editor-state',
|
|
partialize: (state) => ({
|
|
currentBlockId: state.currentBlockId,
|
|
connectionsHeight: state.connectionsHeight,
|
|
}),
|
|
onRehydrateStorage: () => (state) => {
|
|
if (state && typeof window !== 'undefined') {
|
|
document.documentElement.style.setProperty(
|
|
'--editor-connections-height',
|
|
`${state.connectionsHeight || EDITOR_CONNECTIONS_HEIGHT.DEFAULT}px`
|
|
)
|
|
}
|
|
},
|
|
}
|
|
)
|
|
)
|