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';
|
2019-01-09 13:49:16 -08:00
|
|
|
|
import {Type} from '../../interface/type';
|
2019-02-12 00:03:04 +01:00
|
|
|
|
import {SchemaMetadata} from '../../metadata';
|
2019-07-31 13:15:50 -07:00
|
|
|
|
import {Sanitizer} from '../../sanitization/sanitizer';
|
2019-01-11 16:07:01 -08:00
|
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
|
import {LContainer} from './container';
|
2019-02-02 11:20:33 -08:00
|
|
|
|
import {ComponentDef, ComponentTemplate, DirectiveDef, DirectiveDefList, HostBindingsFunction, PipeDef, PipeDefList, ViewQueriesFunction} from './definition';
|
2018-11-13 09:36:30 +01:00
|
|
|
|
import {I18nUpdateOpCodes, TI18n} from './i18n';
|
2019-12-12 13:03:20 -08:00
|
|
|
|
import {TConstants, TElementNode, TNode, TViewNode} from './node';
|
2018-10-03 14:09:59 -07:00
|
|
|
|
import {PlayerHandler} from './player';
|
2019-06-07 10:55:48 +02:00
|
|
|
|
import {LQueries, TQueries} from './query';
|
2018-11-21 21:14:06 -08:00
|
|
|
|
import {RElement, Renderer3, RendererFactory3} from './renderer';
|
2019-12-12 13:03:20 -08:00
|
|
|
|
import {TStylingKey, TStylingRange} from './styling';
|
2018-01-09 18:38:17 -08:00
|
|
|
|
|
2018-10-03 14:09:59 -07:00
|
|
|
|
|
2019-01-11 16:07:01 -08:00
|
|
|
|
|
2018-11-21 21:14:06 -08:00
|
|
|
|
// Below are constants for LView indices to help us look up LView members
|
2018-06-07 22:42:32 -07:00
|
|
|
|
// without having to remember the specific indices.
|
|
|
|
|
// Uglify will inline these when minifying so there shouldn't be a cost.
|
2019-02-23 09:45:55 -08:00
|
|
|
|
export const HOST = 0;
|
|
|
|
|
export const TVIEW = 1;
|
|
|
|
|
export const FLAGS = 2;
|
|
|
|
|
export const PARENT = 3;
|
|
|
|
|
export const NEXT = 4;
|
2020-01-13 15:12:16 -08:00
|
|
|
|
export const TRANSPLANTED_VIEWS_TO_REFRESH = 5;
|
2019-01-30 23:42:26 +00:00
|
|
|
|
export const T_HOST = 6;
|
2019-10-11 12:43:32 -07:00
|
|
|
|
export const CLEANUP = 7;
|
|
|
|
|
export const CONTEXT = 8;
|
|
|
|
|
export const INJECTOR = 9;
|
|
|
|
|
export const RENDERER_FACTORY = 10;
|
|
|
|
|
export const RENDERER = 11;
|
|
|
|
|
export const SANITIZER = 12;
|
|
|
|
|
export const CHILD_HEAD = 13;
|
|
|
|
|
export const CHILD_TAIL = 14;
|
|
|
|
|
export const DECLARATION_VIEW = 15;
|
2019-11-08 15:13:22 -08:00
|
|
|
|
export const DECLARATION_COMPONENT_VIEW = 16;
|
|
|
|
|
export const DECLARATION_LCONTAINER = 17;
|
|
|
|
|
export const PREORDER_HOOK_FLAGS = 18;
|
2020-01-13 15:12:16 -08:00
|
|
|
|
export const QUERIES = 19;
|
2018-11-21 21:14:06 -08:00
|
|
|
|
/** Size of LView's header. Necessary to adjust for it when setting slots. */
|
2020-01-13 15:12:16 -08:00
|
|
|
|
export const HEADER_OFFSET = 20;
|
2018-11-21 21:14:06 -08:00
|
|
|
|
|
2018-03-21 15:10:34 -07:00
|
|
|
|
|
2018-11-21 21:14:06 -08:00
|
|
|
|
// This interface replaces the real LView interface if it is an arg or a
|
2018-07-30 19:43:56 -07:00
|
|
|
|
// 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-11-21 21:14:06 -08:00
|
|
|
|
* `LView` 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-11-21 21:14:06 -08:00
|
|
|
|
* own `LView`. When processing a particular view, we set the `viewData` to that
|
|
|
|
|
* `LView`. When that view is done processing, the `viewData` is set back to
|
|
|
|
|
* whatever the original `viewData` was before (the parent `LView`).
|
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-11-21 21:14:06 -08:00
|
|
|
|
export interface LView extends Array<any> {
|
2019-02-23 09:45:55 -08:00
|
|
|
|
/**
|
|
|
|
|
* The host node for this LView instance, if this is a component view.
|
|
|
|
|
* If this is an embedded view, HOST will be null.
|
|
|
|
|
*/
|
2019-05-28 10:31:01 -07:00
|
|
|
|
[HOST]: RElement|null;
|
2019-02-23 09:45:55 -08:00
|
|
|
|
|
2018-06-07 22:42:32 -07:00
|
|
|
|
/**
|
|
|
|
|
* 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).
|
|
|
|
|
*/
|
2018-11-14 19:25:03 -08:00
|
|
|
|
readonly[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
|
|
|
|
/**
|
2019-01-25 15:21:51 -08:00
|
|
|
|
* This may store an {@link LView} or {@link LContainer}.
|
|
|
|
|
*
|
|
|
|
|
* `LView` - The parent view. This is needed when we exit the view and must restore the previous
|
|
|
|
|
* LView. 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
|
|
|
|
*
|
2019-01-25 15:21:51 -08:00
|
|
|
|
* `LContainer` - The current view is part of a container, and is an embedded view.
|
2018-01-09 18:38:17 -08:00
|
|
|
|
*/
|
2019-01-28 14:45:31 -08:00
|
|
|
|
[PARENT]: LView|LContainer|null;
|
2018-06-07 22:42:32 -07:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
2018-11-21 21:14:06 -08:00
|
|
|
|
* The next sibling LView or LContainer.
|
2018-06-07 22:42:32 -07:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2018-11-21 21:14:06 -08:00
|
|
|
|
[NEXT]: LView|LContainer|null;
|
2018-06-07 22:42:32 -07:00
|
|
|
|
|
|
|
|
|
/** Queries active for this view - nodes from a view are reported to those queries. */
|
|
|
|
|
[QUERIES]: LQueries|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
|
|
|
|
*/
|
2019-01-30 23:42:26 +00:00
|
|
|
|
[T_HOST]: TViewNode|TElementNode|null;
|
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-11-21 21:14:06 -08:00
|
|
|
|
// TODO: flatten into LView[]
|
2018-06-07 22:42:32 -07:00
|
|
|
|
[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. */
|
2018-11-14 19:25:03 -08:00
|
|
|
|
readonly[INJECTOR]: Injector|null;
|
2018-04-12 15:54:16 -07:00
|
|
|
|
|
2019-11-29 01:29:16 +08:00
|
|
|
|
/** Factory to be used for creating Renderer. */
|
2018-11-21 21:14:06 -08:00
|
|
|
|
[RENDERER_FACTORY]: RendererFactory3;
|
|
|
|
|
|
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
|
|
|
|
|
2019-01-25 15:21:51 -08:00
|
|
|
|
/**
|
|
|
|
|
* Reference to 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.
|
|
|
|
|
*/
|
|
|
|
|
[CHILD_HEAD]: LView|LContainer|null;
|
|
|
|
|
|
2018-05-09 15:30:16 -07:00
|
|
|
|
/**
|
2018-11-21 21:14:06 -08:00
|
|
|
|
* The last LView or LContainer beneath this LView in the hierarchy.
|
2018-06-07 22:42:32 -07:00
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
*/
|
2019-01-28 14:45:31 -08:00
|
|
|
|
[CHILD_TAIL]: LView|LContainer|null;
|
2018-07-10 10:43:07 +02:00
|
|
|
|
|
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
|
2018-11-21 21:14:06 -08:00
|
|
|
|
* inserted) in LView[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-11-21 21:14:06 -08:00
|
|
|
|
[DECLARATION_VIEW]: LView|null;
|
2019-03-01 14:39:28 +01:00
|
|
|
|
|
2019-11-08 15:13:22 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Points to the declaration component view, used to track transplanted `LView`s.
|
|
|
|
|
*
|
|
|
|
|
* See: `DECLARATION_VIEW` which points to the actual `LView` where it was declared, whereas
|
|
|
|
|
* `DECLARATION_COMPONENT_VIEW` points to the component which may not be same as
|
|
|
|
|
* `DECLARATION_VIEW`.
|
|
|
|
|
*
|
|
|
|
|
* Example:
|
|
|
|
|
* ```
|
|
|
|
|
* <#VIEW #myComp>
|
|
|
|
|
* <div *ngIf="true">
|
|
|
|
|
* <ng-template #myTmpl>...</ng-template>
|
|
|
|
|
* </div>
|
|
|
|
|
* </#VIEW>
|
|
|
|
|
* ```
|
|
|
|
|
* In the above case `DECLARATION_VIEW` for `myTmpl` points to the `LView` of `ngIf` whereas
|
|
|
|
|
* `DECLARATION_COMPONENT_VIEW` points to `LView` of the `myComp` which owns the template.
|
|
|
|
|
*
|
|
|
|
|
* The reason for this is that all embedded views are always check-always whereas the component
|
|
|
|
|
* view can be check-always or on-push. When we have a transplanted view it is important to
|
|
|
|
|
* determine if we have transplanted a view from check-always declaration to on-push insertion
|
|
|
|
|
* point. In such a case the transplanted view needs to be added to the `LContainer` in the
|
|
|
|
|
* declared `LView` and CD during the declared view CD (in addition to the CD at the insertion
|
|
|
|
|
* point.) (Any transplanted views which are intra Component are of no interest because the CD
|
|
|
|
|
* strategy of declaration and insertion will always be the same, because it is the same
|
|
|
|
|
* component.)
|
|
|
|
|
*
|
|
|
|
|
* Queries already track moved views in `LView[DECLARATION_LCONTAINER]` and
|
|
|
|
|
* `LContainer[MOVED_VIEWS]`. However the queries also track `LView`s which moved within the same
|
|
|
|
|
* component `LView`. Transplanted views are a subset of moved views, and we use
|
|
|
|
|
* `DECLARATION_COMPONENT_VIEW` to differentiate them. As in this example.
|
|
|
|
|
*
|
|
|
|
|
* Example showing intra component `LView` movement.
|
|
|
|
|
* ```
|
|
|
|
|
* <#VIEW #myComp>
|
|
|
|
|
* <div *ngIf="condition; then thenBlock else elseBlock"></div>
|
|
|
|
|
* <ng-template #thenBlock>Content to render when condition is true.</ng-template>
|
|
|
|
|
* <ng-template #elseBlock>Content to render when condition is false.</ng-template>
|
|
|
|
|
* </#VIEW>
|
|
|
|
|
* ```
|
|
|
|
|
* The `thenBlock` and `elseBlock` is moved but not transplanted.
|
|
|
|
|
*
|
|
|
|
|
* Example showing inter component `LView` movement (transplanted view).
|
|
|
|
|
* ```
|
|
|
|
|
* <#VIEW #myComp>
|
|
|
|
|
* <ng-template #myTmpl>...</ng-template>
|
|
|
|
|
* <insertion-component [template]="myTmpl"></insertion-component>
|
|
|
|
|
* </#VIEW>
|
|
|
|
|
* ```
|
|
|
|
|
* In the above example `myTmpl` is passed into a different component. If `insertion-component`
|
|
|
|
|
* instantiates `myTmpl` and `insertion-component` is on-push then the `LContainer` needs to be
|
|
|
|
|
* marked as containing transplanted views and those views need to be CD as part of the
|
|
|
|
|
* declaration CD.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* When change detection runs, it iterates over `[MOVED_VIEWS]` and CDs any child `LView`s where
|
|
|
|
|
* the `DECLARATION_COMPONENT_VIEW` of the current component and the child `LView` does not match
|
|
|
|
|
* (it has been transplanted across components.)
|
|
|
|
|
*
|
|
|
|
|
* Note: `[DECLARATION_COMPONENT_VIEW]` points to itself if the LView is a component view (the
|
|
|
|
|
* simplest / most common case).
|
|
|
|
|
*
|
|
|
|
|
* see also:
|
|
|
|
|
* - https://hackmd.io/@mhevery/rJUJsvv9H write up of the problem
|
2020-05-12 10:35:52 -07:00
|
|
|
|
* - `LContainer[HAS_TRANSPLANTED_VIEWS]` which marks which `LContainer` has transplanted views.
|
2019-11-08 15:13:22 -08:00
|
|
|
|
* - `LContainer[TRANSPLANT_HEAD]` and `LContainer[TRANSPLANT_TAIL]` storage for transplanted
|
|
|
|
|
* - `LView[DECLARATION_LCONTAINER]` similar problem for queries
|
|
|
|
|
* - `LContainer[MOVED_VIEWS]` similar problem for queries
|
|
|
|
|
*/
|
2019-11-13 16:22:55 -08:00
|
|
|
|
[DECLARATION_COMPONENT_VIEW]: LView;
|
2019-11-08 15:13:22 -08:00
|
|
|
|
|
2019-06-07 10:55:48 +02:00
|
|
|
|
/**
|
|
|
|
|
* A declaration point of embedded views (ones instantiated based on the content of a
|
|
|
|
|
* <ng-template>), null for other types of views.
|
|
|
|
|
*
|
|
|
|
|
* We need to track all embedded views created from a given declaration point so we can prepare
|
|
|
|
|
* query matches in a proper order (query matches are ordered based on their declaration point and
|
|
|
|
|
* _not_ the insertion point).
|
|
|
|
|
*/
|
|
|
|
|
[DECLARATION_LCONTAINER]: LContainer|null;
|
|
|
|
|
|
2019-03-01 14:39:28 +01:00
|
|
|
|
/**
|
|
|
|
|
* More flags for this view. See PreOrderHookFlags for more info.
|
|
|
|
|
*/
|
|
|
|
|
[PREORDER_HOOK_FLAGS]: PreOrderHookFlags;
|
2020-01-13 15:12:16 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The number of direct transplanted views which need a refresh or have descendants themselves
|
|
|
|
|
* that need a refresh but have not marked their ancestors as Dirty. This tells us that during
|
|
|
|
|
* change detection we should still descend to find those children to refresh, even if the parents
|
|
|
|
|
* are not `Dirty`/`CheckAlways`.
|
|
|
|
|
*/
|
|
|
|
|
[TRANSPLANTED_VIEWS_TO_REFRESH]: number;
|
2018-01-09 18:38:17 -08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-21 21:14:06 -08:00
|
|
|
|
/** Flags associated with an LView (saved in LView[FLAGS]) */
|
2018-02-23 13:17:20 -08:00
|
|
|
|
export const enum LViewFlags {
|
2019-01-18 17:38:39 +01:00
|
|
|
|
/** The state of the init phase on the first 2 bits */
|
|
|
|
|
InitPhaseStateIncrementer = 0b00000000001,
|
|
|
|
|
InitPhaseStateMask = 0b00000000011,
|
|
|
|
|
|
2018-02-23 13:17:20 -08:00
|
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2019-01-18 17:38:39 +01:00
|
|
|
|
CreationMode = 0b00000000100,
|
2018-12-18 16:58:51 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether or not this LView instance is on its first processing pass.
|
|
|
|
|
*
|
|
|
|
|
* An LView instance is considered to be on its "first pass" until it
|
|
|
|
|
* has completed one creation mode run and one update mode run. At this
|
|
|
|
|
* time, the flag is turned off.
|
|
|
|
|
*/
|
2019-01-18 17:38:39 +01:00
|
|
|
|
FirstLViewPass = 0b00000001000,
|
2018-02-23 13:17:20 -08:00
|
|
|
|
|
|
|
|
|
/** Whether this view has default change detection strategy (checks always) or onPush */
|
2019-01-18 17:38:39 +01:00
|
|
|
|
CheckAlways = 0b00000010000,
|
2018-02-23 13:17:20 -08:00
|
|
|
|
|
2019-01-30 21:54:44 -08:00
|
|
|
|
/**
|
|
|
|
|
* Whether or not manual change detection is turned on for onPush components.
|
|
|
|
|
*
|
|
|
|
|
* This is a special mode that only marks components dirty in two cases:
|
|
|
|
|
* 1) There has been a change to an @Input property
|
|
|
|
|
* 2) `markDirty()` has been called manually by the user
|
|
|
|
|
*
|
|
|
|
|
* Note that in this mode, the firing of events does NOT mark components
|
|
|
|
|
* dirty automatically.
|
|
|
|
|
*
|
|
|
|
|
* Manual mode is turned off by default for backwards compatibility, as events
|
|
|
|
|
* automatically mark OnPush components dirty in View Engine.
|
|
|
|
|
*
|
|
|
|
|
* TODO: Add a public API to ChangeDetectionStrategy to turn this mode on
|
|
|
|
|
*/
|
|
|
|
|
ManualOnPush = 0b00000100000,
|
|
|
|
|
|
2018-02-23 13:17:20 -08:00
|
|
|
|
/** Whether or not this view is currently dirty (needing check) */
|
2019-01-30 21:54:44 -08:00
|
|
|
|
Dirty = 0b000001000000,
|
2018-03-08 16:55:47 -08:00
|
|
|
|
|
|
|
|
|
/** Whether or not this view is currently attached to change detection tree. */
|
2019-01-30 21:54:44 -08:00
|
|
|
|
Attached = 0b000010000000,
|
2018-05-31 15:45:46 +02:00
|
|
|
|
|
|
|
|
|
/** Whether or not this view is destroyed. */
|
2019-01-30 21:54:44 -08:00
|
|
|
|
Destroyed = 0b000100000000,
|
2018-09-13 16:07:23 -07:00
|
|
|
|
|
|
|
|
|
/** Whether or not this view is the root view */
|
2019-01-30 21:54:44 -08:00
|
|
|
|
IsRoot = 0b001000000000,
|
2019-01-18 17:38:39 +01:00
|
|
|
|
|
|
|
|
|
/**
|
2020-01-13 15:12:16 -08:00
|
|
|
|
* Whether this moved LView was needs to be refreshed at the insertion location because the
|
|
|
|
|
* declaration was dirty.
|
|
|
|
|
*/
|
|
|
|
|
RefreshTransplantedView = 0b0010000000000,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Index of the current init phase on last 21 bits
|
2019-01-18 17:38:39 +01:00
|
|
|
|
*/
|
2020-01-13 15:12:16 -08:00
|
|
|
|
IndexWithinInitPhaseIncrementer = 0b0100000000000,
|
|
|
|
|
IndexWithinInitPhaseShift = 11,
|
|
|
|
|
IndexWithinInitPhaseReset = 0b0011111111111,
|
2019-01-18 17:38:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Possible states of the init phase:
|
|
|
|
|
* - 00: OnInit hooks to be run.
|
|
|
|
|
* - 01: AfterContentInit hooks to be run
|
|
|
|
|
* - 10: AfterViewInit hooks to be run
|
|
|
|
|
* - 11: All init hooks have been run
|
|
|
|
|
*/
|
|
|
|
|
export const enum InitPhaseState {
|
|
|
|
|
OnInitHooksToBeRun = 0b00,
|
|
|
|
|
AfterContentInitHooksToBeRun = 0b01,
|
|
|
|
|
AfterViewInitHooksToBeRun = 0b10,
|
|
|
|
|
InitPhaseCompleted = 0b11,
|
2018-02-20 13:31:31 -08:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-11 16:11:20 -07:00
|
|
|
|
/** More flags associated with an LView (saved in LView[PREORDER_HOOK_FLAGS]) */
|
2019-03-01 14:39:28 +01:00
|
|
|
|
export const enum PreOrderHookFlags {
|
fix(core): ngOnDestroy on multi providers called with incorrect context (#35840)
Currently destroy hooks are stored in memory as `[1, hook, 5, hook]` where
the numbers represent the index at which to find the context and `hook` is
the function to be invoked. This breaks down for `multi` providers,
because the value at the index will be an array of providers, resulting in
the hook being invoked with an array of all the multi provider values,
rather than the provider that was destroyed. In ViewEngine `ngOnDestroy`
wasn't being called for `multi` providers at all.
These changes fix the issue by changing the structure of the destroy hooks to `[1, hook, 5, [0, hook, 3, hook]]` where the indexes inside the inner array point to the provider inside of the multi provider array. Note that this is slightly different from the original design which called for the structure to be `[1, hook, 5, [hook, hook]`, because in the process of implementing it, I realized that we wouldn't get passing the correct context if only some of the `multi` providers have `ngOnDestroy` and others don't.
I've run the newly-added `view_destroy_hooks` benchmark against these changes and compared it to master. The difference seems to be insignificant (between 1% and 2% slower).
Fixes #35231.
PR Close #35840
2020-03-03 21:05:26 +01:00
|
|
|
|
/**
|
|
|
|
|
The index of the next pre-order hook to be called in the hooks array, on the first 16
|
|
|
|
|
bits
|
|
|
|
|
*/
|
2019-03-01 14:39:28 +01:00
|
|
|
|
IndexOfTheNextPreOrderHookMaskMask = 0b01111111111111111,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The number of init hooks that have already been called, on the last 16 bits
|
|
|
|
|
*/
|
|
|
|
|
NumberOfInitHooksCalledIncrementer = 0b010000000000000000,
|
|
|
|
|
NumberOfInitHooksCalledShift = 16,
|
|
|
|
|
NumberOfInitHooksCalledMask = 0b11111111111111110000000000000000,
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-12 12:04:44 -08:00
|
|
|
|
/**
|
|
|
|
|
* Set of instructions used to process host bindings efficiently.
|
|
|
|
|
*
|
|
|
|
|
* See VIEW_DATA.md for more information.
|
|
|
|
|
*/
|
|
|
|
|
export interface ExpandoInstructions extends Array<number|HostBindingsFunction<any>|null> {}
|
|
|
|
|
|
2019-10-28 12:08:17 -07:00
|
|
|
|
/**
|
|
|
|
|
* Explicitly marks `TView` as a specific type in `ngDevMode`
|
|
|
|
|
*
|
|
|
|
|
* It is useful to know conceptually what time of `TView` we are dealing with when
|
|
|
|
|
* debugging an application (even if the runtime does not need it.) For this reason
|
|
|
|
|
* we store this information in the `ngDevMode` `TView` and than use it for
|
|
|
|
|
* better debugging experience.
|
|
|
|
|
*/
|
|
|
|
|
export const enum TViewType {
|
|
|
|
|
/**
|
|
|
|
|
* Root `TView` is the used to bootstrap components into. It is used in conjunction with
|
|
|
|
|
* `LView` which takes an existing DOM node not owned by Angular and wraps it in `TView`/`LView`
|
|
|
|
|
* so that other components can be loaded into it.
|
|
|
|
|
*/
|
|
|
|
|
Root = 0,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* `TView` associated with a Component. This would be the `TView` directly associated with the
|
|
|
|
|
* component view (as opposed an `Embedded` `TView` which would be a child of `Component` `TView`)
|
|
|
|
|
*/
|
|
|
|
|
Component = 1,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* `TView` associated with a template. Such as `*ngIf`, `<ng-template>` etc... A `Component`
|
|
|
|
|
* can have zero or more `Embedede` `TView`s.
|
|
|
|
|
*/
|
|
|
|
|
Embedded = 2,
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-10 18:19:16 -08:00
|
|
|
|
/**
|
|
|
|
|
* The static data for an LView (shared between all templates of a
|
|
|
|
|
* given type).
|
|
|
|
|
*
|
2019-05-17 16:25:09 -07:00
|
|
|
|
* Stored on the `ComponentDef.tView`.
|
2018-01-10 18:19:16 -08:00
|
|
|
|
*/
|
2018-01-22 17:43:52 -08:00
|
|
|
|
export interface TView {
|
2019-11-08 15:13:22 -08:00
|
|
|
|
/**
|
|
|
|
|
* Type of `TView` (`Root`|`Component`|`Embedded`).
|
|
|
|
|
*/
|
|
|
|
|
type: TViewType;
|
|
|
|
|
|
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
|
|
|
|
/**
|
2018-11-21 21:14:06 -08:00
|
|
|
|
* This is a blueprint used to generate LView instances for this TView. Copying this
|
|
|
|
|
* blueprint is faster than creating a new LView from scratch.
|
2018-08-21 00:03:21 -07:00
|
|
|
|
*/
|
2018-11-21 21:14:06 -08:00
|
|
|
|
blueprint: LView;
|
2018-08-21 00:03:21 -07:00
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2019-02-02 11:20:33 -08:00
|
|
|
|
viewQuery: ViewQueriesFunction<{}>|null;
|
2018-06-19 17:58:42 +02:00
|
|
|
|
|
2018-05-16 05:56:01 -07:00
|
|
|
|
/**
|
2019-06-07 20:46:11 -07:00
|
|
|
|
* Pointer to the host `TNode` (not part of this TView).
|
2018-05-16 05:56:01 -07:00
|
|
|
|
*
|
2018-12-17 14:19:25 +01:00
|
|
|
|
* If this is a `TViewNode` for an `LViewNode`, this is an embedded view of a container.
|
2018-05-16 05:56:01 -07:00
|
|
|
|
* 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
|
|
|
|
|
2019-11-01 13:06:17 -07:00
|
|
|
|
/** Whether or not this template has been processed in creation mode. */
|
|
|
|
|
firstCreatePass: boolean;
|
2018-03-25 21:32:39 -07:00
|
|
|
|
|
2019-12-17 15:40:37 -08:00
|
|
|
|
/**
|
|
|
|
|
* Whether or not this template has been processed in update mode (e.g. change detected)
|
|
|
|
|
*
|
|
|
|
|
* `firstUpdatePass` is used by styling to set up `TData` to contain metadata about the styling
|
|
|
|
|
* instructions. (Mainly to build up a linked list of styling priority order.)
|
|
|
|
|
*
|
|
|
|
|
* Typically this function gets cleared after first execution. If exception is thrown then this
|
|
|
|
|
* flag can remain turned un until there is first successful (no exception) pass. This means that
|
|
|
|
|
* individual styling instructions keep track of if they have already been added to the linked
|
|
|
|
|
* list to prevent double adding.
|
|
|
|
|
*/
|
2019-10-29 15:15:09 -07:00
|
|
|
|
firstUpdatePass: 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.
|
2019-10-11 12:43:32 -07:00
|
|
|
|
*
|
|
|
|
|
* -1 means that it has not been initialized.
|
2018-06-01 18:14:05 -07:00
|
|
|
|
*/
|
|
|
|
|
bindingStartIndex: number;
|
|
|
|
|
|
2018-08-20 13:03:03 -07:00
|
|
|
|
/**
|
2018-11-21 21:14:06 -08:00
|
|
|
|
* The index where the "expando" section of `LView` begins. The expando
|
2018-10-08 16:04:46 -07:00
|
|
|
|
* section contains injectors, directive instances, and host binding values.
|
2019-09-23 20:08:51 +02:00
|
|
|
|
* Unlike the "decls" and "vars" sections of `LView`, the length of this
|
2018-10-08 16:04:46 -07:00
|
|
|
|
* 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
|
|
|
|
|
2019-02-18 17:33:59 -08:00
|
|
|
|
/**
|
|
|
|
|
* Whether or not there are any static view queries tracked on this view.
|
|
|
|
|
*
|
|
|
|
|
* We store this so we know whether or not we should do a view query
|
|
|
|
|
* refresh after creation mode to collect static query results.
|
|
|
|
|
*/
|
|
|
|
|
staticViewQueries: boolean;
|
|
|
|
|
|
2019-02-18 18:18:56 -08:00
|
|
|
|
/**
|
|
|
|
|
* Whether or not there are any static content queries tracked on this view.
|
|
|
|
|
*
|
|
|
|
|
* We store this so we know whether or not we should do a content query
|
|
|
|
|
* refresh after creation mode to collect static query results.
|
|
|
|
|
*/
|
|
|
|
|
staticContentQueries: boolean;
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2020-01-09 12:05:40 -08:00
|
|
|
|
// TODO(misko): `expandoInstructions` should be renamed to `hostBindingsInstructions` since they
|
|
|
|
|
// keep track of `hostBindings` which need to be executed.
|
2019-02-12 12:04:44 -08:00
|
|
|
|
expandoInstructions: ExpandoInstructions|null;
|
2018-10-08 16:04:46 -07:00
|
|
|
|
|
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
|
|
|
|
/**
|
2019-03-01 14:39:28 +01:00
|
|
|
|
* Array of ngOnInit, ngOnChanges and ngDoCheck hooks that should be executed for this view in
|
2018-01-25 20:41:57 -08:00
|
|
|
|
* 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
|
|
|
|
|
*/
|
2019-03-01 14:39:28 +01:00
|
|
|
|
preOrderHooks: HookData|null;
|
2018-01-22 19:19:47 -08:00
|
|
|
|
|
|
|
|
|
/**
|
2019-03-01 14:39:28 +01:00
|
|
|
|
* Array of ngOnChanges and 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
|
|
|
|
|
*/
|
2019-03-01 14:39:28 +01:00
|
|
|
|
preOrderCheckHooks: HookData|null;
|
2018-01-25 20:41:57 -08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
fix(core): ngOnDestroy on multi providers called with incorrect context (#35840)
Currently destroy hooks are stored in memory as `[1, hook, 5, hook]` where
the numbers represent the index at which to find the context and `hook` is
the function to be invoked. This breaks down for `multi` providers,
because the value at the index will be an array of providers, resulting in
the hook being invoked with an array of all the multi provider values,
rather than the provider that was destroyed. In ViewEngine `ngOnDestroy`
wasn't being called for `multi` providers at all.
These changes fix the issue by changing the structure of the destroy hooks to `[1, hook, 5, [0, hook, 3, hook]]` where the indexes inside the inner array point to the provider inside of the multi provider array. Note that this is slightly different from the original design which called for the structure to be `[1, hook, 5, [hook, hook]`, because in the process of implementing it, I realized that we wouldn't get passing the correct context if only some of the `multi` providers have `ngOnDestroy` and others don't.
I've run the newly-added `view_destroy_hooks` benchmark against these changes and compared it to master. The difference seems to be insignificant (between 1% and 2% slower).
Fixes #35231.
PR Close #35840
2020-03-03 21:05:26 +01:00
|
|
|
|
destroyHooks: DestroyHookData|null;
|
2018-03-13 11:48:09 -07:00
|
|
|
|
|
|
|
|
|
/**
|
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).
|
|
|
|
|
*
|
2018-11-28 15:54:38 -08:00
|
|
|
|
* If it's a native DOM listener or output subscription being stored:
|
|
|
|
|
* 1st index is: event name `name = tView.cleanup[i+0]`
|
2018-12-19 15:03:47 -08:00
|
|
|
|
* 2nd index is: index of native element or a function that retrieves global target (window,
|
|
|
|
|
* document or body) reference based on the native element:
|
|
|
|
|
* `typeof idxOrTargetGetter === 'function'`: global target getter function
|
|
|
|
|
* `typeof idxOrTargetGetter === 'number'`: index of native element
|
|
|
|
|
*
|
2018-11-28 15:54:38 -08:00
|
|
|
|
* 3rd index is: index of listener function `listener = lView[CLEANUP][tView.cleanup[i+2]]`
|
|
|
|
|
* 4th index is: `useCaptureOrIndx = tView.cleanup[i+3]`
|
|
|
|
|
* `typeof useCaptureOrIndx == 'boolean' : useCapture boolean
|
|
|
|
|
* `typeof useCaptureOrIndx == 'number':
|
|
|
|
|
* `useCaptureOrIndx >= 0` `removeListener = LView[CLEANUP][useCaptureOrIndx]`
|
|
|
|
|
* `useCaptureOrIndx < 0` `subscription = LView[CLEANUP][-useCaptureOrIndx]`
|
2018-06-05 15:28:15 -07:00
|
|
|
|
*
|
|
|
|
|
* 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[]
|
2018-11-28 15:54:38 -08:00
|
|
|
|
* `tView.cleanup[i+0].call(lView[CLEANUP][tView.cleanup[i+1]])`
|
2018-06-05 15:28:15 -07:00
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
/**
|
2019-06-07 10:55:48 +02:00
|
|
|
|
* A collection of queries tracked in a given view.
|
|
|
|
|
*/
|
|
|
|
|
queries: TQueries|null;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* An array of indices pointing to directives with content queries alongside with the
|
|
|
|
|
* corresponding
|
|
|
|
|
* query index. Each entry in this array is a tuple of:
|
|
|
|
|
* - index of the first content query index declared by a given directive;
|
|
|
|
|
* - index of a directive.
|
|
|
|
|
*
|
|
|
|
|
* We are storing those indexes so we can refresh content queries as part of a view refresh
|
|
|
|
|
* process.
|
2018-07-10 10:43:07 +02:00
|
|
|
|
*/
|
|
|
|
|
contentQueries: number[]|null;
|
2019-02-12 00:03:04 +01:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set of schemas that declare elements to be allowed inside the view.
|
|
|
|
|
*/
|
|
|
|
|
schemas: SchemaMetadata[]|null;
|
2019-09-23 20:08:51 +02:00
|
|
|
|
|
|
|
|
|
/**
|
2019-10-29 22:20:25 +01:00
|
|
|
|
* Array of constants for the view. Includes attribute arrays, local definition arrays etc.
|
|
|
|
|
* Used for directive matching, attribute bindings, local definitions and more.
|
2019-09-23 20:08:51 +02:00
|
|
|
|
*/
|
2019-10-29 22:20:25 +01:00
|
|
|
|
consts: TConstants|null;
|
2020-04-20 20:49:08 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Indicates that there was an error before we managed to complete the first create pass of the
|
|
|
|
|
* view. This means that the view is likely corrupted and we should try to recover it.
|
|
|
|
|
*/
|
|
|
|
|
incompleteFirstPass: boolean;
|
2018-01-22 17:43:52 -08:00
|
|
|
|
}
|
|
|
|
|
|
fix(core): ngOnDestroy on multi providers called with incorrect context (#35840)
Currently destroy hooks are stored in memory as `[1, hook, 5, hook]` where
the numbers represent the index at which to find the context and `hook` is
the function to be invoked. This breaks down for `multi` providers,
because the value at the index will be an array of providers, resulting in
the hook being invoked with an array of all the multi provider values,
rather than the provider that was destroyed. In ViewEngine `ngOnDestroy`
wasn't being called for `multi` providers at all.
These changes fix the issue by changing the structure of the destroy hooks to `[1, hook, 5, [0, hook, 3, hook]]` where the indexes inside the inner array point to the provider inside of the multi provider array. Note that this is slightly different from the original design which called for the structure to be `[1, hook, 5, [hook, hook]`, because in the process of implementing it, I realized that we wouldn't get passing the correct context if only some of the `multi` providers have `ngOnDestroy` and others don't.
I've run the newly-added `view_destroy_hooks` benchmark against these changes and compared it to master. The difference seems to be insignificant (between 1% and 2% slower).
Fixes #35231.
PR Close #35840
2020-03-03 21:05:26 +01:00
|
|
|
|
export const enum RootContextFlags {
|
|
|
|
|
Empty = 0b00,
|
|
|
|
|
DetectChanges = 0b01,
|
|
|
|
|
FlushPlayers = 0b10
|
|
|
|
|
}
|
2018-08-28 16:49:52 -07:00
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
fix(core): ngOnDestroy on multi providers called with incorrect context (#35840)
Currently destroy hooks are stored in memory as `[1, hook, 5, hook]` where
the numbers represent the index at which to find the context and `hook` is
the function to be invoked. This breaks down for `multi` providers,
because the value at the index will be an array of providers, resulting in
the hook being invoked with an array of all the multi provider values,
rather than the provider that was destroyed. In ViewEngine `ngOnDestroy`
wasn't being called for `multi` providers at all.
These changes fix the issue by changing the structure of the destroy hooks to `[1, hook, 5, [0, hook, 3, hook]]` where the indexes inside the inner array point to the provider inside of the multi provider array. Note that this is slightly different from the original design which called for the structure to be `[1, hook, 5, [hook, hook]`, because in the process of implementing it, I realized that we wouldn't get passing the correct context if only some of the `multi` providers have `ngOnDestroy` and others don't.
I've run the newly-added `view_destroy_hooks` benchmark against these changes and compared it to master. The difference seems to be insignificant (between 1% and 2% slower).
Fixes #35231.
PR Close #35840
2020-03-03 21:05:26 +01:00
|
|
|
|
/** Single hook callback function. */
|
|
|
|
|
export type HookFn = () => void;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Information necessary to call a hook. E.g. the callback that
|
|
|
|
|
* needs to invoked and the index at which to find its context.
|
|
|
|
|
*/
|
|
|
|
|
export type HookEntry = number|HookFn;
|
|
|
|
|
|
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
|
|
|
|
*
|
2019-03-01 14:39:28 +01:00
|
|
|
|
* For each node of the view, the following data is stored:
|
|
|
|
|
* 1) Node index (optional)
|
|
|
|
|
* 2) A series of number/function pairs where:
|
|
|
|
|
* - even indices are directive indices
|
|
|
|
|
* - odd indices are hook functions
|
|
|
|
|
*
|
|
|
|
|
* Special cases:
|
|
|
|
|
* - a negative directive index flags an init hook (ngOnInit, ngAfterContentInit, ngAfterViewInit)
|
2018-01-22 17:43:52 -08:00
|
|
|
|
*/
|
fix(core): ngOnDestroy on multi providers called with incorrect context (#35840)
Currently destroy hooks are stored in memory as `[1, hook, 5, hook]` where
the numbers represent the index at which to find the context and `hook` is
the function to be invoked. This breaks down for `multi` providers,
because the value at the index will be an array of providers, resulting in
the hook being invoked with an array of all the multi provider values,
rather than the provider that was destroyed. In ViewEngine `ngOnDestroy`
wasn't being called for `multi` providers at all.
These changes fix the issue by changing the structure of the destroy hooks to `[1, hook, 5, [0, hook, 3, hook]]` where the indexes inside the inner array point to the provider inside of the multi provider array. Note that this is slightly different from the original design which called for the structure to be `[1, hook, 5, [hook, hook]`, because in the process of implementing it, I realized that we wouldn't get passing the correct context if only some of the `multi` providers have `ngOnDestroy` and others don't.
I've run the newly-added `view_destroy_hooks` benchmark against these changes and compared it to master. The difference seems to be insignificant (between 1% and 2% slower).
Fixes #35231.
PR Close #35840
2020-03-03 21:05:26 +01:00
|
|
|
|
export type HookData = HookEntry[];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Array of destroy hooks that should be executed for a view and their directive indices.
|
|
|
|
|
*
|
|
|
|
|
* The array is set up as a series of number/function or number/(number|function)[]:
|
|
|
|
|
* - Even indices represent the context with which hooks should be called.
|
|
|
|
|
* - Odd indices are the hook functions themselves. If a value at an odd index is an array,
|
|
|
|
|
* it represents the destroy hooks of a `multi` provider where:
|
|
|
|
|
* - Even indices represent the index of the provider for which we've registered a destroy hook,
|
|
|
|
|
* inside of the `multi` provider array.
|
|
|
|
|
* - Odd indices are the destroy hook functions.
|
|
|
|
|
* For example:
|
|
|
|
|
* LView: `[0, 1, 2, AService, 4, [BService, CService, DService]]`
|
|
|
|
|
* destroyHooks: `[3, AService.ngOnDestroy, 5, [0, BService.ngOnDestroy, 2, DService.ngOnDestroy]]`
|
|
|
|
|
*
|
|
|
|
|
* In the example above `AService` is a type provider with an `ngOnDestroy`, whereas `BService`,
|
|
|
|
|
* `CService` and `DService` are part of a `multi` provider where only `BService` and `DService`
|
|
|
|
|
* have an `ngOnDestroy` hook.
|
|
|
|
|
*/
|
|
|
|
|
export type DestroyHookData = (HookEntry|HookData)[];
|
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.
|
|
|
|
|
*
|
2019-01-22 15:02:52 -08:00
|
|
|
|
* Each host property's name is stored here at the same index as its value in the
|
|
|
|
|
* data array.
|
|
|
|
|
*
|
2019-01-24 08:53:00 -08:00
|
|
|
|
* Each property binding name is stored here at the same index as its value in
|
|
|
|
|
* the data array. If the binding is an interpolation, the static string values
|
|
|
|
|
* are stored parallel to the dynamic values. Example:
|
|
|
|
|
*
|
|
|
|
|
* id="prefix {{ v0 }} a {{ v1 }} b {{ v2 }} suffix"
|
|
|
|
|
*
|
|
|
|
|
* LView | TView.data
|
|
|
|
|
*------------------------
|
|
|
|
|
* v0 value | 'a'
|
|
|
|
|
* v1 value | 'b'
|
|
|
|
|
* v2 value | id <EFBFBD> prefix <EFBFBD> suffix
|
|
|
|
|
*
|
2018-10-02 21:12:26 -07:00
|
|
|
|
* 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 =
|
fix(core): ngOnDestroy on multi providers called with incorrect context (#35840)
Currently destroy hooks are stored in memory as `[1, hook, 5, hook]` where
the numbers represent the index at which to find the context and `hook` is
the function to be invoked. This breaks down for `multi` providers,
because the value at the index will be an array of providers, resulting in
the hook being invoked with an array of all the multi provider values,
rather than the provider that was destroyed. In ViewEngine `ngOnDestroy`
wasn't being called for `multi` providers at all.
These changes fix the issue by changing the structure of the destroy hooks to `[1, hook, 5, [0, hook, 3, hook]]` where the indexes inside the inner array point to the provider inside of the multi provider array. Note that this is slightly different from the original design which called for the structure to be `[1, hook, 5, [hook, hook]`, because in the process of implementing it, I realized that we wouldn't get passing the correct context if only some of the `multi` providers have `ngOnDestroy` and others don't.
I've run the newly-added `view_destroy_hooks` benchmark against these changes and compared it to master. The difference seems to be insignificant (between 1% and 2% slower).
Fixes #35231.
PR Close #35840
2020-03-03 21:05:26 +01:00
|
|
|
|
(TNode|PipeDef<any>|DirectiveDef<any>|ComponentDef<any>|number|TStylingRange|TStylingKey|
|
|
|
|
|
Type<any>|InjectionToken<any>|TI18n|I18nUpdateOpCodes|null|string)[];
|
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;
|