Member Junction
    Preparing search index...

    Slide-in wrapper for the User Routines command center — the standard right-edge panel (via mj-slide-panel from @memberjunction/ng-ui-components) hosting the full command center (list / new / history). Used by ng-conversations' sidebar routines section and any other host that wants the drop-in overlay experience.

    Two-way bind [(Visible)]; all command-center events bubble unchanged.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    AfterRoutineCreated: EventEmitter<AfterRoutineCreatedEventArgs> = ...
    AfterRoutineDeleted: EventEmitter<AfterRoutineDeletedEventArgs> = ...
    AfterRoutinePaused: EventEmitter<AfterRoutinePausedEventArgs> = ...
    AfterRoutineRunNow: EventEmitter<AfterRoutineRunNowEventArgs> = ...
    BeforeRoutineCreated: EventEmitter<BeforeRoutineCreatedEventArgs> = ...
    BeforeRoutineDeleted: EventEmitter<BeforeRoutineDeletedEventArgs> = ...
    BeforeRoutinePaused: EventEmitter<BeforeRoutinePausedEventArgs> = ...
    BeforeRoutineRunNow: EventEmitter<BeforeRoutineRunNowEventArgs> = ...
    Closed: EventEmitter<void> = ...

    The panel was closed (X, backdrop, or Escape).

    ConversationOpened: EventEmitter<ConversationOpenedEventArgs> = ...

    Re-emitted — the routine's dedicated conversation was requested.

    HistoryRecordOpened: EventEmitter<HistoryRecordOpenedEventArgs> = ...
    InitialRoutineID: string | null = null

    When set, the command center opens directly on this routine's history each time the slide-in becomes visible with the value set.

    Provider: IMetadataProvider | null

    If specified, this provider will be used for communication and for all metadata purposes. By default, if not provided, the Metadata and RunView classes are used for this and the default GraphQLDataProvider is used which is connected to the same back-end MJAPI instance as the Metadata and RunView classes. If you want to have this component connect to a different MJAPI back-end, create an instance of a ProviderBase sub-class like GraphQLDataProvider/etc, and configure it as appropriate to connect to the MJAPI back-end you want to use, and then pass it in here.

    RoutineSelected: EventEmitter<RoutineSelectedEventArgs> = ...
    StartInNewRoutine: boolean = false

    When true, the command center opens directly on the New Routine editor.

    VisibleChange: EventEmitter<boolean> = ...
    WidthPx: number = 720

    Initial panel width in pixels.

    "ɵdir": unknown
    "ɵfac": unknown

    Accessors

    • get ProviderToUse(): IMetadataProvider

      Returns either the default Metadata provider or the one specified in the Provider property, if it was specified

      Returns IMetadataProvider

    • get RunQueryToUse(): IRunQueryProvider

      Returns either the default RunQuery provider or the one specified in the Provider property, if it was specified

      Returns IRunQueryProvider

    • get RunReportToUse(): IRunReportProvider

      Returns either the default RunReport provider or the one specified in the Provider property, if it was specified

      Returns IRunReportProvider

    • get RunViewToUse(): IRunViewProvider

      Returns either the default RunView provider or the one specified in the Provider property, if it was specified

      Returns IRunViewProvider

    Methods

    • Opens the slide-in (optionally straight onto a routine's history or the editor).

      Parameters

      • Optionaloptions: { NewRoutine?: boolean; RoutineID?: string }

      Returns void