Member Junction
    Preparing search index...

    Runtime renderer for Artifact dashboard parts. Displays artifacts using mj-artifact-viewer-panel including reports, charts, and AI-generated content.

    Hierarchy (View Summary)

    Implements

    • AfterViewInit
    • OnDestroy
    Index

    Constructors

    Properties

    artifactId: string | null = null
    cdr: ChangeDetectorRef
    ConfigureRequested: EventEmitter<PartConfigureEvent> = ...

    Emitted when user clicks configure button

    CurrentUser: UserInfo | null = null

    Current user - required by the artifact viewer panel. Should be provided by the dashboard host or retrieved from a service.

    DataChanged: EventEmitter<PartDataChangeEvent> = ...

    Emitted when the part's data changes (e.g., selection in a grid)

    EnvironmentId: string = ''

    Environment ID - required by the artifact viewer panel. Should be provided by the dashboard host.

    ErrorMessage: string | null = null

    Error message if the part failed to load

    hasArtifact: boolean = false
    IsLoading: boolean = false

    Whether the part is currently loading

    NavigationRequested: EventEmitter<DashboardNavRequestEvent> = ...

    Emitted when the part requests navigation to another resource. Parent component handles actual routing based on the request type.

    PartType: MJDashboardPartTypeEntity | null = null

    The part type metadata

    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.

    refreshTrigger: Subject<{ artifactId: string; versionNumber: number }> = ...
    RemoveRequested: EventEmitter<PartRemoveEvent> = ...

    Emitted when user clicks remove button

    showCloseButton: boolean = false
    showHeader: boolean = false
    showMaximizeButton: boolean = false
    showTabs: boolean = true
    versionNumber: number | undefined
    "ɵ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

    • A callback method that is invoked immediately after Angular has completed initialization of a component's view. It is invoked only once when the view is instantiated.

      Returns void

    • A callback method that is invoked immediately after the default change detector has checked the directive's data-bound properties for the first time, and before any of the view or content children have been checked. It is invoked only once when the directive is instantiated.

      Returns void

    • Handler for the Analyze button on the embedded artifact viewer. Captures the live DataSnapshot, creates an analysis conversation with the snapshot attached as input, and emits a navigation request to open the new conversation in the host application.

      Parameters

      Returns Promise<void>

    • Handle navigation link events from artifact viewer (conversation/collection links)

      Parameters

      • event: {
            artifactId?: string;
            id: string;
            type: "conversation" | "collection";
            versionId?: string;
            versionNumber?: number;
        }

      Returns void

    • Request navigation to a specific nav item within an application. Supports setting URL query parameters after navigation.

      Parameters

      • navItemName: string
      • OptionalappName: string
      • OptionalqueryParams: Record<string, string>
      • openInNewTab: boolean = false

      Returns void