Class: AbstractTabbedContent<P>
An abstract implementation of TabbedContent.
Type parameters
Name | Type |
---|---|
P | extends TabbedContentProps = TabbedContentProps |
Hierarchy
DisplayComponent
<P
>↳
AbstractTabbedContent
Implements
Constructors
constructor
• new AbstractTabbedContent<P
>(props
): AbstractTabbedContent
<P
>
Creates an instance of a DisplayComponent.
Type parameters
Name | Type |
---|---|
P | extends TabbedContentProps = TabbedContentProps |
Parameters
Name | Type | Description |
---|---|---|
props | P | The propertis of the component. |
Returns
Inherited from
DisplayComponent<P>.constructor
Defined in
src/sdk/components/FSComponent.ts:73
Properties
_knobLabelState
• Protected
Readonly
_knobLabelState: MapSubject
<UiKnobId
, string
>
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:14
context
• Optional
context: [] = undefined
The context on this component, if any.
Implementation of
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
Inherited from
DisplayComponent.contextType
Defined in
src/sdk/components/FSComponent.ts:67
isTabbedContent
• Readonly
isTabbedContent: true
Flags this component as a TabbedContent.
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:12
knobLabelState
• Readonly
knobLabelState: SubscribableMap
<UiKnobId
, string
> & Subscribable
<UiKnobRequestedLabelState
>
The bezel rotary knob label state requested by this content.
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:16
props
• props: P
& ComponentProps
The properties of the component.
Implementation of
Inherited from
DisplayComponent.props
Defined in
src/sdk/components/FSComponent.ts:61
Methods
destroy
▸ destroy(): void
Destroys this component.
Returns
void
Implementation of
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
Name | Type | Description |
---|---|---|
context | never | The 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
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
Name | Type | Description |
---|---|---|
node | VNode | The component's VNode. |
Returns
void
Implementation of
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
Inherited from
DisplayComponent.onBeforeRender
Defined in
src/sdk/components/FSComponent.ts:80
onClose
▸ onClose(): void
Responds to when this content is closed. Content is closed when it is deselected or its parent container is closed.
Returns
void
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:34
onDeselect
▸ onDeselect(): void
Responds to when this content is deselected.
Returns
void
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:24
onOpen
▸ onOpen(): void
Responds to when this content is opened. Content is opened when it is selected and its parent container is open.
Returns
void
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:29
onPause
▸ onPause(): void
Responds to when this content is paused. Content is paused when it is deselected or its parent container is paused.
Returns
void
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:44
onResume
▸ onResume(): void
Responds to when this content is resumed. Content is resumed when it is selected and its parent container is resumed.
Returns
void
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:39
onSelect
▸ onSelect(): void
Responds to when this content is selected to be displayed in its parent container.
Returns
void
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:19
onUiInteractionEvent
▸ onUiInteractionEvent(event
): boolean
Handles a UiInteractionEvent.
Parameters
Name | Type | Description |
---|---|---|
event | UiInteractionEvent | The event to handle. |
Returns
boolean
Whether the event was handled.
Implementation of
TabbedContent.onUiInteractionEvent
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:56
onUpdate
▸ onUpdate(time
): void
Responds to when this content is updated. Content is updated when it is selected and its parent container is updated.
Parameters
Name | Type | Description |
---|---|---|
time | number | The current real (operating system) time, as a Javascript timestamp. |
Returns
void
Implementation of
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/AbstractTabbedContent.ts:50
render
▸ render(): null
| VNode
Renders the component.
Returns
null
| VNode
A JSX element to be rendered.
Implementation of
Inherited from
DisplayComponent.render
Defined in
src/sdk/components/FSComponent.ts:93