Member Junction
    Preparing search index...

    Full-panel Collections view component Comprehensive collection management with artifacts display

    Hierarchy (View Summary)

    Implements

    • OnInit
    • OnDestroy
    Index

    Constructors

    Properties

    Accessors

    Methods

    Constructors

    Properties

    activeArtifactId: string | null = null
    allCollections: MJCollectionEntity[] = []

    All accessible collections (navigator pane + move targets + folder-cycle checks).

    artifactVersions: {
        artifact: MJArtifactEntity;
        version: MJArtifactVersionEntity;
    }[] = []
    breadcrumbs: { id: string; name: string }[] = []
    collectionNavigated: EventEmitter<
        { collectionId: string
        | null; versionId?: string | null },
    > = ...
    collections: MJCollectionEntity[] = []
    contextMenuItem: CollectionViewItem | null = null
    contextMenuPosition: { x: number; y: number } = ...
    currentCollection: MJCollectionEntity | null = null
    currentCollectionId: string | null = null
    CurrentPage: number = 1
    currentUser: UserInfo
    draggedItemIds: string[] = []

    Drag-and-drop state. draggedItemIds = the item ids being dragged (1 or the whole selection).

    dragOverTargetId: string | null = null

    Tag of the current drop target for highlight: item id, 'root', 'crumb:', or 'nav:'.

    editingCollection?: MJCollectionEntity
    environmentId: string
    filteredArtifactVersions: {
        artifact: MJArtifactEntity;
        version: MJArtifactVersionEntity;
    }[] = []
    filteredCollections: MJCollectionEntity[] = []
    isArtifactModalOpen: boolean = false
    isFormModalOpen: boolean = false
    isLoading: boolean = false
    isLoadingMoveTargets: boolean = false
    isSelectMode: boolean = false
    isShareModalOpen: boolean = false
    moveTargets: { collection: MJCollectionEntity; depth: number }[] = []
    navigatorNodes: { collection: MJCollectionEntity; depth: number }[] = []
    openConversationRequested: EventEmitter<{ conversationId: string }> = ...

    Emitted when the user asks to open the conversation an artifact was produced in.

    PageSize: number = 50
    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.

    searchQuery: string = ''
    selectedItems: Set<string> = ...
    sharingCollection: MJCollectionEntity | null = null
    shelf: { item: CollectionViewItem; sourceCollectionId: string | null }[] = []

    Staging shelf: items held across navigation, then dropped into a destination collection.

    showBulkMovePopover: boolean = false

    Bulk "Move to…" popover (selection toolbar).

    showContextMenu: boolean = false
    showMoveSubmenu: boolean = false

    "Move to Collection" submenu state (within the artifact context menu).

    showNavigator: boolean = true
    showNewDropdown: boolean = false
    showSortDropdown: boolean = false
    sortBy: CollectionSortBy = 'name'
    sortOrder: CollectionSortOrder = 'asc'
    unifiedItems: CollectionViewItem[] = []
    userPermissions: Map<string, CollectionPermission> = ...
    viewMode: CollectionViewMode = 'grid'
    "ɵ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