clapper / src /services /ui /getDefaultUIState.ts
jbilcke-hf's picture
jbilcke-hf HF staff
first version of the video analyzer
5bd8810
raw
history blame
633 Bytes
import {
ProjectCreationWizardStep,
SettingsCategory,
UIState,
} from '@aitube/clapper-services'
export function getDefaultUIState(): UIState {
const state: UIState = {
isTopMenuOpen: false,
showWelcomeScreen: true,
hasBetaAccess: false,
themeName: 'backstage',
showApiKeys: false,
showSettings: SettingsCategory.NONE,
showImporter: false,
showTimeline: true,
showExplorer: false,
showVideoPlayer: true,
showAssistant: false,
showFPS: false,
followCursor: false,
editorFontSize: 12,
projectCreationWizardStep: ProjectCreationWizardStep.NONE,
}
return state
}