Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

124 lines
4.1 KiB
TypeScript

import { create } from 'zustand'
import { persist } from 'zustand/middleware'
import { OUTPUT_PANEL_WIDTH, TERMINAL_HEIGHT } from '@/stores/constants'
import type { TerminalState } from './types'
export const useTerminalStore = create<TerminalState>()(
persist(
(set) => ({
terminalHeight: TERMINAL_HEIGHT.DEFAULT,
lastExpandedHeight: TERMINAL_HEIGHT.DEFAULT,
isResizing: false,
/**
* Updates the terminal height and synchronizes the CSS custom property.
*
* @remarks
* - Enforces a minimum height to keep the resize handle usable.
* - Persists {@link TerminalState.lastExpandedHeight} only when the
* height is expanded above the minimum.
*
* @param height - Desired terminal height in pixels.
*/
setTerminalHeight: (height) => {
const clampedHeight = Math.max(TERMINAL_HEIGHT.MIN, height)
set((state) => ({
terminalHeight: clampedHeight,
lastExpandedHeight:
clampedHeight > TERMINAL_HEIGHT.MIN ? clampedHeight : state.lastExpandedHeight,
}))
// Update CSS variable for immediate visual feedback
if (typeof window !== 'undefined') {
document.documentElement.style.setProperty('--terminal-height', `${clampedHeight}px`)
}
},
/**
* Updates the terminal resize state used to coordinate layout transitions.
*
* @param isResizing - True while the terminal is being resized via mouse drag.
*/
setIsResizing: (isResizing) => {
set({ isResizing })
},
outputPanelWidth: OUTPUT_PANEL_WIDTH.DEFAULT,
/**
* Updates the output panel width, enforcing the minimum constraint.
*
* @param width - Desired width in pixels for the output panel.
*/
setOutputPanelWidth: (width) => {
const clampedWidth = Math.max(OUTPUT_PANEL_WIDTH.MIN, width)
set({ outputPanelWidth: clampedWidth })
},
openOnRun: true,
/**
* Enables or disables automatic terminal opening when new entries are added.
*
* @param open - Whether the terminal should open on new console entries.
*/
setOpenOnRun: (open) => {
set({ openOnRun: open })
},
wrapText: true,
/**
* Enables or disables text wrapping in the output panel.
*
* @param wrap - Whether output text should wrap.
*/
setWrapText: (wrap) => {
set({ wrapText: wrap })
},
structuredView: true,
/**
* Enables or disables structured view mode in the output panel.
*
* @param structured - Whether output should be displayed as nested blocks.
*/
setStructuredView: (structured) => {
set({ structuredView: structured })
},
/**
* Indicates whether the terminal store has finished client-side hydration.
*/
_hasHydrated: false,
/**
* Marks the store as hydrated on the client.
*
* @param hasHydrated - True when client-side hydration is complete.
*/
setHasHydrated: (hasHydrated) => {
set({ _hasHydrated: hasHydrated })
},
}),
{
name: 'terminal-state',
/**
* Persist only the durable terminal UI preferences. The transient
* `isResizing` drag flag and the `_hasHydrated` hydration marker are
* excluded so they always start fresh on load.
*/
partialize: (state) => ({
terminalHeight: state.terminalHeight,
lastExpandedHeight: state.lastExpandedHeight,
outputPanelWidth: state.outputPanelWidth,
openOnRun: state.openOnRun,
wrapText: state.wrapText,
structuredView: state.structuredView,
}),
/**
* Synchronizes the `--terminal-height` CSS custom property with the
* persisted store value after client-side rehydration.
*/
onRehydrateStorage: () => (state) => {
if (state && typeof window !== 'undefined') {
document.documentElement.style.setProperty(
'--terminal-height',
`${state.terminalHeight}px`
)
}
},
}
)
)