2017-12-01 14:23:03 -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
|
|
|
|
*/
|
|
|
|
|
2019-01-23 15:23:28 -08:00
|
|
|
import {ViewEncapsulation} from '../metadata/view';
|
2019-06-07 20:46:11 -07:00
|
|
|
import {assertDefined, assertDomNode} from '../util/assert';
|
|
|
|
|
2019-01-28 14:45:31 -08:00
|
|
|
import {assertLContainer, assertLView} from './assert';
|
2018-10-12 15:02:54 -07:00
|
|
|
import {attachPatchData} from './context_discovery';
|
2019-04-29 21:17:13 +02:00
|
|
|
import {CONTAINER_HEADER_OFFSET, LContainer, NATIVE, unusedValueExportToPlacateAjd as unused1} from './interfaces/container';
|
2019-01-23 20:00:05 +01:00
|
|
|
import {ComponentDef} from './interfaces/definition';
|
2019-01-31 10:38:43 +01:00
|
|
|
import {NodeInjectorFactory} from './interfaces/injector';
|
2019-06-27 16:10:35 +02:00
|
|
|
import {TElementContainerNode, TElementNode, TIcuContainerNode, TNode, TNodeFlags, TNodeType, TProjectionNode, TViewNode, unusedValueExportToPlacateAjd as unused2} from './interfaces/node';
|
2018-01-25 15:32:21 +01:00
|
|
|
import {unusedValueExportToPlacateAjd as unused3} from './interfaces/projection';
|
2019-06-03 15:05:34 +02:00
|
|
|
import {ProceduralRenderer3, RElement, RNode, RText, Renderer3, isProceduralRenderer, unusedValueExportToPlacateAjd as unused4} from './interfaces/renderer';
|
2019-07-19 13:21:21 -07:00
|
|
|
import {isLContainer, isLView, isRootView} from './interfaces/type_checks';
|
2019-06-07 20:46:11 -07:00
|
|
|
import {CHILD_HEAD, CLEANUP, FLAGS, HOST, HookData, LView, LViewFlags, NEXT, PARENT, QUERIES, RENDERER, TVIEW, T_HOST, unusedValueExportToPlacateAjd as unused5} from './interfaces/view';
|
|
|
|
import {assertNodeOfPossibleTypes, assertNodeType} from './node_assert';
|
2019-02-20 14:21:20 -08:00
|
|
|
import {renderStringify} from './util/misc_utils';
|
|
|
|
import {findComponentView, getLViewParent} from './util/view_traversal_utils';
|
2019-07-19 13:21:21 -07:00
|
|
|
import {getNativeByTNode, getNativeByTNodeOrNull, unwrapRNode, viewAttachedToContainer} from './util/view_utils';
|
2017-12-14 15:03:46 -08:00
|
|
|
|
2018-01-11 13:09:21 -08:00
|
|
|
const unusedValueToPlacateAjd = unused1 + unused2 + unused3 + unused4 + unused5;
|
2017-12-20 10:47:22 -08:00
|
|
|
|
2018-11-21 21:14:06 -08:00
|
|
|
export function getLContainer(tNode: TViewNode, embeddedView: LView): LContainer|null {
|
2019-01-28 14:45:31 -08:00
|
|
|
ngDevMode && assertLView(embeddedView);
|
|
|
|
const container = embeddedView[PARENT] as LContainer;
|
2018-09-13 16:07:23 -07:00
|
|
|
if (tNode.index === -1) {
|
2018-06-26 11:39:56 -07:00
|
|
|
// This is a dynamically created view inside a dynamic container.
|
2019-01-28 14:45:31 -08:00
|
|
|
// The parent isn't an LContainer if the embedded view hasn't been attached yet.
|
|
|
|
return isLContainer(container) ? container : null;
|
2018-09-13 16:07:23 -07:00
|
|
|
} else {
|
2019-01-28 14:45:31 -08:00
|
|
|
ngDevMode && assertLContainer(container);
|
2018-09-13 16:07:23 -07:00
|
|
|
// This is a inline view node (e.g. embeddedViewStart)
|
2019-01-28 14:45:31 -08:00
|
|
|
return container;
|
2018-06-18 18:07:05 +02:00
|
|
|
}
|
2018-05-29 15:08:30 -07:00
|
|
|
}
|
|
|
|
|
2018-09-13 16:07:23 -07:00
|
|
|
|
2018-08-01 15:19:27 +02:00
|
|
|
/**
|
2018-10-12 18:49:00 -07:00
|
|
|
* Retrieves render parent for a given view.
|
2018-09-13 16:07:23 -07:00
|
|
|
* Might be null if a view is not yet attached to any container.
|
2018-08-01 15:19:27 +02:00
|
|
|
*/
|
2019-01-09 14:20:19 +01:00
|
|
|
function getContainerRenderParent(tViewNode: TViewNode, view: LView): RElement|null {
|
2018-10-11 13:13:57 -07:00
|
|
|
const container = getLContainer(tViewNode, view);
|
2019-01-09 14:20:19 +01:00
|
|
|
return container ? nativeParentNode(view[RENDERER], container[NATIVE]) : null;
|
2018-08-01 15:19:27 +02:00
|
|
|
}
|
|
|
|
|
2018-09-08 10:55:41 -07:00
|
|
|
const enum WalkTNodeTreeAction {
|
2018-05-31 15:45:46 +02:00
|
|
|
/** node insert in the native environment */
|
2018-06-06 17:30:48 +02:00
|
|
|
Insert = 0,
|
2018-05-31 15:45:46 +02:00
|
|
|
|
|
|
|
/** node detach from the native environment */
|
2018-06-06 17:30:48 +02:00
|
|
|
Detach = 1,
|
2018-05-31 15:45:46 +02:00
|
|
|
|
|
|
|
/** node destruction using the renderer's API */
|
2018-06-06 17:30:48 +02:00
|
|
|
Destroy = 2,
|
2018-05-31 15:45:46 +02:00
|
|
|
}
|
|
|
|
|
2018-07-03 20:04:36 -07:00
|
|
|
|
2018-06-06 17:30:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* NOTE: for performance reasons, the possible actions are inlined within the function instead of
|
|
|
|
* being passed as an argument.
|
|
|
|
*/
|
2019-06-24 17:27:12 +02:00
|
|
|
function executeActionOnElementOrContainer(
|
2019-06-07 20:46:11 -07:00
|
|
|
action: WalkTNodeTreeAction, renderer: Renderer3, parent: RElement | null,
|
2019-05-28 10:31:01 -07:00
|
|
|
lNodeToHandle: RNode | LContainer | LView, beforeNode?: RNode | null) {
|
2019-06-07 20:46:11 -07:00
|
|
|
ngDevMode && assertDefined(lNodeToHandle, '\'lNodeToHandle\' is undefined');
|
|
|
|
let lContainer: LContainer|undefined;
|
|
|
|
let isComponent = false;
|
|
|
|
// We are expecting an RNode, but in the case of a component or LContainer the `RNode` is wrapped
|
|
|
|
// in an array which needs to be unwrapped. We need to know if it is a component and if
|
|
|
|
// it has LContainer so that we can process all of those cases appropriately.
|
|
|
|
if (isLContainer(lNodeToHandle)) {
|
|
|
|
lContainer = lNodeToHandle;
|
|
|
|
} else if (isLView(lNodeToHandle)) {
|
|
|
|
isComponent = true;
|
|
|
|
ngDevMode && assertDefined(lNodeToHandle[HOST], 'HOST must be defined for a component LView');
|
|
|
|
lNodeToHandle = lNodeToHandle[HOST] !;
|
|
|
|
}
|
|
|
|
const rNode: RNode = unwrapRNode(lNodeToHandle);
|
|
|
|
ngDevMode && assertDomNode(rNode);
|
|
|
|
|
2018-09-08 10:55:41 -07:00
|
|
|
if (action === WalkTNodeTreeAction.Insert) {
|
2019-06-07 20:46:11 -07:00
|
|
|
nativeInsertBefore(renderer, parent !, rNode, beforeNode || null);
|
2018-09-08 10:55:41 -07:00
|
|
|
} else if (action === WalkTNodeTreeAction.Detach) {
|
2019-06-07 20:46:11 -07:00
|
|
|
nativeRemoveNode(renderer, rNode, isComponent);
|
2018-09-08 10:55:41 -07:00
|
|
|
} else if (action === WalkTNodeTreeAction.Destroy) {
|
2018-06-06 17:30:48 +02:00
|
|
|
ngDevMode && ngDevMode.rendererDestroyNode++;
|
2019-06-07 20:46:11 -07:00
|
|
|
(renderer as ProceduralRenderer3).destroyNode !(rNode);
|
|
|
|
}
|
|
|
|
if (lContainer != null) {
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnContainer(renderer, action, lContainer, parent, beforeNode);
|
2018-01-25 15:32:21 +01:00
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-04-10 20:57:09 -07:00
|
|
|
export function createTextNode(value: any, renderer: Renderer3): RText {
|
2019-01-12 00:59:48 -08:00
|
|
|
return isProceduralRenderer(renderer) ? renderer.createText(renderStringify(value)) :
|
|
|
|
renderer.createTextNode(renderStringify(value));
|
2018-04-10 20:57:09 -07:00
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Adds or removes all DOM elements associated with a view.
|
|
|
|
*
|
|
|
|
* Because some root nodes of the view may be containers, we sometimes need
|
|
|
|
* to propagate deeply into the nested containers to remove all elements in the
|
|
|
|
* views beneath it.
|
|
|
|
*
|
2019-06-07 20:46:11 -07:00
|
|
|
* @param lView The view from which elements should be added or removed
|
2017-12-13 16:32:21 -08:00
|
|
|
* @param insertMode Whether or not elements should be added (if false, removing)
|
|
|
|
* @param beforeNode The node before which elements should be added, if insert mode
|
2017-12-13 11:04:46 -08:00
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function addRemoveViewFromContainer(
|
2019-06-07 20:46:11 -07:00
|
|
|
lView: LView, insertMode: true, beforeNode: RNode | null): void;
|
|
|
|
export function addRemoveViewFromContainer(lView: LView, insertMode: false): void;
|
2017-12-01 14:23:03 -08:00
|
|
|
export function addRemoveViewFromContainer(
|
2019-06-07 20:46:11 -07:00
|
|
|
lView: LView, insertMode: boolean, beforeNode?: RNode | null): void {
|
|
|
|
const renderParent = getContainerRenderParent(lView[TVIEW].node as TViewNode, lView);
|
|
|
|
ngDevMode && assertNodeType(lView[TVIEW].node as TNode, TNodeType.View);
|
2018-10-12 18:49:00 -07:00
|
|
|
if (renderParent) {
|
2019-06-07 20:46:11 -07:00
|
|
|
const renderer = lView[RENDERER];
|
|
|
|
const action = insertMode ? WalkTNodeTreeAction.Insert : WalkTNodeTreeAction.Detach;
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnView(renderer, action, lView, renderParent, beforeNode);
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-07 16:09:12 +01:00
|
|
|
/**
|
|
|
|
* Detach a `LView` from the DOM by detaching its nodes.
|
|
|
|
*
|
|
|
|
* @param lView the `LView` to be detached.
|
|
|
|
*/
|
|
|
|
export function renderDetachView(lView: LView) {
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnView(lView[RENDERER], WalkTNodeTreeAction.Detach, lView, null, null);
|
2019-03-07 16:09:12 +01:00
|
|
|
}
|
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
/**
|
2018-04-19 22:59:58 +02:00
|
|
|
* Traverses down and up the tree of views and containers to remove listeners and
|
2017-12-13 11:04:46 -08:00
|
|
|
* call onDestroy callbacks.
|
2017-12-01 14:23:03 -08:00
|
|
|
*
|
|
|
|
* Notes:
|
2017-12-13 11:04:46 -08:00
|
|
|
* - Because it's used for onDestroy calls, it needs to be bottom-up.
|
2017-12-01 14:23:03 -08:00
|
|
|
* - Must process containers instead of their views to avoid splicing
|
|
|
|
* when views are destroyed and re-added.
|
2017-12-13 11:04:46 -08:00
|
|
|
* - Using a while loop because it's faster than recursion
|
2017-12-01 14:23:03 -08:00
|
|
|
* - Destroy only called on movement to sibling or movement to parent (laterally or up)
|
2017-12-13 11:04:46 -08:00
|
|
|
*
|
2017-12-13 16:32:21 -08:00
|
|
|
* @param rootView The view to destroy
|
2017-12-01 14:23:03 -08:00
|
|
|
*/
|
2018-11-21 21:14:06 -08:00
|
|
|
export function destroyViewTree(rootView: LView): void {
|
2018-05-30 13:43:14 -07:00
|
|
|
// If the view has no children, we can clean it up and return early.
|
2019-01-28 14:45:31 -08:00
|
|
|
let lViewOrLContainer = rootView[CHILD_HEAD];
|
|
|
|
if (!lViewOrLContainer) {
|
2018-04-19 22:59:58 +02:00
|
|
|
return cleanUpView(rootView);
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2019-01-28 14:45:31 -08:00
|
|
|
while (lViewOrLContainer) {
|
2018-11-21 21:14:06 -08:00
|
|
|
let next: LView|LContainer|null = null;
|
2018-06-07 22:42:32 -07:00
|
|
|
|
2019-01-28 14:45:31 -08:00
|
|
|
if (isLView(lViewOrLContainer)) {
|
2018-11-21 21:14:06 -08:00
|
|
|
// If LView, traverse down to child.
|
2019-01-28 14:45:31 -08:00
|
|
|
next = lViewOrLContainer[CHILD_HEAD];
|
2019-02-05 21:07:03 -08:00
|
|
|
} else {
|
2019-01-28 14:45:31 -08:00
|
|
|
ngDevMode && assertLContainer(lViewOrLContainer);
|
2019-02-05 21:07:03 -08:00
|
|
|
// If container, traverse down to its first LView.
|
2019-04-29 21:17:13 +02:00
|
|
|
const firstView: LView|undefined = lViewOrLContainer[CONTAINER_HEADER_OFFSET];
|
|
|
|
if (firstView) next = firstView;
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2019-01-28 14:45:31 -08:00
|
|
|
if (!next) {
|
2018-06-07 22:42:32 -07:00
|
|
|
// Only clean up view when moving to the side or up, as destroy hooks
|
|
|
|
// should be called in order from the bottom up.
|
2019-01-28 14:45:31 -08:00
|
|
|
while (lViewOrLContainer && !lViewOrLContainer ![NEXT] && lViewOrLContainer !== rootView) {
|
|
|
|
cleanUpView(lViewOrLContainer);
|
|
|
|
lViewOrLContainer = getParentState(lViewOrLContainer, rootView);
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
2019-01-28 14:45:31 -08:00
|
|
|
cleanUpView(lViewOrLContainer || rootView);
|
|
|
|
next = lViewOrLContainer && lViewOrLContainer ![NEXT];
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
2019-01-28 14:45:31 -08:00
|
|
|
lViewOrLContainer = next;
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Inserts a view into a container.
|
|
|
|
*
|
2017-12-13 19:34:46 -08:00
|
|
|
* This adds the view to the container's array of active views in the correct
|
2017-12-13 11:04:46 -08:00
|
|
|
* position. It also adds the view's elements to the DOM if the container isn't a
|
|
|
|
* root node of another view (in that case, the view's elements will be added when
|
|
|
|
* the container's parent view is added later).
|
|
|
|
*
|
2018-09-17 14:32:45 -07:00
|
|
|
* @param lView The view to insert
|
|
|
|
* @param lContainer The container into which the view should be inserted
|
2019-01-28 14:45:31 -08:00
|
|
|
* @param index Which index in the container to insert the child view into
|
2017-12-13 11:04:46 -08:00
|
|
|
*/
|
2019-01-28 14:45:31 -08:00
|
|
|
export function insertView(lView: LView, lContainer: LContainer, index: number) {
|
|
|
|
ngDevMode && assertLView(lView);
|
|
|
|
ngDevMode && assertLContainer(lContainer);
|
2019-04-29 21:17:13 +02:00
|
|
|
const indexInContainer = CONTAINER_HEADER_OFFSET + index;
|
|
|
|
const containerLength = lContainer.length;
|
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
if (index > 0) {
|
|
|
|
// This is a new view, we need to add it to the children.
|
2019-04-29 21:17:13 +02:00
|
|
|
lContainer[indexInContainer - 1][NEXT] = lView;
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
2019-04-29 21:17:13 +02:00
|
|
|
if (index < containerLength - CONTAINER_HEADER_OFFSET) {
|
|
|
|
lView[NEXT] = lContainer[indexInContainer];
|
|
|
|
lContainer.splice(CONTAINER_HEADER_OFFSET + index, 0, lView);
|
2018-03-08 12:10:20 +01:00
|
|
|
} else {
|
2019-04-29 21:17:13 +02:00
|
|
|
lContainer.push(lView);
|
2018-06-26 11:39:56 -07:00
|
|
|
lView[NEXT] = null;
|
|
|
|
}
|
|
|
|
|
2019-01-28 14:45:31 -08:00
|
|
|
lView[PARENT] = lContainer;
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-05-28 11:57:36 +02:00
|
|
|
// Notify query that a new view has been added
|
2018-06-07 22:42:32 -07:00
|
|
|
if (lView[QUERIES]) {
|
|
|
|
lView[QUERIES] !.insertView(index);
|
2018-05-28 11:57:36 +02:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:45:46 +02:00
|
|
|
// Sets the attached flag
|
2018-06-26 11:39:56 -07:00
|
|
|
lView[FLAGS] |= LViewFlags.Attached;
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
2018-05-31 15:45:46 +02:00
|
|
|
* Detaches a view from a container.
|
2017-12-13 11:04:46 -08:00
|
|
|
*
|
2017-12-13 19:34:46 -08:00
|
|
|
* This method splices the view from the container's array of active views. It also
|
2018-05-31 15:45:46 +02:00
|
|
|
* removes the view's elements from the DOM.
|
2017-12-13 11:04:46 -08:00
|
|
|
*
|
2018-09-17 14:32:45 -07:00
|
|
|
* @param lContainer The container from which to detach a view
|
2018-05-31 15:45:46 +02:00
|
|
|
* @param removeIndex The index of the view to detach
|
2018-12-04 11:56:24 +01:00
|
|
|
* @returns Detached LView instance.
|
2017-12-13 11:04:46 -08:00
|
|
|
*/
|
2019-04-19 19:46:52 +02:00
|
|
|
export function detachView(lContainer: LContainer, removeIndex: number): LView|undefined {
|
2019-04-29 21:17:13 +02:00
|
|
|
if (lContainer.length <= CONTAINER_HEADER_OFFSET) return;
|
|
|
|
|
|
|
|
const indexInContainer = CONTAINER_HEADER_OFFSET + removeIndex;
|
|
|
|
const viewToDetach = lContainer[indexInContainer];
|
2019-04-19 19:46:52 +02:00
|
|
|
if (viewToDetach) {
|
|
|
|
if (removeIndex > 0) {
|
2019-04-29 21:17:13 +02:00
|
|
|
lContainer[indexInContainer - 1][NEXT] = viewToDetach[NEXT] as LView;
|
2019-04-19 19:46:52 +02:00
|
|
|
}
|
2019-04-29 21:17:13 +02:00
|
|
|
lContainer.splice(CONTAINER_HEADER_OFFSET + removeIndex, 1);
|
2019-04-19 19:46:52 +02:00
|
|
|
addRemoveViewFromContainer(viewToDetach, false);
|
2018-09-12 08:47:03 -07:00
|
|
|
|
2019-04-19 19:46:52 +02:00
|
|
|
if ((viewToDetach[FLAGS] & LViewFlags.Attached) &&
|
|
|
|
!(viewToDetach[FLAGS] & LViewFlags.Destroyed) && viewToDetach[QUERIES]) {
|
|
|
|
viewToDetach[QUERIES] !.removeView();
|
|
|
|
}
|
|
|
|
viewToDetach[PARENT] = null;
|
|
|
|
viewToDetach[NEXT] = null;
|
|
|
|
// Unsets the attached flag
|
|
|
|
viewToDetach[FLAGS] &= ~LViewFlags.Attached;
|
2018-05-28 11:57:36 +02:00
|
|
|
}
|
2018-12-04 11:56:24 +01:00
|
|
|
return viewToDetach;
|
2018-05-31 15:45:46 +02:00
|
|
|
}
|
2018-05-28 11:57:36 +02:00
|
|
|
|
2018-05-31 15:45:46 +02:00
|
|
|
/**
|
|
|
|
* Removes a view from a container, i.e. detaches it and then destroys the underlying LView.
|
|
|
|
*
|
2018-09-17 14:32:45 -07:00
|
|
|
* @param lContainer The container from which to remove a view
|
2018-05-31 15:45:46 +02:00
|
|
|
* @param removeIndex The index of the view to remove
|
|
|
|
*/
|
2019-02-07 17:03:29 +01:00
|
|
|
export function removeView(lContainer: LContainer, removeIndex: number) {
|
2019-04-29 21:17:13 +02:00
|
|
|
const detachedView = detachView(lContainer, removeIndex);
|
|
|
|
detachedView && destroyLView(detachedView);
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:45:46 +02:00
|
|
|
/**
|
|
|
|
* A standalone function which destroys an LView,
|
|
|
|
* conducting cleanup (e.g. removing listeners, calling onDestroys).
|
|
|
|
*
|
2019-06-07 20:46:11 -07:00
|
|
|
* @param lView The view to be destroyed.
|
2018-05-31 15:45:46 +02:00
|
|
|
*/
|
2019-06-07 20:46:11 -07:00
|
|
|
export function destroyLView(lView: LView) {
|
|
|
|
if (!(lView[FLAGS] & LViewFlags.Destroyed)) {
|
|
|
|
const renderer = lView[RENDERER];
|
2019-01-28 15:23:53 -08:00
|
|
|
if (isProceduralRenderer(renderer) && renderer.destroyNode) {
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnView(renderer, WalkTNodeTreeAction.Destroy, lView, null, null);
|
2019-01-28 15:23:53 -08:00
|
|
|
}
|
|
|
|
|
2019-06-07 20:46:11 -07:00
|
|
|
destroyViewTree(lView);
|
2018-05-31 15:45:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
2018-01-08 20:17:13 -08:00
|
|
|
* Determines which LViewOrLContainer to jump to when traversing back up the
|
2017-12-13 11:04:46 -08:00
|
|
|
* tree in destroyViewTree.
|
|
|
|
*
|
2018-01-08 20:17:13 -08:00
|
|
|
* Normally, the view's parent LView should be checked, but in the case of
|
2017-12-13 11:04:46 -08:00
|
|
|
* embedded views, the container (which is the view node's parent, but not the
|
2018-01-08 20:17:13 -08:00
|
|
|
* LView's parent) needs to be checked for a possible next property.
|
2017-12-13 11:04:46 -08:00
|
|
|
*
|
2019-01-28 14:45:31 -08:00
|
|
|
* @param lViewOrLContainer The LViewOrLContainer for which we need a parent state
|
2017-12-13 16:32:21 -08:00
|
|
|
* @param rootView The rootView, so we don't propagate too far up the view tree
|
2018-01-08 20:17:13 -08:00
|
|
|
* @returns The correct parent LViewOrLContainer
|
2017-12-13 11:04:46 -08:00
|
|
|
*/
|
2019-01-28 14:45:31 -08:00
|
|
|
export function getParentState(lViewOrLContainer: LView | LContainer, rootView: LView): LView|
|
|
|
|
LContainer|null {
|
2018-09-13 16:07:23 -07:00
|
|
|
let tNode;
|
2019-01-28 14:45:31 -08:00
|
|
|
if (isLView(lViewOrLContainer) && (tNode = lViewOrLContainer[T_HOST]) &&
|
2018-09-13 16:07:23 -07:00
|
|
|
tNode.type === TNodeType.View) {
|
2017-12-01 14:23:03 -08:00
|
|
|
// if it's an embedded view, the state needs to go up to the container, in case the
|
|
|
|
// container has a next
|
2019-01-28 14:45:31 -08:00
|
|
|
return getLContainer(tNode as TViewNode, lViewOrLContainer);
|
2017-12-01 14:23:03 -08:00
|
|
|
} else {
|
|
|
|
// otherwise, use parent view for containers or component views
|
2019-01-28 14:45:31 -08:00
|
|
|
return lViewOrLContainer[PARENT] === rootView ? null : lViewOrLContainer[PARENT];
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
2018-12-14 15:11:14 +01:00
|
|
|
* Calls onDestroys hooks for all directives and pipes in a given view and then removes all
|
|
|
|
* listeners. Listeners are removed as the last step so events delivered in the onDestroys hooks
|
|
|
|
* can be propagated to @Output listeners.
|
2017-12-13 11:04:46 -08:00
|
|
|
*
|
2018-11-21 21:14:06 -08:00
|
|
|
* @param view The LView to clean up
|
2017-12-13 11:04:46 -08:00
|
|
|
*/
|
2019-03-01 14:45:04 +01:00
|
|
|
function cleanUpView(view: LView | LContainer): void {
|
|
|
|
if (isLView(view) && !(view[FLAGS] & LViewFlags.Destroyed)) {
|
2019-03-01 22:05:49 +01:00
|
|
|
// Usually the Attached flag is removed when the view is detached from its parent, however
|
|
|
|
// if it's a root view, the flag won't be unset hence why we're also removing on destroy.
|
|
|
|
view[FLAGS] &= ~LViewFlags.Attached;
|
|
|
|
|
2019-01-28 15:23:53 -08:00
|
|
|
// Mark the LView as destroyed *before* executing the onDestroy hooks. An onDestroy hook
|
|
|
|
// runs arbitrary user code, which could include its own `viewRef.destroy()` (or similar). If
|
|
|
|
// We don't flag the view as destroyed before the hooks, this could lead to an infinite loop.
|
|
|
|
// This also aligns with the ViewEngine behavior. It also means that the onDestroy hook is
|
|
|
|
// really more of an "afterDestroy" hook if you think about it.
|
|
|
|
view[FLAGS] |= LViewFlags.Destroyed;
|
|
|
|
|
2018-06-05 15:28:15 -07:00
|
|
|
executeOnDestroys(view);
|
2018-12-14 15:11:14 +01:00
|
|
|
removeListeners(view);
|
2019-01-30 23:42:26 +00:00
|
|
|
const hostTNode = view[T_HOST];
|
2018-06-05 15:28:15 -07:00
|
|
|
// For component views only, the local renderer is destroyed as clean up time.
|
2018-12-10 23:40:19 -08:00
|
|
|
if (hostTNode && hostTNode.type === TNodeType.Element && isProceduralRenderer(view[RENDERER])) {
|
2018-06-05 15:28:15 -07:00
|
|
|
ngDevMode && ngDevMode.rendererDestroy++;
|
2018-06-07 22:42:32 -07:00
|
|
|
(view[RENDERER] as ProceduralRenderer3).destroy();
|
2018-06-05 15:28:15 -07:00
|
|
|
}
|
2019-03-01 14:45:04 +01:00
|
|
|
// For embedded views still attached to a container: remove query result from this view.
|
|
|
|
if (viewAttachedToContainer(view) && view[QUERIES]) {
|
|
|
|
view[QUERIES] !.removeView();
|
|
|
|
}
|
2018-05-22 17:40:59 +02:00
|
|
|
}
|
2018-01-23 10:57:48 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Removes listeners and unsubscribes from output subscriptions */
|
2018-11-21 21:14:06 -08:00
|
|
|
function removeListeners(lView: LView): void {
|
2019-06-07 20:46:11 -07:00
|
|
|
const tCleanup = lView[TVIEW].cleanup;
|
|
|
|
if (tCleanup !== null) {
|
2018-11-28 15:54:38 -08:00
|
|
|
const lCleanup = lView[CLEANUP] !;
|
|
|
|
for (let i = 0; i < tCleanup.length - 1; i += 2) {
|
|
|
|
if (typeof tCleanup[i] === 'string') {
|
2019-04-05 15:30:04 +02:00
|
|
|
// This is a native DOM listener
|
2018-12-19 15:03:47 -08:00
|
|
|
const idxOrTargetGetter = tCleanup[i + 1];
|
|
|
|
const target = typeof idxOrTargetGetter === 'function' ?
|
|
|
|
idxOrTargetGetter(lView) :
|
2019-02-23 11:14:35 -08:00
|
|
|
unwrapRNode(lView[idxOrTargetGetter]);
|
2018-11-28 15:54:38 -08:00
|
|
|
const listener = lCleanup[tCleanup[i + 2]];
|
|
|
|
const useCaptureOrSubIdx = tCleanup[i + 3];
|
|
|
|
if (typeof useCaptureOrSubIdx === 'boolean') {
|
2019-04-05 15:30:04 +02:00
|
|
|
// native DOM listener registered with Renderer3
|
2018-12-19 15:03:47 -08:00
|
|
|
target.removeEventListener(tCleanup[i], listener, useCaptureOrSubIdx);
|
2018-11-28 15:54:38 -08:00
|
|
|
} else {
|
|
|
|
if (useCaptureOrSubIdx >= 0) {
|
|
|
|
// unregister
|
|
|
|
lCleanup[useCaptureOrSubIdx]();
|
|
|
|
} else {
|
|
|
|
// Subscription
|
|
|
|
lCleanup[-useCaptureOrSubIdx].unsubscribe();
|
|
|
|
}
|
|
|
|
}
|
2018-01-23 10:57:48 -08:00
|
|
|
i += 2;
|
|
|
|
} else {
|
2018-06-05 15:28:15 -07:00
|
|
|
// This is a cleanup function that is grouped with the index of its context
|
2018-11-28 15:54:38 -08:00
|
|
|
const context = lCleanup[tCleanup[i + 1]];
|
|
|
|
tCleanup[i].call(context);
|
2018-01-23 10:57:48 -08:00
|
|
|
}
|
|
|
|
}
|
2018-11-21 21:14:06 -08:00
|
|
|
lView[CLEANUP] = null;
|
2018-01-23 10:57:48 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Calls onDestroy hooks for this view */
|
2018-11-21 21:14:06 -08:00
|
|
|
function executeOnDestroys(view: LView): void {
|
2018-06-07 22:42:32 -07:00
|
|
|
const tView = view[TVIEW];
|
2018-01-23 10:57:48 -08:00
|
|
|
let destroyHooks: HookData|null;
|
2019-01-31 10:38:43 +01:00
|
|
|
|
2018-01-23 10:57:48 -08:00
|
|
|
if (tView != null && (destroyHooks = tView.destroyHooks) != null) {
|
2019-01-31 10:38:43 +01:00
|
|
|
for (let i = 0; i < destroyHooks.length; i += 2) {
|
|
|
|
const context = view[destroyHooks[i] as number];
|
|
|
|
|
|
|
|
// Only call the destroy hook if the context has been requested.
|
|
|
|
if (!(context instanceof NodeInjectorFactory)) {
|
|
|
|
(destroyHooks[i + 1] as() => void).call(context);
|
|
|
|
}
|
|
|
|
}
|
2018-03-21 15:10:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-06 17:46:49 +02:00
|
|
|
/**
|
2019-01-09 16:33:25 +01:00
|
|
|
* Returns a native element if a node can be inserted into the given parent.
|
2018-06-26 11:39:56 -07:00
|
|
|
*
|
2018-06-22 15:37:38 +02:00
|
|
|
* There are two reasons why we may not be able to insert a element immediately.
|
2018-06-26 11:39:56 -07:00
|
|
|
* - Projection: When creating a child content element of a component, we have to skip the
|
2018-06-22 15:37:38 +02:00
|
|
|
* insertion because the content of a component will be projected.
|
|
|
|
* `<component><content>delayed due to projection</content></component>`
|
2018-06-26 11:39:56 -07:00
|
|
|
* - Parent container is disconnected: This can happen when we are inserting a view into
|
|
|
|
* parent container, which itself is disconnected. For example the parent container is part
|
2019-01-23 20:00:05 +01:00
|
|
|
* of a View which has not be inserted or is made for projection but has not been inserted
|
2018-06-22 15:37:38 +02:00
|
|
|
* into destination.
|
2017-12-13 11:04:46 -08:00
|
|
|
*/
|
2019-01-09 16:33:25 +01:00
|
|
|
function getRenderParent(tNode: TNode, currentView: LView): RElement|null {
|
|
|
|
// Nodes of the top-most view can be inserted eagerly.
|
2019-01-09 11:59:49 +01:00
|
|
|
if (isRootView(currentView)) {
|
2019-01-09 16:33:25 +01:00
|
|
|
return nativeParentNode(currentView[RENDERER], getNativeByTNode(tNode, currentView));
|
2019-01-09 11:59:49 +01:00
|
|
|
}
|
2018-09-13 16:07:23 -07:00
|
|
|
|
2019-01-09 16:33:25 +01:00
|
|
|
// Skip over element and ICU containers as those are represented by a comment node and
|
|
|
|
// can't be used as a render parent.
|
2019-06-03 15:05:34 +02:00
|
|
|
const parent = getHighestElementOrICUContainer(tNode);
|
|
|
|
const renderParent = parent.parent;
|
2019-01-09 11:59:49 +01:00
|
|
|
|
|
|
|
// If the parent is null, then we are inserting across views: either into an embedded view or a
|
|
|
|
// component view.
|
2019-06-03 15:05:34 +02:00
|
|
|
if (renderParent == null) {
|
2019-01-30 23:42:26 +00:00
|
|
|
const hostTNode = currentView[T_HOST] !;
|
2019-01-09 11:59:49 +01:00
|
|
|
if (hostTNode.type === TNodeType.View) {
|
2019-01-09 16:33:25 +01:00
|
|
|
// We are inserting a root element of an embedded view We might delay insertion of children
|
|
|
|
// for a given view if it is disconnected. This might happen for 2 main reasons:
|
|
|
|
// - view is not inserted into any container(view was created but not inserted yet)
|
|
|
|
// - view is inserted into a container but the container itself is not inserted into the DOM
|
|
|
|
// (container might be part of projection or child of a view that is not inserted yet).
|
|
|
|
// In other words we can insert children of a given view if this view was inserted into a
|
|
|
|
// container and the container itself has its render parent determined.
|
|
|
|
return getContainerRenderParent(hostTNode as TViewNode, currentView);
|
2019-01-09 11:59:49 +01:00
|
|
|
} else {
|
|
|
|
// We are inserting a root element of the component view into the component host element and
|
|
|
|
// it should always be eager.
|
2019-01-09 16:33:25 +01:00
|
|
|
return getHostNative(currentView);
|
2019-01-09 11:59:49 +01:00
|
|
|
}
|
2018-06-22 15:37:38 +02:00
|
|
|
} else {
|
2019-06-03 15:05:34 +02:00
|
|
|
const isIcuCase = parent && parent.type === TNodeType.IcuContainer;
|
|
|
|
// If the parent of this node is an ICU container, then it is represented by comment node and we
|
|
|
|
// need to use it as an anchor. If it is projected then its direct parent node is the renderer.
|
|
|
|
if (isIcuCase && parent.flags & TNodeFlags.isProjected) {
|
|
|
|
return getNativeByTNode(parent, currentView).parentNode as RElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngDevMode && assertNodeType(renderParent, TNodeType.Element);
|
|
|
|
if (renderParent.flags & TNodeFlags.isComponent && !isIcuCase) {
|
2019-01-23 20:00:05 +01:00
|
|
|
const tData = currentView[TVIEW].data;
|
2019-06-03 15:05:34 +02:00
|
|
|
const tNode = tData[renderParent.index] as TNode;
|
2019-01-23 20:00:05 +01:00
|
|
|
const encapsulation = (tData[tNode.directiveStart] as ComponentDef<any>).encapsulation;
|
|
|
|
|
|
|
|
// We've got a parent which is an element in the current view. We just need to verify if the
|
|
|
|
// parent element is not a component. Component's content nodes are not inserted immediately
|
|
|
|
// because they will be projected, and so doing insert at this point would be wasteful.
|
|
|
|
// Since the projection would then move it to its final destination. Note that we can't
|
|
|
|
// make this assumption when using the Shadow DOM, because the native projection placeholders
|
|
|
|
// (<content> or <slot>) have to be in place as elements are being inserted.
|
|
|
|
if (encapsulation !== ViewEncapsulation.ShadowDom &&
|
|
|
|
encapsulation !== ViewEncapsulation.Native) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-01-09 16:33:25 +01:00
|
|
|
}
|
2019-01-23 20:00:05 +01:00
|
|
|
|
2019-06-03 15:05:34 +02:00
|
|
|
return getNativeByTNode(renderParent, currentView) as RElement;
|
2018-06-22 15:37:38 +02:00
|
|
|
}
|
2018-01-26 11:36:31 +01:00
|
|
|
}
|
|
|
|
|
2019-01-09 16:33:25 +01:00
|
|
|
/**
|
|
|
|
* Gets the native host element for a given view. Will return null if the current view does not have
|
|
|
|
* a host element.
|
|
|
|
*/
|
|
|
|
function getHostNative(currentView: LView): RElement|null {
|
2019-01-28 14:45:31 -08:00
|
|
|
ngDevMode && assertLView(currentView);
|
2019-01-30 23:42:26 +00:00
|
|
|
const hostTNode = currentView[T_HOST];
|
2019-01-09 16:33:25 +01:00
|
|
|
return hostTNode && hostTNode.type === TNodeType.Element ?
|
2019-01-28 14:45:31 -08:00
|
|
|
(getNativeByTNode(hostTNode, getLViewParent(currentView) !) as RElement) :
|
2019-01-09 16:33:25 +01:00
|
|
|
null;
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:19:27 +02:00
|
|
|
/**
|
|
|
|
* Inserts a native node before another native node for a given parent using {@link Renderer3}.
|
|
|
|
* This is a utility function that can be used when native nodes were determined - it abstracts an
|
|
|
|
* actual renderer being used.
|
|
|
|
*/
|
2018-10-17 11:01:35 +02:00
|
|
|
export function nativeInsertBefore(
|
2018-08-01 15:19:27 +02:00
|
|
|
renderer: Renderer3, parent: RElement, child: RNode, beforeNode: RNode | null): void {
|
2019-05-07 23:56:37 +02:00
|
|
|
ngDevMode && ngDevMode.rendererInsertBefore++;
|
2018-08-01 15:19:27 +02:00
|
|
|
if (isProceduralRenderer(renderer)) {
|
|
|
|
renderer.insertBefore(parent, child, beforeNode);
|
|
|
|
} else {
|
|
|
|
parent.insertBefore(child, beforeNode, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-21 14:55:37 +01:00
|
|
|
function nativeAppendChild(renderer: Renderer3, parent: RElement, child: RNode): void {
|
2019-05-07 23:56:37 +02:00
|
|
|
ngDevMode && ngDevMode.rendererAppendChild++;
|
2019-01-21 14:55:37 +01:00
|
|
|
if (isProceduralRenderer(renderer)) {
|
|
|
|
renderer.appendChild(parent, child);
|
|
|
|
} else {
|
|
|
|
parent.appendChild(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function nativeAppendOrInsertBefore(
|
|
|
|
renderer: Renderer3, parent: RElement, child: RNode, beforeNode: RNode | null) {
|
2019-06-07 20:46:11 -07:00
|
|
|
if (beforeNode !== null) {
|
2019-01-21 14:55:37 +01:00
|
|
|
nativeInsertBefore(renderer, parent, child, beforeNode);
|
|
|
|
} else {
|
|
|
|
nativeAppendChild(renderer, parent, child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 10:51:45 +01:00
|
|
|
/** Removes a node from the DOM given its native parent. */
|
|
|
|
function nativeRemoveChild(
|
|
|
|
renderer: Renderer3, parent: RElement, child: RNode, isHostElement?: boolean): void {
|
2019-02-01 15:38:42 -08:00
|
|
|
if (isProceduralRenderer(renderer)) {
|
2019-02-04 10:51:45 +01:00
|
|
|
renderer.removeChild(parent, child, isHostElement);
|
2019-02-01 15:38:42 -08:00
|
|
|
} else {
|
2019-02-04 10:51:45 +01:00
|
|
|
parent.removeChild(child);
|
2019-02-01 15:38:42 -08:00
|
|
|
}
|
2019-01-04 12:08:04 +01:00
|
|
|
}
|
|
|
|
|
2018-10-17 11:01:35 +02:00
|
|
|
/**
|
|
|
|
* Returns a native parent of a given native node.
|
|
|
|
*/
|
|
|
|
export function nativeParentNode(renderer: Renderer3, node: RNode): RElement|null {
|
|
|
|
return (isProceduralRenderer(renderer) ? renderer.parentNode(node) : node.parentNode) as RElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a native sibling of a given native node.
|
|
|
|
*/
|
|
|
|
export function nativeNextSibling(renderer: Renderer3, node: RNode): RNode|null {
|
|
|
|
return isProceduralRenderer(renderer) ? renderer.nextSibling(node) : node.nextSibling;
|
|
|
|
}
|
|
|
|
|
2018-01-26 11:36:31 +01:00
|
|
|
/**
|
2019-01-21 14:55:37 +01:00
|
|
|
* Finds a native "anchor" node for cases where we can't append a native child directly
|
|
|
|
* (`appendChild`) and need to use a reference (anchor) node for the `insertBefore` operation.
|
|
|
|
* @param parentTNode
|
|
|
|
* @param lView
|
|
|
|
*/
|
|
|
|
function getNativeAnchorNode(parentTNode: TNode, lView: LView): RNode|null {
|
|
|
|
if (parentTNode.type === TNodeType.View) {
|
|
|
|
const lContainer = getLContainer(parentTNode as TViewNode, lView) !;
|
2019-04-29 21:17:13 +02:00
|
|
|
const index = lContainer.indexOf(lView, CONTAINER_HEADER_OFFSET) - CONTAINER_HEADER_OFFSET;
|
|
|
|
return getBeforeNodeForView(index, lContainer);
|
2019-01-21 14:55:37 +01:00
|
|
|
} else if (
|
|
|
|
parentTNode.type === TNodeType.ElementContainer ||
|
|
|
|
parentTNode.type === TNodeType.IcuContainer) {
|
|
|
|
return getNativeByTNode(parentTNode, lView);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Appends the `child` native node (or a collection of nodes) to the `parent`.
|
2018-01-26 11:36:31 +01:00
|
|
|
*
|
2018-06-18 16:55:43 +02:00
|
|
|
* The element insertion might be delayed {@link canInsertNativeNode}.
|
2018-01-26 11:36:31 +01:00
|
|
|
*
|
2019-01-21 14:55:37 +01:00
|
|
|
* @param childEl The native child (or children) that should be appended
|
2018-09-13 16:07:23 -07:00
|
|
|
* @param childTNode The TNode of the child element
|
2018-01-26 11:36:31 +01:00
|
|
|
* @param currentView The current LView
|
|
|
|
* @returns Whether or not the child was appended
|
|
|
|
*/
|
2019-01-21 14:55:37 +01:00
|
|
|
export function appendChild(childEl: RNode | RNode[], childTNode: TNode, currentView: LView): void {
|
2019-01-09 16:33:25 +01:00
|
|
|
const renderParent = getRenderParent(childTNode, currentView);
|
|
|
|
if (renderParent != null) {
|
2018-06-07 22:42:32 -07:00
|
|
|
const renderer = currentView[RENDERER];
|
2019-01-30 23:42:26 +00:00
|
|
|
const parentTNode: TNode = childTNode.parent || currentView[T_HOST] !;
|
2019-01-21 14:55:37 +01:00
|
|
|
const anchorNode = getNativeAnchorNode(parentTNode, currentView);
|
|
|
|
if (Array.isArray(childEl)) {
|
|
|
|
for (let nativeNode of childEl) {
|
|
|
|
nativeAppendOrInsertBefore(renderer, renderParent, nativeNode, anchorNode);
|
|
|
|
}
|
2018-06-22 15:37:38 +02:00
|
|
|
} else {
|
2019-01-21 14:55:37 +01:00
|
|
|
nativeAppendOrInsertBefore(renderer, renderParent, childEl, anchorNode);
|
2018-06-22 15:37:38 +02:00
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-13 16:07:23 -07:00
|
|
|
/**
|
2019-01-04 17:17:50 +01:00
|
|
|
* Gets the top-level element or an ICU container if those containers are nested.
|
2018-09-13 16:07:23 -07:00
|
|
|
*
|
2019-01-04 17:17:50 +01:00
|
|
|
* @param tNode The starting TNode for which we should skip element and ICU containers
|
|
|
|
* @returns The TNode of the highest level ICU container or element container
|
2018-09-13 16:07:23 -07:00
|
|
|
*/
|
2019-01-04 17:17:50 +01:00
|
|
|
function getHighestElementOrICUContainer(tNode: TNode): TNode {
|
|
|
|
while (tNode.parent != null && (tNode.parent.type === TNodeType.ElementContainer ||
|
|
|
|
tNode.parent.type === TNodeType.IcuContainer)) {
|
|
|
|
tNode = tNode.parent;
|
2018-09-13 16:07:23 -07:00
|
|
|
}
|
2019-01-04 17:17:50 +01:00
|
|
|
return tNode;
|
2018-09-13 16:07:23 -07:00
|
|
|
}
|
|
|
|
|
2019-06-14 07:55:17 +02:00
|
|
|
export function getBeforeNodeForView(viewIndexInContainer: number, lContainer: LContainer): RNode|
|
|
|
|
null {
|
2019-05-22 16:41:35 +02:00
|
|
|
const nextViewIndex = CONTAINER_HEADER_OFFSET + viewIndexInContainer + 1;
|
|
|
|
if (nextViewIndex < lContainer.length) {
|
|
|
|
const lView = lContainer[nextViewIndex] as LView;
|
2019-06-07 20:46:11 -07:00
|
|
|
ngDevMode && assertDefined(lView[T_HOST], 'Missing Host TNode');
|
2019-05-22 16:41:35 +02:00
|
|
|
const tViewNodeChild = (lView[T_HOST] as TViewNode).child;
|
2019-06-14 07:55:17 +02:00
|
|
|
return tViewNodeChild !== null ? getNativeByTNodeOrNull(tViewNodeChild, lView) :
|
|
|
|
lContainer[NATIVE];
|
2018-09-13 16:07:23 -07:00
|
|
|
} else {
|
2019-05-22 16:41:35 +02:00
|
|
|
return lContainer[NATIVE];
|
2018-09-13 16:07:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 16:55:43 +02:00
|
|
|
/**
|
2019-02-04 10:51:45 +01:00
|
|
|
* Removes a native node itself using a given renderer. To remove the node we are looking up its
|
|
|
|
* parent from the native tree as not all platforms / browsers support the equivalent of
|
|
|
|
* node.remove().
|
2018-06-18 16:55:43 +02:00
|
|
|
*
|
2019-02-04 10:51:45 +01:00
|
|
|
* @param renderer A renderer to be used
|
|
|
|
* @param rNode The native node that should be removed
|
|
|
|
* @param isHostElement A flag indicating if a node to be removed is a host of a component.
|
2018-06-18 16:55:43 +02:00
|
|
|
*/
|
2019-02-04 10:51:45 +01:00
|
|
|
export function nativeRemoveNode(renderer: Renderer3, rNode: RNode, isHostElement?: boolean): void {
|
|
|
|
const nativeParent = nativeParentNode(renderer, rNode);
|
|
|
|
if (nativeParent) {
|
|
|
|
nativeRemoveChild(renderer, nativeParent, rNode, isHostElement);
|
|
|
|
}
|
2018-06-18 16:55:43 +02:00
|
|
|
}
|
|
|
|
|
2019-02-27 12:18:23 +01:00
|
|
|
/**
|
|
|
|
* Appends nodes to a target projection place. Nodes to insert were previously re-distribution and
|
|
|
|
* stored on a component host level.
|
2019-06-07 20:46:11 -07:00
|
|
|
* @param lView A LView where nodes are inserted (target LView)
|
2019-02-27 12:18:23 +01:00
|
|
|
* @param tProjectionNode A projection node where previously re-distribution should be appended
|
|
|
|
* (target insertion place)
|
|
|
|
* @param selectorIndex A bucket from where nodes to project should be taken
|
|
|
|
* @param componentView A where projectable nodes were initially created (source view)
|
|
|
|
*/
|
|
|
|
export function appendProjectedNodes(
|
|
|
|
lView: LView, tProjectionNode: TProjectionNode, selectorIndex: number,
|
|
|
|
componentView: LView): void {
|
|
|
|
const projectedView = componentView[PARENT] !as LView;
|
|
|
|
const componentNode = componentView[T_HOST] as TElementNode;
|
|
|
|
let nodeToProject = (componentNode.projection as(TNode | null)[])[selectorIndex];
|
|
|
|
|
|
|
|
if (Array.isArray(nodeToProject)) {
|
|
|
|
appendChild(nodeToProject, tProjectionNode, lView);
|
|
|
|
} else {
|
|
|
|
while (nodeToProject) {
|
2019-06-05 20:47:21 +02:00
|
|
|
if (!(nodeToProject.flags & TNodeFlags.isDetached)) {
|
|
|
|
if (nodeToProject.type === TNodeType.Projection) {
|
|
|
|
appendProjectedNodes(
|
|
|
|
lView, tProjectionNode, (nodeToProject as TProjectionNode).projection,
|
|
|
|
findComponentView(projectedView));
|
|
|
|
} else {
|
|
|
|
// This flag must be set now or we won't know that this node is projected
|
|
|
|
// if the nodes are inserted into a container later.
|
|
|
|
nodeToProject.flags |= TNodeFlags.isProjected;
|
|
|
|
appendProjectedNode(nodeToProject, tProjectionNode, lView, projectedView);
|
|
|
|
}
|
2019-02-27 12:18:23 +01:00
|
|
|
}
|
2019-03-06 14:01:02 +01:00
|
|
|
nodeToProject = nodeToProject.projectionNext;
|
2019-02-27 12:18:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-11 19:01:49 +02:00
|
|
|
/**
|
|
|
|
* Loops over all children of a TNode container and appends them to the DOM
|
|
|
|
*
|
|
|
|
* @param ngContainerChildTNode The first child of the TNode container
|
|
|
|
* @param tProjectionNode The projection (ng-content) TNode
|
|
|
|
* @param currentView Current LView
|
|
|
|
* @param projectionView Projection view (view above current)
|
|
|
|
*/
|
|
|
|
function appendProjectedChildren(
|
|
|
|
ngContainerChildTNode: TNode | null, tProjectionNode: TNode, currentView: LView,
|
|
|
|
projectionView: LView) {
|
|
|
|
while (ngContainerChildTNode) {
|
|
|
|
appendProjectedNode(ngContainerChildTNode, tProjectionNode, currentView, projectionView);
|
|
|
|
ngContainerChildTNode = ngContainerChildTNode.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Appends a projected node to the DOM, or in the case of a projected container,
|
2018-01-26 11:36:31 +01:00
|
|
|
* appends the nodes from all of the container's active views to the DOM.
|
2017-12-13 11:04:46 -08:00
|
|
|
*
|
2018-10-11 13:13:57 -07:00
|
|
|
* @param projectedTNode The TNode to be projected
|
|
|
|
* @param tProjectionNode The projection (ng-content) TNode
|
2018-01-08 20:17:13 -08:00
|
|
|
* @param currentView Current LView
|
2018-10-11 13:13:57 -07:00
|
|
|
* @param projectionView Projection view (view above current)
|
2017-12-13 11:04:46 -08:00
|
|
|
*/
|
2019-02-27 12:18:23 +01:00
|
|
|
function appendProjectedNode(
|
2018-11-21 21:14:06 -08:00
|
|
|
projectedTNode: TNode, tProjectionNode: TNode, currentView: LView,
|
|
|
|
projectionView: LView): void {
|
2018-10-12 18:49:00 -07:00
|
|
|
const native = getNativeByTNode(projectedTNode, projectionView);
|
2018-10-11 13:13:57 -07:00
|
|
|
appendChild(native, tProjectionNode, currentView);
|
2018-08-22 16:57:40 -07:00
|
|
|
|
|
|
|
// the projected contents are processed while in the shadow view (which is the currentView)
|
|
|
|
// therefore we need to extract the view where the host element lives since it's the
|
|
|
|
// logical container of the content projected views
|
2018-10-11 13:13:57 -07:00
|
|
|
attachPatchData(native, projectionView);
|
2018-09-13 16:07:23 -07:00
|
|
|
|
2018-10-11 13:13:57 -07:00
|
|
|
const nodeOrContainer = projectionView[projectedTNode.index];
|
2018-09-13 16:07:23 -07:00
|
|
|
if (projectedTNode.type === TNodeType.Container) {
|
2018-06-27 16:05:23 -07:00
|
|
|
// The node we are adding is a container and we are adding it to an element which
|
2017-12-08 11:48:54 -08:00
|
|
|
// is not a component (no more re-projection).
|
|
|
|
// Alternatively a container is projected at the root of a component's template
|
|
|
|
// and can't be re-projected (as not content of any component).
|
2018-06-27 16:05:23 -07:00
|
|
|
// Assign the final projection location in those cases.
|
2019-04-29 21:17:13 +02:00
|
|
|
for (let i = CONTAINER_HEADER_OFFSET; i < nodeOrContainer.length; i++) {
|
|
|
|
addRemoveViewFromContainer(nodeOrContainer[i], true, nodeOrContainer[NATIVE]);
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
2019-06-11 19:01:49 +02:00
|
|
|
} else if (projectedTNode.type === TNodeType.IcuContainer) {
|
|
|
|
// The node we are adding is an ICU container which is why we also need to project all the
|
|
|
|
// children nodes that might have been created previously and are linked to this anchor
|
|
|
|
let ngContainerChildTNode: TNode|null = projectedTNode.child as TNode;
|
|
|
|
appendProjectedChildren(
|
|
|
|
ngContainerChildTNode, ngContainerChildTNode, projectionView, projectionView);
|
2018-10-11 13:13:57 -07:00
|
|
|
} else {
|
|
|
|
if (projectedTNode.type === TNodeType.ElementContainer) {
|
2019-06-11 19:01:49 +02:00
|
|
|
appendProjectedChildren(projectedTNode.child, tProjectionNode, currentView, projectionView);
|
2018-10-11 13:13:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isLContainer(nodeOrContainer)) {
|
|
|
|
appendChild(nodeOrContainer[NATIVE], tProjectionNode, currentView);
|
2018-08-07 14:42:40 +02:00
|
|
|
}
|
2018-04-09 17:35:50 +02:00
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
2019-06-07 20:46:11 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-24 17:27:12 +02:00
|
|
|
* `executeActionOnView` performs an operation on the view as specified in `action` (insert, detach,
|
|
|
|
* destroy)
|
2019-06-07 20:46:11 -07:00
|
|
|
*
|
|
|
|
* Inserting a view without projection or containers at top level is simple. Just iterate over the
|
|
|
|
* root nodes of the View, and for each node perform the `action`.
|
|
|
|
*
|
|
|
|
* Things get more complicated with containers and projections. That is because coming across:
|
|
|
|
* - Container: implies that we have to insert/remove/destroy the views of that container as well
|
|
|
|
* which in turn can have their own Containers at the View roots.
|
|
|
|
* - Projection: implies that we have to insert/remove/destroy the nodes of the projection. The
|
|
|
|
* complication is that the nodes we are projecting can themselves have Containers
|
|
|
|
* or other Projections.
|
|
|
|
*
|
|
|
|
* As you can see this is a very recursive problem. While the recursive implementation is not the
|
2019-06-24 17:27:12 +02:00
|
|
|
* most efficient one, trying to unroll the nodes non-recursively results in very complex code that
|
|
|
|
* is very hard (to maintain). We are sacrificing a bit of performance for readability using a
|
|
|
|
* recursive implementation.
|
2019-06-07 20:46:11 -07:00
|
|
|
*
|
|
|
|
* @param renderer Renderer to use
|
|
|
|
* @param action action to perform (insert, detach, destroy)
|
|
|
|
* @param lView The LView which needs to be inserted, detached, destroyed.
|
|
|
|
* @param renderParent parent DOM element for insertion/removal.
|
|
|
|
* @param beforeNode Before which node the insertions should happen.
|
|
|
|
*/
|
2019-06-24 17:27:12 +02:00
|
|
|
function executeActionOnView(
|
2019-06-07 20:46:11 -07:00
|
|
|
renderer: Renderer3, action: WalkTNodeTreeAction, lView: LView, renderParent: RElement | null,
|
|
|
|
beforeNode: RNode | null | undefined) {
|
|
|
|
const tView = lView[TVIEW];
|
|
|
|
ngDevMode && assertNodeType(tView.node !, TNodeType.View);
|
|
|
|
let viewRootTNode: TNode|null = tView.node !.child;
|
|
|
|
while (viewRootTNode !== null) {
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnNode(renderer, action, lView, viewRootTNode, renderParent, beforeNode);
|
2019-06-07 20:46:11 -07:00
|
|
|
viewRootTNode = viewRootTNode.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-26 21:33:50 +03:00
|
|
|
* `executeActionOnProjection` performs an operation on the projection specified by `action`
|
|
|
|
* (insert, detach, destroy).
|
2019-06-07 20:46:11 -07:00
|
|
|
*
|
|
|
|
* Inserting a projection requires us to locate the projected nodes from the parent component. The
|
2019-06-24 17:27:12 +02:00
|
|
|
* complication is that those nodes themselves could be re-projected from their parent component.
|
2019-06-07 20:46:11 -07:00
|
|
|
*
|
|
|
|
* @param renderer Renderer to use
|
|
|
|
* @param action action to perform (insert, detach, destroy)
|
|
|
|
* @param lView The LView which needs to be inserted, detached, destroyed.
|
2019-06-27 12:11:05 +02:00
|
|
|
* @param tProjectionNode projection TNode to process
|
2019-06-07 20:46:11 -07:00
|
|
|
* @param renderParent parent DOM element for insertion/removal.
|
|
|
|
* @param beforeNode Before which node the insertions should happen.
|
|
|
|
*/
|
2019-06-24 17:27:12 +02:00
|
|
|
function executeActionOnProjection(
|
2019-06-07 20:46:11 -07:00
|
|
|
renderer: Renderer3, action: WalkTNodeTreeAction, lView: LView,
|
|
|
|
tProjectionNode: TProjectionNode, renderParent: RElement | null,
|
|
|
|
beforeNode: RNode | null | undefined) {
|
|
|
|
const componentLView = findComponentView(lView);
|
|
|
|
const componentNode = componentLView[T_HOST] as TElementNode;
|
2019-06-27 12:11:05 +02:00
|
|
|
ngDevMode && assertDefined(
|
|
|
|
componentNode.projection,
|
|
|
|
'Element nodes for which projection is processed must have projection defined.');
|
|
|
|
const nodeToProject = componentNode.projection ![tProjectionNode.projection];
|
|
|
|
if (nodeToProject !== undefined) {
|
|
|
|
if (Array.isArray(nodeToProject)) {
|
|
|
|
for (let i = 0; i < nodeToProject.length; i++) {
|
|
|
|
const rNode = nodeToProject[i];
|
|
|
|
ngDevMode && assertDomNode(rNode);
|
|
|
|
executeActionOnElementOrContainer(action, renderer, renderParent, rNode, beforeNode);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let projectionTNode: TNode|null = nodeToProject;
|
|
|
|
const projectedComponentLView = componentLView[PARENT] as LView;
|
|
|
|
while (projectionTNode !== null) {
|
|
|
|
executeActionOnNode(
|
|
|
|
renderer, action, projectedComponentLView, projectionTNode, renderParent, beforeNode);
|
|
|
|
projectionTNode = projectionTNode.projectionNext;
|
|
|
|
}
|
2019-06-07 20:46:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-24 17:27:12 +02:00
|
|
|
* `executeActionOnContainer` performs an operation on the container and its views as specified by
|
|
|
|
* `action` (insert, detach, destroy)
|
2019-06-07 20:46:11 -07:00
|
|
|
*
|
|
|
|
* Inserting a Container is complicated by the fact that the container may have Views which
|
|
|
|
* themselves have containers or projections.
|
|
|
|
*
|
|
|
|
* @param renderer Renderer to use
|
|
|
|
* @param action action to perform (insert, detach, destroy)
|
|
|
|
* @param lContainer The LContainer which needs to be inserted, detached, destroyed.
|
|
|
|
* @param renderParent parent DOM element for insertion/removal.
|
|
|
|
* @param beforeNode Before which node the insertions should happen.
|
|
|
|
*/
|
2019-06-24 17:27:12 +02:00
|
|
|
function executeActionOnContainer(
|
2019-06-07 20:46:11 -07:00
|
|
|
renderer: Renderer3, action: WalkTNodeTreeAction, lContainer: LContainer,
|
|
|
|
renderParent: RElement | null, beforeNode: RNode | null | undefined) {
|
|
|
|
ngDevMode && assertLContainer(lContainer);
|
|
|
|
const anchor = lContainer[NATIVE]; // LContainer has its own before node.
|
|
|
|
const native = unwrapRNode(lContainer);
|
2019-06-24 17:27:12 +02:00
|
|
|
// An LContainer can be created dynamically on any node by injecting ViewContainerRef.
|
2019-06-07 20:46:11 -07:00
|
|
|
// Asking for a ViewContainerRef on an element will result in a creation of a separate anchor node
|
|
|
|
// (comment in the DOM) that will be different from the LContainer's host node. In this particular
|
|
|
|
// case we need to execute action on 2 nodes:
|
|
|
|
// - container's host node (this is done in the executeNodeAction)
|
|
|
|
// - container's host node (this is done here)
|
|
|
|
if (anchor !== native) {
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnElementOrContainer(action, renderer, renderParent, anchor, beforeNode);
|
2019-06-07 20:46:11 -07:00
|
|
|
}
|
|
|
|
for (let i = CONTAINER_HEADER_OFFSET; i < lContainer.length; i++) {
|
|
|
|
const lView = lContainer[i] as LView;
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnView(renderer, action, lView, renderParent, anchor);
|
2019-06-07 20:46:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-06-27 16:10:35 +02:00
|
|
|
* `executeActionOnElementContainerOrIcuContainer` performs an operation on the ng-container node
|
|
|
|
* and its child nodes as specified by the `action` (insert, detach, destroy).
|
2019-06-07 20:46:11 -07:00
|
|
|
*
|
|
|
|
* @param renderer Renderer to use
|
|
|
|
* @param action action to perform (insert, detach, destroy)
|
|
|
|
* @param lView The LView which needs to be inserted, detached, destroyed.
|
2019-06-27 16:10:35 +02:00
|
|
|
* @param tNode The TNode associated with the `ElementContainer` or `IcuContainer`.
|
2019-06-07 20:46:11 -07:00
|
|
|
* @param renderParent parent DOM element for insertion/removal.
|
|
|
|
* @param beforeNode Before which node the insertions should happen.
|
|
|
|
*/
|
2019-06-27 16:10:35 +02:00
|
|
|
function executeActionOnElementContainerOrIcuContainer(
|
2019-06-07 20:46:11 -07:00
|
|
|
renderer: Renderer3, action: WalkTNodeTreeAction, lView: LView,
|
2019-06-27 16:10:35 +02:00
|
|
|
tNode: TElementContainerNode | TIcuContainerNode, renderParent: RElement | null,
|
2019-06-07 20:46:11 -07:00
|
|
|
beforeNode: RNode | null | undefined) {
|
2019-06-27 16:10:35 +02:00
|
|
|
const node = lView[tNode.index];
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnElementOrContainer(action, renderer, renderParent, node, beforeNode);
|
2019-06-27 16:10:35 +02:00
|
|
|
let childTNode: TNode|null = tNode.child;
|
2019-06-24 17:21:02 +02:00
|
|
|
while (childTNode) {
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnNode(renderer, action, lView, childTNode, renderParent, beforeNode);
|
2019-06-24 17:21:02 +02:00
|
|
|
childTNode = childTNode.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-24 17:27:12 +02:00
|
|
|
function executeActionOnNode(
|
2019-06-24 17:21:02 +02:00
|
|
|
renderer: Renderer3, action: WalkTNodeTreeAction, lView: LView, tNode: TNode,
|
|
|
|
renderParent: RElement | null, beforeNode: RNode | null | undefined): void {
|
2019-06-27 12:11:05 +02:00
|
|
|
const nodeType = tNode.type;
|
|
|
|
if (nodeType === TNodeType.ElementContainer || nodeType === TNodeType.IcuContainer) {
|
2019-06-27 16:10:35 +02:00
|
|
|
executeActionOnElementContainerOrIcuContainer(
|
|
|
|
renderer, action, lView, tNode as TElementContainerNode | TIcuContainerNode, renderParent,
|
|
|
|
beforeNode);
|
2019-06-27 12:11:05 +02:00
|
|
|
} else if (nodeType === TNodeType.Projection) {
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnProjection(
|
|
|
|
renderer, action, lView, tNode as TProjectionNode, renderParent, beforeNode);
|
2019-06-24 17:21:02 +02:00
|
|
|
} else {
|
|
|
|
ngDevMode && assertNodeOfPossibleTypes(tNode, TNodeType.Element, TNodeType.Container);
|
2019-06-24 17:27:12 +02:00
|
|
|
executeActionOnElementOrContainer(
|
|
|
|
action, renderer, renderParent, lView[tNode.index], beforeNode);
|
2019-06-07 20:46:11 -07:00
|
|
|
}
|
2019-06-24 17:27:12 +02:00
|
|
|
}
|