Creates, launches, and allows updating a CBRV visualization.

Hierarchy

  • Visualization

Constructors

Properties

codebase: Uri

The URI of the root of the codebase this Visualization is visualizing.

VisualizationState: typeof __class = ...

A mutable "view" on a Visualization

Accessors

Methods

  • Destroy the visualization and all webviews/watchers etc.

    Returns void

  • Takes a endpoint of a connection and returns the line number, if there is one.

    Parameters

    Returns undefined | number

  • Takes an endpoint of a connection and returns the path relative to the codebase

    Parameters

    Returns undefined | string

  • Open up the visualizing in the webview. You shouldn't call this directly, API.create launches automatically.

    Returns Promise<void>

  • Set the callback to update the visualization whenever the filelist change. It will trigger if a file is created, modified, or deleted, or if the filters change. Most the time, you'll want to use this instead of using update directly.

    You can pass {immediate: true} if you want it to trigger immediately as well.

    Parameters

    • func: ((visState: __class) => Promise<void>)
        • (visState: __class): Promise<void>
        • Parameters

          • visState: __class

          Returns Promise<void>

    • Optional options: {
          immediate?: boolean;
      }
      • Optional immediate?: boolean

    Returns void

  • Parameters

    • Optional viewColumn: ViewColumn
    • Optional preserveFocus: boolean

    Returns void

  • Used to update the visualization. Update the state in the callback and the visualization will update after calling the callback.

    Parameters

    • func: ((visState: __class) => Promise<void>)
        • (visState: __class): Promise<void>
        • Parameters

          • visState: __class

          Returns Promise<void>

    Returns Promise<void>

Generated using TypeDoc