Member Junction
    Preparing search index...

    LIVE MEDIA surface (mj-realtime-media-surface) — the Media channel tab's pane, rendered with a TABS layout: a horizontal tab bar (one tab per MediaItem, type icon + name) over a single media pane that swaps as you switch tabs. Pure PERCEPTION of the channel's MediaChannelState: the agent's Media_* tools mutate the state through the channel plugin and this surface re-renders.

    SOURCE-AWARE rendering. Each item is backed by EITHER an external/public MediaItem.Url or an MemberJunction MediaItem.FileID (an MJ: Files id, streamed securely + permission-gated):

    • audio/video + FileID<mj-storage-media-player [FileID] [Provider]> (real transport/waveform, streams over HTTP Range under the session's authenticated provider).
    • audio/video + Url<mj-media-player [Tracks]> (the same real player, fed the public URL).
    • image/pdf/web + FileID → a streaming URL is resolved via CreateMediaAccessToken (through the channel's provider) and rendered in the existing img/iframe path; graceful no-access state on failure.
    • image/pdf/web + Url → the public URL, rendered unchanged.

    Multi-provider safe: the channel plugin threads the live session's IMetadataProvider in via the Provider input (BaseAngularComponent), and both the storage player and the token mutation use it (ProviderToUse) rather than the global default.

    Hierarchy (View Summary)

    Implements

    • OnInit
    • OnDestroy
    Index

    Constructors

    Properties

    AgentName: string = 'The agent'

    Display name of the agent fronting the session — used in the empty-state copy.

    ImageZoom: number = 1

    The current image zoom multiplier (cycled by the zoom button; image panes only).

    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.

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