Options
All
  • Public
  • Public/Protected
  • All
Menu

This object can be used to control the room and perform operations on the room

Hierarchy

  • Room

Index

Properties

roomState: WhiteRoomState

Return the room states. Include pages, boxState, memberState, and so on

Methods

  • addApp(kind: string, options: any, attributes: any): Promise<string>
  • Add Window

    Parameters

    • kind: string

      Window type

    • options: any

      Window Configuration

    • attributes: any

      Some additional optional properties required by the window

    Returns Promise<string>

  • addPage(params: AddPageParams): Promise<void>
  • Insert a new page

    Parameters

    • params: AddPageParams

    Returns Promise<void>

  • canRedoSteps(): Promise<number>
  • canUndoSteps(): Promise<number>
  • cleanScene(retainPpt: boolean): any
  • Clear all contents of the current scene.

    Parameters

    • retainPpt: boolean

      whether to retain the ppt content

    Returns any

  • closeApp(appId: string): Promise<void>
  • Close the specified window

    Parameters

    • appId: string

    Returns Promise<void>

  • completeImageUpload(uuid: string, url: string): any
  • Show image

    Before calling this method, make sure you have called the insertImage method to insert a display area for the image on the whiteboard.

    Parameters

    • uuid: string

      The UUID of the image display area, i.e. the image UUID passed in the imageInfo of the insertImage method

    • url: string

      The URL address of the image. You must ensure that the app client can access the URL, otherwise the image will not be displayed properly.

    Returns any

  • copy(): any
  • Copy the current selection, only valid when there is a selection

    Returns any

  • debugInfo(): Promise<object>
  • delete(): any
  • Delete the selected content

    Returns any

  • disableCameraTransform(disableCamera: boolean): any
  • Disable/allow the user to adjust (move or zoom) the view.

    Parameters

    • disableCamera: boolean

    Returns any

  • disableDeviceInputs(disable: boolean): any
  • Disable/allow users to operate the tool.

    Parameters

    • disable: boolean

    Returns any

  • disableEraseImage(disable: boolean): any
  • Disable image erasing. The default is false

    Parameters

    • disable: boolean

    Returns any

  • disableSerialization(disable: boolean): any
  • Whether or not to disable serialization and use undo and redo locally only after disabling it. The default is true

    Parameters

    • disable: boolean

    Returns any

  • disableWindowOperation(disable: boolean): any
  • Set readonly mode for all apps.

    Parameters

    • disable: boolean

    Returns any

  • disconnect(): Promise<void>
  • Disconnect from the whiteboard room.

    Returns Promise<void>

  • dispatchMagixEvent(event: EventEntry): any
  • Send custom events.

    Parameters

    • event: EventEntry

    Returns any

  • duplicate(): any
  • Copy and paste the selected content, only valid when there is a selection

    Returns any

  • getBroadcastState(): Promise<BroadcastState>
  • getGlobalState(): Promise<GlobalState>
  • getMemberState(): Promise<RoomMemberState>
  • getPhase(): Promise<RoomPhase>
  • getRoomMembers(): Promise<RoomMemberState>
  • getRoomPhase(): Promise<RoomPhase>
  • getRoomState(): Promise<WhiteRoomState>
  • getSceneState(): Promise<SceneState>
  • getScenes(): Promise<WhiteScene[]>
  • getSyncedState(): Promise<object>
  • Get syncState values

    Returns Promise<object>

  • getTimeDelay(): Promise<number>
  • getZoomScale(): Promise<number>
  • insertImage(imageInfo: ImageInformation): any
  • Insert a image

    Parameters

    • imageInfo: ImageInformation

    Returns any

  • insertText(x: number, y: number, textContent: string): Promise<string>
  • Insert text in the specified location

    Parameters

    • x: number

      The midpoint of the left-hand side of the first character, the x-coordinate in the world coordinate system

    • y: number

      The midpoint of the left-hand side of the first character, the y-coordinate in the world coordinate system

    • textContent: string

    Returns Promise<string>

    The text id

  • isWritable(): Promise<boolean>
  • moveScene(source: string, target: string): any
  • Move the special scene to a path

    Parameters

    • source: string

      The original path of the scene that needs to be moved. Must be a scene path, not a scene group path.

    • target: string

      Target Scene Group Path or Target Scene Path:

      • When target is set to target scene group, it means move the specified scene to other scene group, the scene path will be changed, but the scene name will be unchanged.
      • When target is set to target scene path, it means change the position of the specified scene in the current scene group, and both scene path and scene name will be changed.

    Returns any

  • nextPage(): Promise<boolean>
  • Turn to next page

    Returns Promise<boolean>

  • nextStep(): any
  • Let the ppt go to the next step The ppt in the subwindow will not take effect

    Returns any

  • paste(): any
  • Paste the copied content

    Returns any

  • prevPage(): Promise<boolean>
  • Turn to previous page

    Returns Promise<boolean>

  • previousStep(): any
  • Let the ppt go to the previous step The ppt in the subwindow will not take effect

    Returns any

  • putScenes(dir: string, scenes: SceneDefinition[], index: number): Promise<SceneState>
  • Insert multiple scenes under the specified scene group.

    Parameters

    • dir: string

      The name of the scene group, which must start with /. It cannot be a scene path.

    • scenes: SceneDefinition[]

      An array consisting of multiple scenes.

    • index: number

      The index number of the first scene in the scene group of the multiple scenes to be inserted. If the index number passed is greater than the total number of existing scenes in the scene group, the newly inserted scene will be at the end of the existing scenes. The index number of the scene starts from 0.

    Returns Promise<SceneState>

  • redo(): Promise<number>
  • removePage(params: RemovePageParams): Promise<boolean>
  • Delete the specified page

    Parameters

    • params: RemovePageParams

    Returns Promise<boolean>

  • removeScenes(dirOrPath: string): any
  • Deletes a scene or group of scenes.

    Parameters

    • dirOrPath: string

      The scene group path or scene path. If a scene group is passed in, all scenes under that scene group will be deleted.

    Returns any

  • safeSetAttributes(attributes: any): any
  • Set the value in syncedState.

    It takes effect when writable is true

    Parameters

    • attributes: any

    Returns any

  • safeUpdateAttributes(keys: string[], attributes: any): any
  • Update the value in syncedState.

    It takes effect when writable is true

    Parameters

    • keys: string[]
    • attributes: any

    Returns any

  • setContainerSizeRatio(ratio: number): any
  • Set the display ratio of the container

    Parameters

    • ratio: number

    Returns any

  • setGlobalState(modifyState: Partial<GlobalState>): any
  • Parameters

    • modifyState: Partial<GlobalState>

    Returns any

  • setMemberState(memberState: Partial<RoomMemberState>): any
  • Currently mainly used to update appliance

    Parameters

    • memberState: Partial<RoomMemberState>

    Returns any

  • setPrefersColorScheme(scheme: "light" | "dark" | "auto"): any
  • Set the color configuration of the child window

    Parameters

    • scheme: "light" | "dark" | "auto"

    Returns any

  • setSceneIndex(index: number): Promise<void>
  • Switches to the specified scene under the current scene group.

    Parameters

    • index: number

    Returns Promise<void>

  • setScenePath(scenePath: string): Promise<string>
  • Switches to the specified scene. After a successful method call, all users in the room see the whiteboard switch to the specified scene.

    Parameters

    • scenePath: string

      The scenePath after switching

    Returns Promise<string>

  • setTimeDelay(delay: number): any
  • Set the synchronization delay of the remote whiteboard screen.

    When this method is called, the SDK will delay the synchronization of the remote whiteboard screen.

    In the CDN live broadcast scenario, setting the synchronization delay of the remote whiteboard screen can prevent users from perceiving the misalignment.

    Note: This method does not affect the display of the local whiteboard screen, i.e., the user's operation on the local whiteboard will be displayed on the local whiteboard immediately.

    Parameters

    • delay: number

    Returns any

  • setViewMode(viewMode: "freedom" | "follower" | "broadcaster"): any
  • Switching user view mode

    Parameters

    • viewMode: "freedom" | "follower" | "broadcaster"

      "freedom" : This mode allows the user to actively adjust the viewpoint, and is not affected by other users' viewpoint mode settings, nor does it affect other users' viewpoint mode settings. "follower" : The user's view in this mode will follow the view of the anchor. "broadcaster" : This mode allows users to actively adjust their view and sync their view to all other users in the room.

    Returns any

  • setWindowManagerAttributes(attributes: any): any
  • setWritable(writable: boolean): Promise<void>
  • Set whether the user is in interactive mode in the room.

    Parameters

    • writable: boolean

    Returns Promise<void>

  • syncBlockTimestamp(timeStamp: any): any
  • undo(): Promise<number>

Generated using TypeDoc