Member Junction
    Preparing search index...

    Entity details panel component that displays detailed information about a selected entity. Shows entity metadata, fields with filtering capabilities, and related entities.

    This component is designed to be used alongside the ERD diagram to provide a detailed view of the currently selected entity.

    Hierarchy (View Summary)

    Implements

    • OnChanges
    Index

    Constructors

    Properties

    allEntityFields: EntityFieldInfo[] = []

    All entity fields for looking up field information

    closePanel: EventEmitter<void> = ...

    Emitted when user clicks the close button

    entitySelected: EventEmitter<EntityInfo> = ...

    Emitted when a related entity is selected (clicked in relationships list)

    expandedFieldDescriptions: Set<string> = ...
    expandedFieldDetails: Set<string> = ...
    expandedFieldValues: Set<string> = ...
    fieldFilter: "keys" | "all" | "foreign_keys" | "regular" = 'all'
    fieldsListContainer: ElementRef
    fieldsSectionExpanded: boolean = true

    Whether the fields section is expanded

    fieldsSectionToggle: EventEmitter<void> = ...

    Emitted when fields section is toggled

    openEntity: EventEmitter<EntityInfo> = ...

    Emitted when user clicks to open the entity record

    openRecord: EventEmitter<EntityDetailsOpenRecordEvent> = ...

    Emitted when requesting to open an entity record

    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.

    relationshipsListContainer: ElementRef
    relationshipsSectionExpanded: boolean = true

    Whether the relationships section is expanded

    relationshipsSectionToggle: EventEmitter<void> = ...

    Emitted when relationships section is toggled

    selectedEntity: EntityInfo | null = null

    The currently selected entity to display details for

    "ɵ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 the default change detector has checked data-bound properties if at least one has changed, and before the view and content children are checked.

      Parameters

      • changes: { [propName: string]: SimpleChange<any> }

        The changed properties.

      Returns void