2018-01-09 18:38:17 -08:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2018-10-18 09:23:18 +02:00
|
|
|
import {InjectionToken} from '../../di/injection_token';
|
2018-04-12 15:54:16 -07:00
|
|
|
import {Injector} from '../../di/injector';
|
2018-07-10 10:43:07 +02:00
|
|
|
import {QueryList} from '../../linker';
|
2018-05-09 15:30:16 -07:00
|
|
|
import {Sanitizer} from '../../sanitization/security';
|
2018-10-18 09:23:18 +02:00
|
|
|
import {Type} from '../../type';
|
2018-01-09 18:38:17 -08:00
|
|
|
import {LContainer} from './container';
|
2018-10-08 16:04:46 -07:00
|
|
|
import {ComponentDef, ComponentQuery, ComponentTemplate, DirectiveDef, DirectiveDefList, HostBindingsFunction, PipeDef, PipeDefList} from './definition';
|
2018-11-13 09:36:30 +01:00
|
|
|
import {I18nUpdateOpCodes, TI18n} from './i18n';
|
2018-10-12 18:49:00 -07:00
|
|
|
import {TElementNode, TNode, TViewNode} from './node';
|
2018-10-03 14:09:59 -07:00
|
|
|
import {PlayerHandler} from './player';
|
2018-01-29 14:51:37 +01:00
|
|
|
import {LQueries} from './query';
|
2018-10-12 18:49:00 -07:00
|
|
|
import {RElement, Renderer3} from './renderer';
|
2018-10-12 15:02:54 -07:00
|
|
|
import {StylingContext} from './styling';
|
2018-01-09 18:38:17 -08:00
|
|
|
|
2018-10-03 14:09:59 -07:00
|
|
|
|
2018-06-07 22:42:32 -07:00
|
|
|
/** Size of LViewData's header. Necessary to adjust for it when setting slots. */
|
2018-10-12 15:02:54 -07:00
|
|
|
export const HEADER_OFFSET = 17;
|
2018-06-07 22:42:32 -07:00
|
|
|
|
|
|
|
// Below are constants for LViewData indices to help us look up LViewData members
|
|
|
|
// without having to remember the specific indices.
|
|
|
|
// Uglify will inline these when minifying so there shouldn't be a cost.
|
|
|
|
export const TVIEW = 0;
|
2018-10-12 15:02:54 -07:00
|
|
|
export const FLAGS = 1;
|
|
|
|
export const PARENT = 2;
|
|
|
|
export const NEXT = 3;
|
|
|
|
export const QUERIES = 4;
|
|
|
|
export const HOST = 5;
|
|
|
|
export const HOST_NODE = 6;
|
|
|
|
export const BINDING_INDEX = 7;
|
|
|
|
export const CLEANUP = 8;
|
|
|
|
export const CONTEXT = 9;
|
|
|
|
export const INJECTOR = 10;
|
|
|
|
export const RENDERER = 11;
|
|
|
|
export const SANITIZER = 12;
|
|
|
|
export const TAIL = 13;
|
|
|
|
export const CONTAINER_INDEX = 14;
|
|
|
|
export const CONTENT_QUERIES = 15;
|
|
|
|
export const DECLARATION_VIEW = 16;
|
2018-03-21 15:10:34 -07:00
|
|
|
|
2018-07-30 19:43:56 -07:00
|
|
|
// This interface replaces the real LViewData interface if it is an arg or a
|
|
|
|
// return value of a public instruction. This ensures we don't need to expose
|
|
|
|
// the actual interface, which should be kept private.
|
|
|
|
export interface OpaqueViewState {
|
|
|
|
'__brand__': 'Brand for OpaqueViewState that nothing will match';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
/**
|
2018-06-07 22:42:32 -07:00
|
|
|
* `LViewData` stores all of the information needed to process the instructions as
|
2018-01-09 18:38:17 -08:00
|
|
|
* they are invoked from the template. Each embedded view and component view has its
|
2018-06-07 22:42:32 -07:00
|
|
|
* own `LViewData`. When processing a particular view, we set the `viewData` to that
|
|
|
|
* `LViewData`. When that view is done processing, the `viewData` is set back to
|
|
|
|
* whatever the original `viewData` was before (the parent `LViewData`).
|
2018-01-09 18:38:17 -08:00
|
|
|
*
|
|
|
|
* Keeping separate state for each view facilities view insertion / deletion, so we
|
|
|
|
* don't have to edit the data array based on which views are present.
|
|
|
|
*/
|
2018-06-07 22:42:32 -07:00
|
|
|
export interface LViewData extends Array<any> {
|
|
|
|
/**
|
|
|
|
* The static data for this view. We need a reference to this so we can easily walk up the
|
|
|
|
* node tree in DI and get the TView.data array associated with a node (where the
|
|
|
|
* directive defs are stored).
|
|
|
|
*/
|
|
|
|
[TVIEW]: TView;
|
2018-01-09 18:38:17 -08:00
|
|
|
|
2018-10-12 15:02:54 -07:00
|
|
|
/** Flags for this view. See LViewFlags for more info. */
|
|
|
|
[FLAGS]: LViewFlags;
|
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
/**
|
|
|
|
* The parent view is needed when we exit the view and must restore the previous
|
2018-06-07 22:42:32 -07:00
|
|
|
* `LViewData`. Without this, the render method would have to keep a stack of
|
2018-01-09 18:38:17 -08:00
|
|
|
* views as it is recursively rendering templates.
|
2018-07-17 11:45:49 -07:00
|
|
|
*
|
2018-07-18 01:59:49 +00:00
|
|
|
* This is the "insertion" view for embedded views. This allows us to properly
|
2018-07-17 11:45:49 -07:00
|
|
|
* destroy embedded views.
|
2018-01-09 18:38:17 -08:00
|
|
|
*/
|
2018-06-07 22:42:32 -07:00
|
|
|
[PARENT]: LViewData|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* The next sibling LViewData or LContainer.
|
|
|
|
*
|
|
|
|
* Allows us to propagate between sibling view states that aren't in the same
|
|
|
|
* container. Embedded views already have a node.next, but it is only set for
|
|
|
|
* views in the same container. We need a way to link component views and views
|
|
|
|
* across containers as well.
|
|
|
|
*/
|
|
|
|
[NEXT]: LViewData|LContainer|null;
|
|
|
|
|
|
|
|
/** Queries active for this view - nodes from a view are reported to those queries. */
|
|
|
|
[QUERIES]: LQueries|null;
|
|
|
|
|
2018-10-12 15:02:54 -07:00
|
|
|
/**
|
|
|
|
* The host node for this LViewData instance, if this is a component view.
|
|
|
|
*
|
|
|
|
* If this is an embedded view, HOST will be null.
|
|
|
|
*/
|
2018-10-12 18:49:00 -07:00
|
|
|
[HOST]: RElement|StylingContext|null;
|
2018-01-09 18:38:17 -08:00
|
|
|
|
|
|
|
/**
|
2018-09-13 16:07:23 -07:00
|
|
|
* Pointer to the `TViewNode` or `TElementNode` which represents the root of the view.
|
2018-01-09 18:38:17 -08:00
|
|
|
*
|
2018-09-13 16:07:23 -07:00
|
|
|
* If `TViewNode`, this is an embedded view of a container. We need this to be able to
|
2018-01-09 18:38:17 -08:00
|
|
|
* efficiently find the `LViewNode` when inserting the view into an anchor.
|
|
|
|
*
|
2018-09-13 16:07:23 -07:00
|
|
|
* If `TElementNode`, this is the LView of a component.
|
|
|
|
*
|
|
|
|
* If null, this is the root view of an application (root component is in this view).
|
2018-01-09 18:38:17 -08:00
|
|
|
*/
|
2018-09-13 16:07:23 -07:00
|
|
|
[HOST_NODE]: TViewNode|TElementNode|null;
|
2018-01-09 18:38:17 -08:00
|
|
|
|
2018-04-10 20:57:20 -07:00
|
|
|
/**
|
|
|
|
* The binding index we should access next.
|
|
|
|
*
|
|
|
|
* This is stored so that bindings can continue where they left off
|
|
|
|
* if a view is left midway through processing bindings (e.g. if there is
|
|
|
|
* a setter that creates an embedded view, like in ngIf).
|
|
|
|
*/
|
2018-06-07 22:42:32 -07:00
|
|
|
[BINDING_INDEX]: number;
|
2018-01-09 18:38:17 -08:00
|
|
|
|
|
|
|
/**
|
2018-06-07 22:42:32 -07:00
|
|
|
* When a view is destroyed, listeners need to be released and outputs need to be
|
|
|
|
* unsubscribed. This context array stores both listener functions wrapped with
|
|
|
|
* their context and output subscription instances for a particular view.
|
|
|
|
*
|
|
|
|
* These change per LView instance, so they cannot be stored on TView. Instead,
|
|
|
|
* TView.cleanup saves an index to the necessary context in this array.
|
2018-01-09 18:38:17 -08:00
|
|
|
*/
|
2018-06-07 22:42:32 -07:00
|
|
|
// TODO: flatten into LViewData[]
|
|
|
|
[CLEANUP]: any[]|null;
|
2018-01-17 10:09:05 -08:00
|
|
|
|
|
|
|
/**
|
2018-08-01 15:32:18 -07:00
|
|
|
* - For dynamic views, this is the context with which to render the template (e.g.
|
|
|
|
* `NgForContext`), or `{}` if not defined explicitly.
|
2018-02-03 20:34:30 -08:00
|
|
|
* - For root view of the root component the context contains change detection data.
|
2018-08-01 15:32:18 -07:00
|
|
|
* - For non-root components, the context is the component instance,
|
|
|
|
* - For inline views, the context is null.
|
2018-06-26 11:39:56 -07:00
|
|
|
*/
|
2018-06-07 22:42:32 -07:00
|
|
|
[CONTEXT]: {}|RootContext|null;
|
2018-01-17 10:09:05 -08:00
|
|
|
|
2018-06-07 22:42:32 -07:00
|
|
|
/** An optional Module Injector to be used as fall back after Element Injectors are consulted. */
|
|
|
|
[INJECTOR]: Injector|null;
|
2018-04-12 15:54:16 -07:00
|
|
|
|
2018-06-07 22:42:32 -07:00
|
|
|
/** Renderer to be used for this view. */
|
|
|
|
[RENDERER]: Renderer3;
|
|
|
|
|
|
|
|
/** An optional custom sanitizer. */
|
|
|
|
[SANITIZER]: Sanitizer|null;
|
2018-05-09 15:30:16 -07:00
|
|
|
|
|
|
|
/**
|
2018-06-07 22:42:32 -07:00
|
|
|
* The last LViewData or LContainer beneath this LViewData in the hierarchy.
|
|
|
|
*
|
|
|
|
* The tail allows us to quickly add a new state to the end of the view list
|
|
|
|
* without having to propagate starting from the first child.
|
2018-05-09 15:30:16 -07:00
|
|
|
*/
|
2018-06-07 22:42:32 -07:00
|
|
|
[TAIL]: LViewData|LContainer|null;
|
2018-06-26 11:39:56 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The index of the parent container's host node. Applicable only to embedded views that
|
|
|
|
* have been inserted dynamically. Will be -1 for component views and inline views.
|
|
|
|
*
|
|
|
|
* This is necessary to jump from dynamically created embedded views to their parent
|
|
|
|
* containers because their parent cannot be stored on the TViewNode (views may be inserted
|
|
|
|
* in multiple containers, so the parent cannot be shared between view instances).
|
|
|
|
*/
|
|
|
|
[CONTAINER_INDEX]: number;
|
2018-07-10 10:43:07 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores QueryLists associated with content queries of a directive. This data structure is
|
|
|
|
* filled-in as part of a directive creation process and is later used to retrieve a QueryList to
|
|
|
|
* be refreshed.
|
|
|
|
*/
|
|
|
|
[CONTENT_QUERIES]: QueryList<any>[]|null;
|
2018-07-17 11:45:49 -07:00
|
|
|
|
|
|
|
/**
|
2018-07-18 01:59:49 +00:00
|
|
|
* View where this view's template was declared.
|
2018-07-17 11:45:49 -07:00
|
|
|
*
|
|
|
|
* Only applicable for dynamically created views. Will be null for inline/component views.
|
|
|
|
*
|
|
|
|
* The template for a dynamically created view may be declared in a different view than
|
2018-07-18 01:59:49 +00:00
|
|
|
* it is inserted. We already track the "insertion view" (view where the template was
|
|
|
|
* inserted) in LViewData[PARENT], but we also need access to the "declaration view"
|
2018-07-17 11:45:49 -07:00
|
|
|
* (view where the template was declared). Otherwise, we wouldn't be able to call the
|
|
|
|
* view's template function with the proper contexts. Context should be inherited from
|
2018-07-18 01:59:49 +00:00
|
|
|
* the declaration view tree, not the insertion view tree.
|
2018-07-17 11:45:49 -07:00
|
|
|
*
|
|
|
|
* Example (AppComponent template):
|
|
|
|
*
|
|
|
|
* <ng-template #foo></ng-template> <-- declared here -->
|
|
|
|
* <some-comp [tpl]="foo"></some-comp> <-- inserted inside this component -->
|
|
|
|
*
|
|
|
|
* The <ng-template> above is declared in the AppComponent template, but it will be passed into
|
2018-07-18 01:59:49 +00:00
|
|
|
* SomeComp and inserted there. In this case, the declaration view would be the AppComponent,
|
|
|
|
* but the insertion view would be SomeComp. When we are removing views, we would want to
|
|
|
|
* traverse through the insertion view to clean up listeners. When we are calling the
|
|
|
|
* template function during change detection, we need the declaration view to get inherited
|
2018-07-17 11:45:49 -07:00
|
|
|
* context.
|
|
|
|
*/
|
2018-07-18 01:59:49 +00:00
|
|
|
[DECLARATION_VIEW]: LViewData|null;
|
2018-01-09 18:38:17 -08:00
|
|
|
}
|
|
|
|
|
2018-06-07 22:42:32 -07:00
|
|
|
/** Flags associated with an LView (saved in LViewData[FLAGS]) */
|
2018-02-23 13:17:20 -08:00
|
|
|
export const enum LViewFlags {
|
|
|
|
/**
|
|
|
|
* Whether or not the view is in creationMode.
|
|
|
|
*
|
|
|
|
* This must be stored in the view rather than using `data` as a marker so that
|
|
|
|
* we can properly support embedded views. Otherwise, when exiting a child view
|
|
|
|
* back into the parent view, `data` will be defined and `creationMode` will be
|
|
|
|
* improperly reported as false.
|
|
|
|
*/
|
2018-09-13 16:07:23 -07:00
|
|
|
CreationMode = 0b0000001,
|
2018-02-23 13:17:20 -08:00
|
|
|
|
|
|
|
/** Whether this view has default change detection strategy (checks always) or onPush */
|
2018-09-13 16:07:23 -07:00
|
|
|
CheckAlways = 0b0000010,
|
2018-02-23 13:17:20 -08:00
|
|
|
|
|
|
|
/** Whether or not this view is currently dirty (needing check) */
|
2018-09-13 16:07:23 -07:00
|
|
|
Dirty = 0b0000100,
|
2018-03-08 16:55:47 -08:00
|
|
|
|
|
|
|
/** Whether or not this view is currently attached to change detection tree. */
|
2018-09-13 16:07:23 -07:00
|
|
|
Attached = 0b0001000,
|
2018-06-01 18:54:23 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the init hooks have run.
|
|
|
|
*
|
|
|
|
* If on, the init hooks haven't yet been run and should be executed by the first component that
|
|
|
|
* runs OR the first cR() instruction that runs (so inits are run for the top level view before
|
|
|
|
* any embedded views).
|
|
|
|
*/
|
2018-09-13 16:07:23 -07:00
|
|
|
RunInit = 0b0010000,
|
2018-05-31 15:45:46 +02:00
|
|
|
|
|
|
|
/** Whether or not this view is destroyed. */
|
2018-09-13 16:07:23 -07:00
|
|
|
Destroyed = 0b0100000,
|
|
|
|
|
|
|
|
/** Whether or not this view is the root view */
|
|
|
|
IsRoot = 0b1000000,
|
2018-02-20 13:31:31 -08:00
|
|
|
}
|
|
|
|
|
2018-01-10 18:19:16 -08:00
|
|
|
/**
|
|
|
|
* The static data for an LView (shared between all templates of a
|
|
|
|
* given type).
|
|
|
|
*
|
|
|
|
* Stored on the template function as ngPrivateData.
|
|
|
|
*/
|
2018-01-22 17:43:52 -08:00
|
|
|
export interface TView {
|
2018-06-01 19:28:20 -07:00
|
|
|
/**
|
|
|
|
* ID for inline views to determine whether a view is the same as the previous view
|
|
|
|
* in a certain position. If it's not, we know the new view needs to be inserted
|
|
|
|
* and the one that exists needs to be removed (e.g. if/else statements)
|
|
|
|
*
|
|
|
|
* If this is -1, then this is a component view or a dynamically created view.
|
|
|
|
*/
|
|
|
|
readonly id: number;
|
|
|
|
|
2018-08-21 00:03:21 -07:00
|
|
|
/**
|
|
|
|
* This is a blueprint used to generate LViewData instances for this TView. Copying this
|
|
|
|
* blueprint is faster than creating a new LViewData from scratch.
|
|
|
|
*/
|
|
|
|
blueprint: LViewData;
|
|
|
|
|
2018-06-04 13:07:09 -07:00
|
|
|
/**
|
|
|
|
* The template function used to refresh the view of dynamically created views
|
|
|
|
* and components. Will be null for inline views.
|
|
|
|
*/
|
|
|
|
template: ComponentTemplate<{}>|null;
|
|
|
|
|
2018-06-19 17:58:42 +02:00
|
|
|
/**
|
|
|
|
* A function containing query-related instructions.
|
|
|
|
*/
|
|
|
|
viewQuery: ComponentQuery<{}>|null;
|
|
|
|
|
2018-05-16 05:56:01 -07:00
|
|
|
/**
|
|
|
|
* Pointer to the `TNode` that represents the root of the view.
|
|
|
|
*
|
|
|
|
* If this is a `TNode` for an `LViewNode`, this is an embedded view of a container.
|
|
|
|
* We need this pointer to be able to efficiently find this node when inserting the view
|
|
|
|
* into an anchor.
|
|
|
|
*
|
2018-09-05 16:15:37 -07:00
|
|
|
* If this is a `TElementNode`, this is the view of a root component. It has exactly one
|
|
|
|
* root TNode.
|
|
|
|
*
|
|
|
|
* If this is null, this is the view of a component that is not at root. We do not store
|
|
|
|
* the host TNodes for child component views because they can potentially have several
|
|
|
|
* different host TNodes, depending on where the component is being used. These host
|
|
|
|
* TNodes cannot be shared (due to different indices, etc).
|
2018-05-16 05:56:01 -07:00
|
|
|
*/
|
2018-09-05 16:15:37 -07:00
|
|
|
node: TViewNode|TElementNode|null;
|
2018-05-16 05:56:01 -07:00
|
|
|
|
2018-03-25 21:32:39 -07:00
|
|
|
/** Whether or not this template has been processed. */
|
|
|
|
firstTemplatePass: boolean;
|
|
|
|
|
2018-11-13 09:36:30 +01:00
|
|
|
/** Static data equivalent of LView.data[]. Contains TNodes, PipeDefInternal or TI18n. */
|
2018-01-22 17:43:52 -08:00
|
|
|
data: TData;
|
|
|
|
|
2018-06-01 18:14:05 -07:00
|
|
|
/**
|
|
|
|
* The binding start index is the index at which the data array
|
|
|
|
* starts to store bindings only. Saving this value ensures that we
|
|
|
|
* will begin reading bindings at the correct point in the array when
|
|
|
|
* we are in update mode.
|
|
|
|
*/
|
|
|
|
bindingStartIndex: number;
|
|
|
|
|
2018-08-20 13:03:03 -07:00
|
|
|
/**
|
2018-10-08 16:04:46 -07:00
|
|
|
* The index where the "expando" section of `LViewData` begins. The expando
|
|
|
|
* section contains injectors, directive instances, and host binding values.
|
|
|
|
* Unlike the "consts" and "vars" sections of `LViewData`, the length of this
|
|
|
|
* section cannot be calculated at compile-time because directives are matched
|
|
|
|
* at runtime to preserve locality.
|
|
|
|
*
|
|
|
|
* We store this start index so we know where to start checking host bindings
|
|
|
|
* in `setHostBindings`.
|
2018-08-20 13:03:03 -07:00
|
|
|
*/
|
2018-10-08 16:04:46 -07:00
|
|
|
expandoStartIndex: number;
|
2018-08-20 13:03:03 -07:00
|
|
|
|
2018-05-30 13:43:14 -07:00
|
|
|
/**
|
|
|
|
* Index of the host node of the first LView or LContainer beneath this LView in
|
|
|
|
* the hierarchy.
|
|
|
|
*
|
|
|
|
* Necessary to store this so views can traverse through their nested views
|
|
|
|
* to remove listeners and call onDestroy callbacks.
|
|
|
|
*
|
|
|
|
* For embedded views, we store the index of an LContainer's host rather than the first
|
|
|
|
* LView to avoid managing splicing when views are added/removed.
|
|
|
|
*/
|
|
|
|
childIndex: number;
|
|
|
|
|
2018-08-29 13:52:03 -07:00
|
|
|
/**
|
|
|
|
* A reference to the first child node located in the view.
|
|
|
|
*/
|
|
|
|
firstChild: TNode|null;
|
|
|
|
|
2018-10-08 16:04:46 -07:00
|
|
|
/**
|
|
|
|
* Set of instructions used to process host bindings efficiently.
|
|
|
|
*
|
|
|
|
* See VIEW_DATA.md for more information.
|
|
|
|
*/
|
|
|
|
expandoInstructions: (number|HostBindingsFunction)[]|null;
|
|
|
|
|
2018-03-25 21:32:39 -07:00
|
|
|
/**
|
|
|
|
* Full registry of directives and components that may be found in this view.
|
|
|
|
*
|
|
|
|
* It's necessary to keep a copy of the full def list on the TView so it's possible
|
|
|
|
* to render template functions without a host component.
|
|
|
|
*/
|
|
|
|
directiveRegistry: DirectiveDefList|null;
|
2018-01-22 17:43:52 -08:00
|
|
|
|
2018-03-27 15:53:48 -07:00
|
|
|
/**
|
|
|
|
* Full registry of pipes that may be found in this view.
|
|
|
|
*
|
|
|
|
* The property is either an array of `PipeDefs`s or a function which returns the array of
|
|
|
|
* `PipeDefs`s. The function is necessary to be able to support forward declarations.
|
|
|
|
*
|
|
|
|
* It's necessary to keep a copy of the full def list on the TView so it's possible
|
|
|
|
* to render template functions without a host component.
|
|
|
|
*/
|
|
|
|
pipeRegistry: PipeDefList|null;
|
|
|
|
|
2018-01-22 17:43:52 -08:00
|
|
|
/**
|
2018-01-25 20:41:57 -08:00
|
|
|
* Array of ngOnInit and ngDoCheck hooks that should be executed for this view in
|
|
|
|
* creation mode.
|
2018-01-22 17:43:52 -08:00
|
|
|
*
|
2018-01-25 20:41:57 -08:00
|
|
|
* Even indices: Directive index
|
2018-01-22 17:43:52 -08:00
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
initHooks: HookData|null;
|
2018-01-22 19:19:47 -08:00
|
|
|
|
|
|
|
/**
|
2018-01-25 20:41:57 -08:00
|
|
|
* Array of ngDoCheck hooks that should be executed for this view in update mode.
|
2018-01-22 19:19:47 -08:00
|
|
|
*
|
2018-01-25 20:41:57 -08:00
|
|
|
* Even indices: Directive index
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
checkHooks: HookData|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of ngAfterContentInit and ngAfterContentChecked hooks that should be executed
|
|
|
|
* for this view in creation mode.
|
|
|
|
*
|
|
|
|
* Even indices: Directive index
|
2018-01-22 19:19:47 -08:00
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
contentHooks: HookData|null;
|
|
|
|
|
2018-01-25 20:41:57 -08:00
|
|
|
/**
|
|
|
|
* Array of ngAfterContentChecked hooks that should be executed for this view in update
|
|
|
|
* mode.
|
|
|
|
*
|
|
|
|
* Even indices: Directive index
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
contentCheckHooks: HookData|null;
|
|
|
|
|
2018-01-22 19:19:47 -08:00
|
|
|
/**
|
|
|
|
* Array of ngAfterViewInit and ngAfterViewChecked hooks that should be executed for
|
2018-01-25 20:41:57 -08:00
|
|
|
* this view in creation mode.
|
2018-01-22 19:19:47 -08:00
|
|
|
*
|
2018-01-25 20:41:57 -08:00
|
|
|
* Even indices: Directive index
|
2018-01-22 19:19:47 -08:00
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
viewHooks: HookData|null;
|
2018-01-23 10:57:48 -08:00
|
|
|
|
2018-01-25 20:41:57 -08:00
|
|
|
/**
|
|
|
|
* Array of ngAfterViewChecked hooks that should be executed for this view in
|
|
|
|
* update mode.
|
|
|
|
*
|
|
|
|
* Even indices: Directive index
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
viewCheckHooks: HookData|null;
|
|
|
|
|
2018-01-23 10:57:48 -08:00
|
|
|
/**
|
|
|
|
* Array of ngOnDestroy hooks that should be executed when this view is destroyed.
|
|
|
|
*
|
|
|
|
* Even indices: Directive index
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
destroyHooks: HookData|null;
|
2018-03-13 11:48:09 -07:00
|
|
|
|
|
|
|
/**
|
2018-03-21 15:10:34 -07:00
|
|
|
* Array of pipe ngOnDestroy hooks that should be executed when this view is destroyed.
|
|
|
|
*
|
|
|
|
* Even indices: Index of pipe in data
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*
|
|
|
|
* These must be stored separately from directive destroy hooks because their contexts
|
|
|
|
* are stored in data.
|
|
|
|
*/
|
|
|
|
pipeDestroyHooks: HookData|null;
|
|
|
|
|
2018-06-05 15:28:15 -07:00
|
|
|
/**
|
|
|
|
* When a view is destroyed, listeners need to be released and outputs need to be
|
|
|
|
* unsubscribed. This cleanup array stores both listener data (in chunks of 4)
|
|
|
|
* and output data (in chunks of 2) for a particular view. Combining the arrays
|
|
|
|
* saves on memory (70 bytes per array) and on a few bytes of code size (for two
|
|
|
|
* separate for loops).
|
|
|
|
*
|
|
|
|
* If it's a native DOM listener being stored:
|
|
|
|
* 1st index is: event name to remove
|
|
|
|
* 2nd index is: index of native element in LView.data[]
|
|
|
|
* 3rd index is: index of wrapped listener function in LView.cleanupInstances[]
|
|
|
|
* 4th index is: useCapture boolean
|
|
|
|
*
|
|
|
|
* If it's a renderer2 style listener or ViewRef destroy hook being stored:
|
|
|
|
* 1st index is: index of the cleanup function in LView.cleanupInstances[]
|
|
|
|
* 2nd index is: null
|
|
|
|
*
|
|
|
|
* If it's an output subscription or query list destroy hook:
|
|
|
|
* 1st index is: output unsubscribe function / query list destroy function
|
|
|
|
* 2nd index is: index of function context in LView.cleanupInstances[]
|
|
|
|
*/
|
|
|
|
cleanup: any[]|null;
|
|
|
|
|
2018-03-21 15:10:34 -07:00
|
|
|
/**
|
2018-07-17 11:45:49 -07:00
|
|
|
* A list of element indices for child components that will need to be
|
|
|
|
* refreshed when the current view has finished its check. These indices have
|
|
|
|
* already been adjusted for the HEADER_OFFSET.
|
2018-03-21 15:10:34 -07:00
|
|
|
*
|
2018-03-13 11:48:09 -07:00
|
|
|
*/
|
|
|
|
components: number[]|null;
|
2018-03-16 16:42:13 -07:00
|
|
|
|
2018-07-10 10:43:07 +02:00
|
|
|
/**
|
|
|
|
* A list of indices for child directives that have content queries.
|
|
|
|
*
|
|
|
|
* Even indices: Directive indices
|
|
|
|
* Odd indices: Starting index of content queries (stored in CONTENT_QUERIES) for this directive
|
|
|
|
*/
|
|
|
|
contentQueries: number[]|null;
|
2018-01-22 17:43:52 -08:00
|
|
|
}
|
|
|
|
|
2018-08-28 16:49:52 -07:00
|
|
|
export const enum RootContextFlags {Empty = 0b00, DetectChanges = 0b01, FlushPlayers = 0b10}
|
|
|
|
|
|
|
|
|
2018-02-03 20:34:30 -08:00
|
|
|
/**
|
|
|
|
* RootContext contains information which is shared for all components which
|
|
|
|
* were bootstrapped with {@link renderComponent}.
|
|
|
|
*/
|
|
|
|
export interface RootContext {
|
|
|
|
/**
|
|
|
|
* A function used for scheduling change detection in the future. Usually
|
|
|
|
* this is `requestAnimationFrame`.
|
|
|
|
*/
|
|
|
|
scheduler: (workFn: () => void) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A promise which is resolved when all components are considered clean (not dirty).
|
|
|
|
*
|
|
|
|
* This promise is overwritten every time a first call to {@link markDirty} is invoked.
|
|
|
|
*/
|
|
|
|
clean: Promise<null>;
|
|
|
|
|
|
|
|
/**
|
2018-05-09 16:49:39 -07:00
|
|
|
* RootComponents - The components that were instantiated by the call to
|
2018-02-03 20:34:30 -08:00
|
|
|
* {@link renderComponent}.
|
|
|
|
*/
|
2018-05-09 16:49:39 -07:00
|
|
|
components: {}[];
|
2018-08-28 16:49:52 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The player flushing handler to kick off all animations
|
|
|
|
*/
|
|
|
|
playerHandler: PlayerHandler|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* What render-related operations to run once a scheduler has been set
|
|
|
|
*/
|
|
|
|
flags: RootContextFlags;
|
2018-02-03 20:34:30 -08:00
|
|
|
}
|
|
|
|
|
2018-01-22 17:43:52 -08:00
|
|
|
/**
|
2018-01-23 10:57:48 -08:00
|
|
|
* Array of hooks that should be executed for a view and their directive indices.
|
2018-01-22 17:43:52 -08:00
|
|
|
*
|
2018-01-25 20:41:57 -08:00
|
|
|
* Even indices: Directive index
|
2018-01-22 17:43:52 -08:00
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
export type HookData = (number | (() => void))[];
|
2018-01-10 18:19:16 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Static data that corresponds to the instance-specific data array on an LView.
|
|
|
|
*
|
|
|
|
* Each node's static data is stored in tData at the same index that it's stored
|
2018-10-02 21:12:26 -07:00
|
|
|
* in the data array. Any nodes that do not have static data store a null value in
|
|
|
|
* tData to avoid a sparse array.
|
|
|
|
*
|
|
|
|
* Each pipe's definition is stored here at the same index as its pipe instance in
|
|
|
|
* the data array.
|
|
|
|
*
|
|
|
|
* Injector bloom filters are also stored here.
|
2018-01-10 18:19:16 -08:00
|
|
|
*/
|
2018-10-18 09:23:18 +02:00
|
|
|
export type TData =
|
|
|
|
(TNode | PipeDef<any>| DirectiveDef<any>| ComponentDef<any>| number | Type<any>|
|
2018-11-13 09:36:30 +01:00
|
|
|
InjectionToken<any>| TI18n | I18nUpdateOpCodes | null)[];
|
2018-04-04 21:21:12 -07:00
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
|
|
// failure based on types.
|
|
|
|
export const unusedValueExportToPlacateAjd = 1;
|