Skip to content
Snippets Groups Projects
verona.ts 3.14 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { InputElementValue } from '../../../../common/models/uI-element';
    
    
    export type NavigationTarget = 'first' | 'last' | 'previous' | 'next' | 'end';
    
    export type RunningState = 'running' | 'stopped';
    
    
    export type Progress = 'none' | 'some' | 'complete';
    
    
    export type StateReportPolicy = 'none' | 'eager' | 'on-demand';
    
    
    export type UnitStateElementCodeStatus = 'NOT_REACHED' | 'DISPLAYED' | 'VALUE_CHANGED';
    
    export enum UnitStateElementCodeStatusValue { NOT_REACHED = 0, DISPLAYED = 1, VALUE_CHANGED = 2}
    
    
    export interface StatusChangeElement {
      id: string;
      status: UnitStateElementCodeStatus;
    }
    
    
    export interface PlayerConfig {
      unitNumber?: number;
      unitTitle?: number;
      unitId?: number;
    
      stateReportPolicy?: StateReportPolicy;
    
      pagingMode?: 'separate' | 'concat-scroll' | 'concat-scroll-snap';
      logPolicy?: 'lean' | 'rich' | 'debug' | 'disabled';
      startPage?: string;
      enabledNavigationTargets?: NavigationTarget[]
    }
    
    
    export interface UnitStateElementCode {
      id: string;
      status: UnitStateElementCodeStatus;
    
    export interface UnitState {
      dataParts?: Record<string, string>;
    
      presentationProgress?: Progress;
      responseProgress?: Progress;
    
      unitStateDataType?: string;
    }
    
    export interface PlayerState {
    
      state: RunningState;
    
      validPages?: Record<string, string>;
    
      currentPage?: string;
    }
    
    export interface LogData{
      timeStamp: number,
      key: string,
      content?: string
    }
    
    export interface VopStartCommand {
      type: 'vopStartCommand';
      sessionId: string;
      unitDefinition?: string;
      unitDefinitionType?: string;
      unitState?: UnitState;
      playerConfig?: PlayerConfig;
    }
    
    export interface VopNavigationDeniedNotification {
      type: 'vopNavigationDeniedNotification';
      sessionId: string;
      reason?: Array<'presentationIncomplete' | 'responsesIncomplete'>
    }
    
    export interface VopPageNavigationCommand {
      type: 'vopPageNavigationCommand';
      sessionId: string;
      target: string;
    }
    
    export interface VopGetStateRequest {
      type: 'vopGetStateRequest';
      sessionId: string;
      stop: boolean;
    }
    
    export interface VopStopCommand {
      type: 'vopStopCommand';
      sessionId: string;
    }
    
    export interface VopContinueCommand {
      type: 'vopContinueCommand';
      sessionId: string;
    }
    
    
    export interface VopReadyNotification extends VopMetaData{
    
      type: 'vopReadyNotification';
    
      metadata: string;
    
    }
    
    export interface VopStateChangedNotification {
      type: 'vopStateChangedNotification';
      sessionId: string;
      timeStamp: number;
      unitState?: UnitState;
      playerState?: PlayerState;
      log?: LogData[];
    }
    
    export interface VopUnitNavigationRequestedNotification {
      type: 'vopUnitNavigationRequestedNotification';
      sessionId: string;
      target: 'first' | 'last' | 'previous' | 'next' | 'end';
    }
    
    export interface VopWindowFocusChangedNotification {
      type: 'vopWindowFocusChangedNotification';
      timeStamp: number;
      hasFocus: boolean;
    }
    
    export type VopMessage =
      VopStartCommand |
      VopNavigationDeniedNotification |
      VopPageNavigationCommand |
      VopGetStateRequest |
      VopStopCommand |
      VopContinueCommand |
      VopReadyNotification |
      VopStateChangedNotification |
      VopWindowFocusChangedNotification |
      VopUnitNavigationRequestedNotification;