Member Junction
    Preparing search index...

    Full-screen modal dialog for configuring user's application visibility and order. Allows users to:

    • Select which applications to show in the app switcher
    • Reorder applications via drag-and-drop (desktop)
    • Toggle apps on/off in a single list (mobile)

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    ActiveApps: AppConfigItem[] = []
    AllApps: AppConfigItem[] = []
    AvailableApps: AppConfigItem[] = []
    AvailablePanelCollapsed: boolean = false
    ConfigSaved: EventEmitter<void> = ...
    DraggedIndex: number = -1
    DraggedItem: AppConfigItem | null = null
    DropTargetIndex: number = -1
    ErrorMessage: string = ''
    IsLoading: boolean = false
    IsSaving: boolean = false
    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.

    SelectedPanelCollapsed: boolean = false
    ShowDialogChange: EventEmitter<boolean> = ...
    TouchDragActive: boolean = false
    TouchDragIndex: number = -1
    TouchDropIndex: number = -1
    "ɵ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

    • Moves an app up in the order. Positional (splice + renumber), NOT a sequence-value swap: rows can carry duplicate Sequence values (issue #3027 — e.g. a re-enabled app kept a stale value), and swapping two equal values is a silent no-op. Reordering by position then renumbering 0..n-1 always works and heals duplicates as a side effect.

      Parameters

      • item: AppConfigItem

      Returns void