Skip to main content

Class: AbstractMfdPage<P>

An abstract implementation of MfdPage.

Type parameters

NameType
Pextends MfdPageProps = MfdPageProps

Hierarchy

Implements

Constructors

constructor

new AbstractMfdPage<P>(props): AbstractMfdPage<P>

Creates an instance of a DisplayComponent.

Type parameters

NameType
Pextends MfdPageProps = MfdPageProps

Parameters

NameTypeDescription
propsPThe propertis of the component.

Returns

AbstractMfdPage<P>

Inherited from

DisplayComponent<P>.constructor

Defined in

src/sdk/components/FSComponent.ts:73

Properties

_iconSrc

Protected Readonly _iconSrc: Subject<string>

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:17


_knobLabelState

Protected Readonly _knobLabelState: FilteredMapSubject<UiKnobId, string>

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:21


_title

Protected Readonly _title: Subject<string>

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:13


context

Optional context: [] = undefined

The context on this component, if any.

Implementation of

MfdPage.context

Inherited from

DisplayComponent.context

Defined in

src/sdk/components/FSComponent.ts:64


contextType

Optional Readonly contextType: readonly [] = undefined

The type of context for this component, if any.

Implementation of

MfdPage.contextType

Inherited from

DisplayComponent.contextType

Defined in

src/sdk/components/FSComponent.ts:67


iconSrc

Readonly iconSrc: Subscribable<string>

The file path to this page's icon's image asset.

Implementation of

MfdPage.iconSrc

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:19


knobLabelState

Readonly knobLabelState: SubscribableMap<UiKnobId, string> & Subscribable<UiKnobRequestedLabelState>

The bezel rotary knob label state requested by this page.

Implementation of

MfdPage.knobLabelState

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:23


props

props: P & ComponentProps

The properties of the component.

Implementation of

MfdPage.props

Inherited from

DisplayComponent.props

Defined in

src/sdk/components/FSComponent.ts:61


title

Readonly title: Subscribable<string>

This page's title.

Implementation of

MfdPage.title

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:15

Methods

destroy

destroy(): void

Destroys this component.

Returns

void

Implementation of

MfdPage.destroy

Inherited from

DisplayComponent.destroy

Defined in

src/sdk/components/FSComponent.ts:98


getContext

getContext(context): never

Gets a context data subscription from the context collection.

Parameters

NameTypeDescription
contextneverThe context to get the subscription for.

Returns

never

The requested context.

Throws

An error if no data for the specified context type could be found.

Implementation of

MfdPage.getContext

Inherited from

DisplayComponent.getContext

Defined in

src/sdk/components/FSComponent.ts:106


onAfterRender

onAfterRender(node): void

A callback that is called after the component is rendered.

Parameters

NameTypeDescription
nodeVNodeThe component's VNode.

Returns

void

Implementation of

MfdPage.onAfterRender

Inherited from

DisplayComponent.onAfterRender

Defined in

src/sdk/components/FSComponent.ts:87


onBeforeRender

onBeforeRender(): void

A callback that is called before the component is rendered.

Returns

void

Implementation of

MfdPage.onBeforeRender

Inherited from

DisplayComponent.onBeforeRender

Defined in

src/sdk/components/FSComponent.ts:80


onClose

onClose(): void

Responds to when this page is closed. A page is closed if it is no longer visible.

Returns

void

Implementation of

MfdPage.onClose

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:42


onOcclusionChange

onOcclusionChange(occlusionType): void

Responds to when the occlusion type applied to this page's parent UI view changes while this page is open.

Parameters

NameTypeDescription
occlusionTypeUiViewOcclusionTypeThe new occlusion type applied to this page's parent UI view.

Returns

void

Implementation of

MfdPage.onOcclusionChange

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:64


onOpen

onOpen(sizeMode, dimensions): void

Responds to when this page is opened. A page is opened if it has been selected, has become active, and is visible.

Parameters

NameTypeDescription
sizeModeMfdPageSizeModeThis page's size mode.
dimensionsReadonly<Omit<Float64Array, "set" | "sort" | "copyWithin">>This page's dimensions, as [width, height] in pixels.

Returns

void

Implementation of

MfdPage.onOpen

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:37


onPause

onPause(): void

Responds to when this page is paused. A page is paused if it is no longer open as the top-most view in its view stack.

Returns

void

Implementation of

MfdPage.onPause

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:52


onResize

onResize(sizeMode, dimensions): void

Responds when this page's parent UI view is resized while it is resumed.

Parameters

NameTypeDescription
sizeModeMfdPageSizeModeThis page's new size mode.
dimensionsReadonly<Omit<Float64Array, "set" | "sort" | "copyWithin">>This page's new dimensions, as [width, height] in pixels.

Returns

void

Implementation of

MfdPage.onResize

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:58


onResume

onResume(): void

Responds to when this page is resumed. A page is resumed when it has been opened as part of the top-most view in its view stack.

Returns

void

Implementation of

MfdPage.onResume

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:47


onStage

onStage(): void

Responds to when this page is staged. A page is staged if it has been selected.

Returns

void

Implementation of

MfdPage.onStage

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:26


onUiInteractionEvent

onUiInteractionEvent(event): boolean

Handles a UiInteractionEvent.

Parameters

NameTypeDescription
eventUiInteractionEventThe event to handle.

Returns

boolean

Whether the event was handled.

Implementation of

MfdPage.onUiInteractionEvent

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:76


onUnstage

onUnstage(): void

Responds to when this page is unstaged. A page is unstaged if it is no longer selected.

Returns

void

Implementation of

MfdPage.onUnstage

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:31


onUpdate

onUpdate(time): void

Called every update cycle.

Parameters

NameTypeDescription
timenumberThe current real (operating system) time, as a Javascript timestamp.

Returns

void

Implementation of

MfdPage.onUpdate

Defined in

src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/MFD/PageNavigation/AbstractMfdPage.ts:70


render

render(): null | VNode

Renders the component.

Returns

null | VNode

A JSX element to be rendered.

Implementation of

MfdPage.render

Inherited from

DisplayComponent.render

Defined in

src/sdk/components/FSComponent.ts:93