Member Junction
    Preparing search index...

    User Routines "command center" — the composite surface combining the routines list (default view), the create/edit form, and per-routine run history behind an internal tabbed navigation. This is the component hosts embed (Explorer full page, the slide-in, or any custom app); the individual pieces remain exported for bespoke layouts.

    All child events bubble here unchanged (including the cancelable Before/After pairs), so a consumer only ever wires this one component.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    ActiveView: UserRoutinesView = 'list'
    AfterRoutineCreated: EventEmitter<AfterRoutineCreatedEventArgs> = ...
    AfterRoutineDeleted: EventEmitter<AfterRoutineDeletedEventArgs> = ...
    AfterRoutinePaused: EventEmitter<AfterRoutinePausedEventArgs> = ...
    AfterRoutineRunNow: EventEmitter<AfterRoutineRunNowEventArgs> = ...
    BeforeRoutineCreated: EventEmitter<BeforeRoutineCreatedEventArgs> = ...
    BeforeRoutineDeleted: EventEmitter<BeforeRoutineDeletedEventArgs> = ...
    BeforeRoutinePaused: EventEmitter<BeforeRoutinePausedEventArgs> = ...
    BeforeRoutineRunNow: EventEmitter<BeforeRoutineRunNowEventArgs> = ...
    CloseRequested: EventEmitter<void> = ...

    The user clicked the built-in close affordance (slide-in wrapper handles it).

    ConversationOpened: EventEmitter<ConversationOpenedEventArgs> = ...

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

    CountsChanged: EventEmitter<RoutineCounts> = ...

    Loaded/filtered counts changed in the list view.

    EditingRoutineID: string | null = null

    Routine being edited (null = creating a new one).

    FilteredCount: number = 0
    HistoryRecordOpened: EventEmitter<HistoryRecordOpenedEventArgs> = ...
    HistoryRoutineID: string | null = null

    Routine whose history is open.

    HistoryRoutineName: string | null = null
    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> = ...
    SearchText: string = ''

    Search text applied to the list view (hosts with their own chrome bind this).

    SelectedRoutineIDChange: EventEmitter<string | null> = ...

    The selected routine (history view) changed — null when returning to the list. Hosts using query-param round trips two-way bind [(SelectedRoutineID)].

    ShowClose: boolean = false

    Show a close (X) affordance in the built-in header (used by the slide-in wrapper).

    ShowHeader: boolean = true

    Render the built-in compact header (mark + tabs + list controls). Hosts with their own chrome set false.

    StatusFilter: RoutineStatusFilter = 'all'

    Status filter applied to the list view.

    TotalCount: number = 0
    ViewChanged: EventEmitter<UserRoutinesView> = ...

    The active internal view changed ('list' | 'editor' | 'history').

    "ɵ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