Member Junction
    Preparing search index...

    Dialog for materializing a User View into a new static List. Matches mockup 09-save-view-as-list.html: name + description + category, then a radio group for source-lineage (remember vs one-time snapshot), then a "freeze filter" checkbox that maps to UseSnapshot on the list.

    The dialog is reusable — pass ViewId + ViewName + the displayed record count and listen for Save / Cancel. Multi-provider safe via BaseAngularComponent.ProviderToUse.

    Hierarchy (View Summary)

    Implements

    • OnInit
    Index

    Constructors

    Properties

    Cancel: EventEmitter<void> = ...
    categories: MJListCategoryEntity[] = []
    categoryId: string | null = null
    description: string = ''
    listName: string = ''
    loadingCategories: 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.

    RecordCount: number | null = null

    Optional — record count shown in the button label + info banner.

    refreshMode: "Additive" | "Sync" = 'Additive'
    rememberLineage: boolean = true
    Save: EventEmitter<SaveViewAsListResult> = ...
    submitting: boolean = false
    useSnapshot: boolean = true
    ViewId: string | null = null

    Required — the User View we're materializing from.

    ViewName: string | null = null

    Display name of the source view (shown in the info banner + default list name).

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