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
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {assertNotNull} from './assert';
|
|
|
|
import {ContainerState, LContainer, LElement, LNode, LNodeFlags, LProjection, LText, LView, ProjectionState, ViewOrContainerState, ViewState} from './interfaces';
|
|
|
|
import {assertNodeType} from './node_assert';
|
|
|
|
import {RComment, RElement, RNode, RText, Renderer3Fn} from './renderer';
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Finds the closest DOM node above a given container in the hierarchy.
|
|
|
|
*
|
|
|
|
* This is necessary to add or remove elements from the DOM when a view
|
|
|
|
* is added or removed from the container. e.g. parent.removeChild(...)
|
|
|
|
*
|
|
|
|
* @param {LContainer} containerNode The container node whose parent must be found
|
|
|
|
* @returns {RNode}
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function findNativeParent(containerNode: LContainer): RNode|null {
|
|
|
|
let container: LContainer|null = containerNode;
|
|
|
|
while (container) {
|
|
|
|
ngDevMode && assertNodeType(container, LNodeFlags.Container);
|
|
|
|
const renderParent = container.data.renderParent;
|
|
|
|
if (renderParent !== null) {
|
|
|
|
return renderParent.native;
|
|
|
|
}
|
|
|
|
const viewOrElement: LView|LElement = container.parent !;
|
|
|
|
ngDevMode && assertNotNull(viewOrElement, 'container.parent');
|
|
|
|
if ((viewOrElement.flags & LNodeFlags.TYPE_MASK) === LNodeFlags.Element) {
|
|
|
|
// we are an LElement, which means we are past the last LContainer.
|
|
|
|
// This means than we have not been projected so just ignore.
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
ngDevMode && assertNodeType(viewOrElement, LNodeFlags.View);
|
|
|
|
container = (viewOrElement as LView).parent;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Finds the DOM element before which a certain view should be inserting its
|
|
|
|
* child elements.
|
|
|
|
*
|
|
|
|
* If the view has a next (e.g. for loop), elements should be inserted before
|
|
|
|
* the next view's first child element. Otherwise, the container's comment
|
|
|
|
* anchor is the marker.
|
|
|
|
*
|
|
|
|
* @param {number} index The index of the view to check
|
|
|
|
* @param {ContainerState} state ContainerState of the parent container
|
|
|
|
* @param {RComment} native Comment anchor for container
|
|
|
|
* @returns {RElement | RText | RComment}
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function findBeforeNode(index: number, state: ContainerState, native: RComment): RElement|
|
|
|
|
RText|RComment {
|
|
|
|
const children = state.children;
|
|
|
|
// Find the node to insert in front of
|
|
|
|
return index + 1 < children.length ?
|
2017-12-08 11:48:54 -08:00
|
|
|
(children[index + 1].child as LText | LElement | LContainer).native :
|
2017-12-01 14:23:03 -08:00
|
|
|
native;
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* @param {LContainer} container - The container to which the root view belongs
|
|
|
|
* @param {LView} rootNode - The view from which elements should be added or removed
|
|
|
|
* @param {boolean} insertMode - Whether or not elements should be added (if false, removing)
|
|
|
|
* @param {RNode} beforeNode - The node before which elements should be added, if insert mode
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function addRemoveViewFromContainer(
|
|
|
|
container: LContainer, rootNode: LView, insertMode: true, beforeNode: RNode | null): void;
|
|
|
|
export function addRemoveViewFromContainer(
|
|
|
|
container: LContainer, rootNode: LView, insertMode: false): void;
|
|
|
|
export function addRemoveViewFromContainer(
|
|
|
|
container: LContainer, rootNode: LView, insertMode: boolean, beforeNode?: RNode | null): void {
|
|
|
|
ngDevMode && assertNodeType(container, LNodeFlags.Container);
|
|
|
|
ngDevMode && assertNodeType(rootNode, LNodeFlags.View);
|
|
|
|
const parent = findNativeParent(container);
|
2017-12-08 11:48:54 -08:00
|
|
|
let node: LNode|null = rootNode.child;
|
2017-12-01 14:23:03 -08:00
|
|
|
if (parent) {
|
|
|
|
while (node) {
|
|
|
|
const type = node.flags & LNodeFlags.TYPE_MASK;
|
|
|
|
let nextNode: LNode|null = null;
|
|
|
|
const renderer = container.view.renderer;
|
|
|
|
const isFnRenderer = (renderer as Renderer3Fn).listen;
|
|
|
|
if (type === LNodeFlags.Element) {
|
|
|
|
insertMode ?
|
|
|
|
(isFnRenderer ?
|
|
|
|
(renderer as Renderer3Fn)
|
|
|
|
.insertBefore !(parent, node.native !, beforeNode as RNode | null) :
|
|
|
|
parent.insertBefore(node.native !, beforeNode as RNode | null, true)) :
|
|
|
|
(isFnRenderer ?
|
|
|
|
(renderer as Renderer3Fn).removeChild !(parent as RElement, node.native !) :
|
|
|
|
parent.removeChild(node.native !));
|
|
|
|
nextNode = node.next;
|
|
|
|
} else if (type === LNodeFlags.Container) {
|
|
|
|
// if we get to a container, it must be a root node of a view because we are only
|
|
|
|
// propagating down into child views / containers and not child elements
|
|
|
|
const childContainerData: ContainerState = (node as LContainer).data;
|
|
|
|
insertMode ?
|
|
|
|
(isFnRenderer ?
|
|
|
|
(renderer as Renderer3Fn).appendChild !(parent as RElement, node.native !) :
|
|
|
|
parent.appendChild(node.native !)) :
|
|
|
|
(isFnRenderer ?
|
|
|
|
(renderer as Renderer3Fn).removeChild !(parent as RElement, node.native !) :
|
|
|
|
parent.removeChild(node.native !));
|
2017-12-08 11:48:54 -08:00
|
|
|
nextNode = childContainerData.children.length ? childContainerData.children[0].child : null;
|
2017-12-01 14:23:03 -08:00
|
|
|
} else if (type === LNodeFlags.Projection) {
|
|
|
|
nextNode = (node as LProjection).data[0];
|
|
|
|
} else {
|
2017-12-08 11:48:54 -08:00
|
|
|
nextNode = (node as LView).child;
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
if (nextNode === null) {
|
|
|
|
while (node && !node.next) {
|
|
|
|
node = node.parent;
|
|
|
|
if (node === rootNode) node = null;
|
|
|
|
}
|
|
|
|
node = node && node.next;
|
|
|
|
} else {
|
|
|
|
node = nextNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-12-13 11:04:46 -08:00
|
|
|
* Traverses the tree of component views and containers to remove listeners and
|
|
|
|
* 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
|
|
|
*
|
|
|
|
* @param {ViewState} rootView - The view to destroy
|
2017-12-01 14:23:03 -08:00
|
|
|
*/
|
|
|
|
export function destroyViewTree(rootView: ViewState): void {
|
|
|
|
let viewOrContainerState: ViewOrContainerState|null = rootView;
|
|
|
|
|
|
|
|
while (viewOrContainerState) {
|
|
|
|
let next: ViewOrContainerState|null = null;
|
|
|
|
|
|
|
|
if (viewOrContainerState.children && viewOrContainerState.children.length) {
|
|
|
|
next = viewOrContainerState.children[0].data;
|
|
|
|
} else if (viewOrContainerState.child) {
|
|
|
|
next = viewOrContainerState.child;
|
|
|
|
} else if (viewOrContainerState.next) {
|
|
|
|
cleanUpView(viewOrContainerState as ViewState);
|
|
|
|
next = viewOrContainerState.next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (next == null) {
|
|
|
|
while (viewOrContainerState && !viewOrContainerState !.next) {
|
|
|
|
cleanUpView(viewOrContainerState as ViewState);
|
|
|
|
viewOrContainerState = getParentState(viewOrContainerState, rootView);
|
|
|
|
}
|
|
|
|
cleanUpView(viewOrContainerState as ViewState || rootView);
|
|
|
|
|
|
|
|
next = viewOrContainerState && viewOrContainerState.next;
|
|
|
|
}
|
|
|
|
viewOrContainerState = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Inserts a view into a container.
|
|
|
|
*
|
|
|
|
* This adds the view to the container's array of active children in the correct
|
|
|
|
* 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).
|
|
|
|
*
|
|
|
|
* @param {LContainer} container - The container into which the view should be inserted
|
|
|
|
* @param {LView} newView - The view to insert
|
|
|
|
* @param {number} index - The index at which to insert the view
|
|
|
|
* @returns {LView} - The inserted view
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function insertView(container: LContainer, newView: LView, index: number): LView {
|
|
|
|
const state = container.data;
|
|
|
|
const children = state.children;
|
|
|
|
|
|
|
|
if (index > 0) {
|
|
|
|
// This is a new view, we need to add it to the children.
|
|
|
|
setViewNext(children[index - 1], newView);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index < children.length && children[index].data.id !== newView.data.id) {
|
|
|
|
// View ID change replace the view.
|
|
|
|
setViewNext(newView, children[index]);
|
|
|
|
children.splice(index, 0, newView);
|
|
|
|
} else if (index >= children.length) {
|
|
|
|
children.push(newView);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state.nextIndex <= index) {
|
|
|
|
state.nextIndex++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the container's renderParent is null, we know that it is a root node of its own parent view
|
|
|
|
// and we should wait until that parent processes its nodes (otherwise, we will insert this view's
|
|
|
|
// nodes twice - once now and once when its parent inserts its views).
|
|
|
|
if (container.data.renderParent !== null) {
|
|
|
|
addRemoveViewFromContainer(
|
|
|
|
container, newView, true, findBeforeNode(index, state, container.native));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Notify query that view has been inserted
|
|
|
|
container.query && container.query.insert(container, newView, index);
|
|
|
|
return newView;
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Removes a view from a container.
|
|
|
|
*
|
|
|
|
* This method splices the view from the container's array of active children. It also
|
|
|
|
* removes the view's elements from the DOM and conducts cleanup (e.g. removing
|
|
|
|
* listeners, calling onDestroys).
|
|
|
|
*
|
|
|
|
* @param {LContainer} container - The container from which to remove a view
|
|
|
|
* @param {number} removeIndex - The index of the view to remove
|
|
|
|
* @returns {LView} - The removed view
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function removeView(container: LContainer, removeIndex: number): LView {
|
|
|
|
const children = container.data.children;
|
|
|
|
const viewNode = children[removeIndex];
|
|
|
|
if (removeIndex > 0) {
|
|
|
|
setViewNext(children[removeIndex - 1], viewNode.next);
|
|
|
|
}
|
|
|
|
children.splice(removeIndex, 1);
|
|
|
|
destroyViewTree(viewNode.data);
|
|
|
|
addRemoveViewFromContainer(container, viewNode, false);
|
|
|
|
// Notify query that view has been removed
|
|
|
|
container.query && container.query.remove(container, viewNode, removeIndex);
|
|
|
|
return viewNode;
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Sets a next on the view node, so views in for loops can easily jump from
|
|
|
|
* one view to the next to add/remove elements. Also adds the ViewState (view.data)
|
|
|
|
* to the view tree for easy traversal when cleaning up the view.
|
|
|
|
*
|
|
|
|
* @param {LView} view - The view to set up
|
|
|
|
* @param {LView} next - The view's new next
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function setViewNext(view: LView, next: LView | null): void {
|
|
|
|
view.next = next;
|
|
|
|
view.data.next = next ? next.data : null;
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Determines which ViewOrContainerState to jump to when traversing back up the
|
|
|
|
* tree in destroyViewTree.
|
|
|
|
*
|
|
|
|
* Normally, the view's parent ViewState should be checked, but in the case of
|
|
|
|
* embedded views, the container (which is the view node's parent, but not the
|
|
|
|
* ViewState's parent) needs to be checked for a possible next property.
|
|
|
|
*
|
|
|
|
* @param {ViewOrContainerState} state - The ViewOrContainerState for which we need a parent state
|
|
|
|
* @param {ViewState} rootView - The rootView, so we don't propagate too far up the view tree
|
|
|
|
* @returns {ViewOrContainerState}
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function getParentState(
|
|
|
|
state: ViewOrContainerState, rootView: ViewState): ViewOrContainerState|null {
|
|
|
|
let node;
|
|
|
|
if ((node = (state as ViewState) !.node) &&
|
|
|
|
(node.flags & LNodeFlags.TYPE_MASK) === LNodeFlags.View) {
|
|
|
|
// if it's an embedded view, the state needs to go up to the container, in case the
|
|
|
|
// container has a next
|
|
|
|
return node.parent !.data as any;
|
|
|
|
} else {
|
|
|
|
// otherwise, use parent view for containers or component views
|
|
|
|
return state.parent === rootView ? null : state.parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Removes all listeners and call all onDestroys in a given view.
|
|
|
|
*
|
|
|
|
* @param {ViewState} viewState - The ViewState of the view to clean up
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
function cleanUpView(viewState: ViewState): void {
|
|
|
|
if (!viewState.cleanup) return;
|
|
|
|
const cleanup = viewState.cleanup !;
|
|
|
|
for (let i = 0; i < cleanup.length - 1; i += 2) {
|
|
|
|
if (typeof cleanup[i] === 'string') {
|
|
|
|
cleanup ![i + 1].removeEventListener(cleanup[i], cleanup[i + 2], cleanup[i + 3]);
|
|
|
|
i += 2;
|
|
|
|
} else {
|
|
|
|
cleanup[i].call(cleanup[i + 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
viewState.cleanup = null;
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Appends the provided child element to the provided parent, if appropriate.
|
|
|
|
*
|
|
|
|
* If the parent is a view, the element will be appended as part of viewEnd(), so
|
|
|
|
* the element should not be appended now. Similarly, if the child is a content child
|
|
|
|
* of a parent component, the child will be appended to the right position later by
|
|
|
|
* the content projection system. Otherwise, append normally.
|
|
|
|
*
|
|
|
|
* @param {LNode} parent - The parent to which to append the child
|
|
|
|
* @param {RNode} child - The child that should be appended
|
|
|
|
* @param {ViewState} currentView - The current view's ViewState
|
|
|
|
* @returns {boolean} - Whether or not the child was appended
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function appendChild(parent: LNode, child: RNode | null, currentView: ViewState): boolean {
|
|
|
|
// Only add native child element to parent element if the parent element is regular Element.
|
|
|
|
// If parent is:
|
|
|
|
// - Regular element => add child
|
|
|
|
// - Component host element =>
|
|
|
|
// - Current View, and parent view same => content => don't add -> parent component will
|
|
|
|
// re-project if needed.
|
|
|
|
// - Current View, and parent view different => view => add Child
|
|
|
|
// - View element => View's get added separately.
|
|
|
|
if (child !== null && (parent.flags & LNodeFlags.TYPE_MASK) === LNodeFlags.Element &&
|
|
|
|
(parent.view !==
|
|
|
|
currentView /* Crossing View Boundaries, it is Component, but add Element of View */
|
|
|
|
|| parent.data === null /* Regular Element. */)) {
|
|
|
|
// We only add element if not in View or not projected.
|
|
|
|
|
|
|
|
const renderer = currentView.renderer;
|
|
|
|
(renderer as Renderer3Fn).listen ?
|
|
|
|
(renderer as Renderer3Fn).appendChild !(parent.native !as RElement, child) :
|
|
|
|
parent.native !.appendChild(child);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Inserts the provided node before the correct element in the DOM, if appropriate.
|
|
|
|
*
|
|
|
|
* If the parent is a view, the element will be inserted as part of viewEnd(), so
|
|
|
|
* the element should not be inserted now. Similarly, if the child is a content child
|
|
|
|
* of a parent component, the child will be inserted to the right position later by
|
|
|
|
* the content projection system. Otherwise, insertBefore normally.
|
|
|
|
*
|
|
|
|
* @param {LNode} node - Node to insert
|
|
|
|
* @param {ViewState} currentView - The current view's ViewState
|
|
|
|
*/
|
|
|
|
export function insertChild(node: LNode, currentView: ViewState): void {
|
2017-12-01 14:23:03 -08:00
|
|
|
const parent = node.parent !;
|
|
|
|
// Only add child element to parent element if the parent element is regular Element.
|
|
|
|
// If parent is:
|
|
|
|
// - Normal element => add child
|
|
|
|
// - Component element =>
|
|
|
|
// - Current View, and parent view same => content don't add -> parent component will
|
|
|
|
// re-project if needed.
|
|
|
|
// - Current View, and parent view different => view => add Child
|
|
|
|
// - View element => View's get added separately.
|
|
|
|
if ((parent.flags & LNodeFlags.TYPE_MASK) === LNodeFlags.Element &&
|
|
|
|
(parent.view !==
|
|
|
|
currentView /* Crossing View Boundaries, its Component, but add Element of View */
|
|
|
|
|| parent.data === null /* Regular Element. */)) {
|
|
|
|
// We only add element if not in View or not projected.
|
|
|
|
|
|
|
|
let sibling = node.next;
|
|
|
|
let nativeSibling: RNode|null = null;
|
|
|
|
while (sibling && (nativeSibling = sibling.native) === null) {
|
|
|
|
sibling = sibling.next;
|
|
|
|
}
|
|
|
|
const renderer = currentView.renderer;
|
|
|
|
(renderer as Renderer3Fn).listen ?
|
|
|
|
(renderer as Renderer3Fn).insertBefore !(parent.native !, node.native !, nativeSibling) :
|
|
|
|
parent.native !.insertBefore(node.native !, nativeSibling, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:04:46 -08:00
|
|
|
/**
|
|
|
|
* Appends a projected node to the DOM, or in the case of a projected container,
|
|
|
|
* appends the nodes from all of the container's active views to the DOM. Also stores the
|
|
|
|
* node in the given projectedNodes array.
|
|
|
|
*
|
|
|
|
* @param {ProjectionState} projectedNodes - Array to store the projected node
|
|
|
|
* @param {LElement | LText | LContainer} node - The node to process
|
|
|
|
* @param {LView | LElement} currentParent - The last parent element to be processed
|
|
|
|
* @param {ViewState} currentView - The current view's ViewState
|
|
|
|
*/
|
2017-12-01 14:23:03 -08:00
|
|
|
export function processProjectedNode(
|
|
|
|
projectedNodes: ProjectionState, node: LElement | LText | LContainer,
|
2017-12-13 11:04:46 -08:00
|
|
|
currentParent: LView | LElement, currentView: ViewState): void {
|
2017-12-01 14:23:03 -08:00
|
|
|
if ((node.flags & LNodeFlags.TYPE_MASK) === LNodeFlags.Container &&
|
|
|
|
(currentParent.flags & LNodeFlags.TYPE_MASK) === LNodeFlags.Element &&
|
2017-12-08 11:48:54 -08:00
|
|
|
(currentParent.data === null || currentParent.data === currentView)) {
|
|
|
|
// The node we are adding is a Container and we are adding it to Element which
|
|
|
|
// 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).
|
|
|
|
// Assignee the final projection location in those cases.
|
2017-12-01 14:23:03 -08:00
|
|
|
const containerState = (node as LContainer).data;
|
|
|
|
containerState.renderParent = currentParent as LElement;
|
|
|
|
const views = containerState.children;
|
|
|
|
for (let i = 0; i < views.length; i++) {
|
|
|
|
addRemoveViewFromContainer(node as LContainer, views[i], true, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
projectedNodes.push(node);
|
|
|
|
appendChild(currentParent, node.native, currentView);
|
|
|
|
}
|