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
134 lines
4.3 KiB
TypeScript
134 lines
4.3 KiB
TypeScript
import { create } from 'zustand'
|
|
import { devtools, persist } from 'zustand/middleware'
|
|
import type { VariablesModalStore, VariablesPosition } from '@/stores/variables/types'
|
|
|
|
/**
|
|
* Floating variables modal default dimensions.
|
|
* Slightly larger than the chat modal for more comfortable editing.
|
|
*/
|
|
const DEFAULT_WIDTH = 320
|
|
const DEFAULT_HEIGHT = 320
|
|
|
|
/**
|
|
* Minimum and maximum modal dimensions.
|
|
*/
|
|
export const MIN_VARIABLES_WIDTH = DEFAULT_WIDTH
|
|
export const MIN_VARIABLES_HEIGHT = DEFAULT_HEIGHT
|
|
export const MAX_VARIABLES_WIDTH = 500
|
|
export const MAX_VARIABLES_HEIGHT = 600
|
|
|
|
/** Inset gap between the viewport edge and the content window */
|
|
const CONTENT_WINDOW_GAP = 8
|
|
|
|
/**
|
|
* Compute a center-biased default position, factoring in current layout chrome
|
|
* (sidebar, right panel, terminal) and content window inset.
|
|
*/
|
|
const calculateDefaultPosition = (): VariablesPosition => {
|
|
if (typeof window === 'undefined') {
|
|
return { x: 100, y: 100 }
|
|
}
|
|
|
|
const sidebarWidth = Number.parseInt(
|
|
getComputedStyle(document.documentElement).getPropertyValue('--sidebar-width') || '0'
|
|
)
|
|
const panelWidth = Number.parseInt(
|
|
getComputedStyle(document.documentElement).getPropertyValue('--panel-width') || '0'
|
|
)
|
|
const terminalHeight = Number.parseInt(
|
|
getComputedStyle(document.documentElement).getPropertyValue('--terminal-height') || '0'
|
|
)
|
|
|
|
const availableWidth = window.innerWidth - sidebarWidth - CONTENT_WINDOW_GAP - panelWidth
|
|
const availableHeight = window.innerHeight - CONTENT_WINDOW_GAP * 2 - terminalHeight
|
|
const x = sidebarWidth + (availableWidth - DEFAULT_WIDTH) / 2
|
|
const y = CONTENT_WINDOW_GAP + (availableHeight - DEFAULT_HEIGHT) / 2
|
|
return { x, y }
|
|
}
|
|
|
|
/**
|
|
* Constrain a position to the visible canvas, considering layout chrome.
|
|
*/
|
|
const constrainPosition = (
|
|
position: VariablesPosition,
|
|
width: number = DEFAULT_WIDTH,
|
|
height: number = DEFAULT_HEIGHT
|
|
): VariablesPosition => {
|
|
if (typeof window === 'undefined') return position
|
|
|
|
const sidebarWidth = Number.parseInt(
|
|
getComputedStyle(document.documentElement).getPropertyValue('--sidebar-width') || '0'
|
|
)
|
|
const panelWidth = Number.parseInt(
|
|
getComputedStyle(document.documentElement).getPropertyValue('--panel-width') || '0'
|
|
)
|
|
const terminalHeight = Number.parseInt(
|
|
getComputedStyle(document.documentElement).getPropertyValue('--terminal-height') || '0'
|
|
)
|
|
|
|
const minX = sidebarWidth
|
|
const maxX = window.innerWidth - CONTENT_WINDOW_GAP - panelWidth - width
|
|
const minY = CONTENT_WINDOW_GAP
|
|
const maxY = window.innerHeight - CONTENT_WINDOW_GAP - terminalHeight - height
|
|
|
|
return {
|
|
x: Math.max(minX, Math.min(maxX, position.x)),
|
|
y: Math.max(minY, Math.min(maxY, position.y)),
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return a valid, constrained position. If the stored one is off-bounds due to
|
|
* layout changes, prefer a fresh default center position.
|
|
*/
|
|
export const getVariablesPosition = (
|
|
stored: VariablesPosition | null,
|
|
width: number = DEFAULT_WIDTH,
|
|
height: number = DEFAULT_HEIGHT
|
|
): VariablesPosition => {
|
|
if (!stored) return calculateDefaultPosition()
|
|
const constrained = constrainPosition(stored, width, height)
|
|
const deltaX = Math.abs(constrained.x - stored.x)
|
|
const deltaY = Math.abs(constrained.y - stored.y)
|
|
if (deltaX > 100 || deltaY > 100) return calculateDefaultPosition()
|
|
return constrained
|
|
}
|
|
|
|
/**
|
|
* UI-only store for the floating variables modal.
|
|
* Variable data lives in the variables data store (`@/stores/variables/store`).
|
|
*/
|
|
export const useVariablesModalStore = create<VariablesModalStore>()(
|
|
devtools(
|
|
persist(
|
|
(set) => ({
|
|
isOpen: false,
|
|
position: null,
|
|
width: DEFAULT_WIDTH,
|
|
height: DEFAULT_HEIGHT,
|
|
|
|
setIsOpen: (open) => set({ isOpen: open }),
|
|
setPosition: (position) => set({ position }),
|
|
setDimensions: (dimensions) =>
|
|
set({
|
|
width: Math.max(MIN_VARIABLES_WIDTH, Math.min(MAX_VARIABLES_WIDTH, dimensions.width)),
|
|
height: Math.max(
|
|
MIN_VARIABLES_HEIGHT,
|
|
Math.min(MAX_VARIABLES_HEIGHT, dimensions.height)
|
|
),
|
|
}),
|
|
resetPosition: () => set({ position: null }),
|
|
}),
|
|
{
|
|
name: 'variables-modal-store',
|
|
partialize: (state) => ({
|
|
position: state.position,
|
|
width: state.width,
|
|
height: state.height,
|
|
}),
|
|
}
|
|
),
|
|
{ name: 'variables-modal-store' }
|
|
)
|
|
)
|