2018-02-01 12:13:23 -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-11-21 21:14:06 -08:00
|
|
|
import {bindingUpdated, bindingUpdated2, bindingUpdated3, bindingUpdated4, getBinding, updateBinding} from './bindings';
|
2019-12-19 21:54:35 +01:00
|
|
|
import {LView} from './interfaces/view';
|
2019-08-02 14:25:52 +02:00
|
|
|
import {getBindingRoot, getLView} from './state';
|
2019-11-13 22:26:34 +09:00
|
|
|
import {NO_CHANGE} from './tokens';
|
2018-10-18 09:23:18 +02:00
|
|
|
|
2018-02-14 13:37:54 -08:00
|
|
|
|
2018-08-15 16:32:08 -07:00
|
|
|
/**
|
|
|
|
* Bindings for pure functions are stored after regular bindings.
|
|
|
|
*
|
2019-09-23 20:08:51 +02:00
|
|
|
* |-------decls------|---------vars---------| |----- hostVars (dir1) ------|
|
2018-10-08 16:04:46 -07:00
|
|
|
* ------------------------------------------------------------------------------------------
|
|
|
|
* | nodes/refs/pipes | bindings | fn slots | injector | dir1 | host bindings | host slots |
|
|
|
|
* ------------------------------------------------------------------------------------------
|
|
|
|
* ^ ^
|
|
|
|
* TView.bindingStartIndex TView.expandoStartIndex
|
2018-08-15 16:32:08 -07:00
|
|
|
*
|
2018-08-20 13:03:03 -07:00
|
|
|
* Pure function instructions are given an offset from the binding root. Adding the offset to the
|
|
|
|
* binding root gives the first index where the bindings are stored. In component views, the binding
|
2018-10-08 16:04:46 -07:00
|
|
|
* root is the bindingStartIndex. In host bindings, the binding root is the expandoStartIndex +
|
|
|
|
* any directive instances + any hostVars in directives evaluated before it.
|
|
|
|
*
|
|
|
|
* See VIEW_DATA.md for more information about host binding resolution.
|
2018-08-15 16:32:08 -07:00
|
|
|
*/
|
2018-02-14 13:37:54 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If the value hasn't been saved, calls the pure function to store and return the
|
|
|
|
* value. If it has been saved, returns the saved value.
|
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-14 13:37:54 -08:00
|
|
|
* @param pureFn Function that returns a value
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-02-14 13:37:54 -08:00
|
|
|
* @returns value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-14 13:37:54 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction0<T>(slotOffset: number, pureFn: () => T, thisArg?: any): T {
|
2018-08-20 13:03:03 -07:00
|
|
|
const bindingIndex = getBindingRoot() + slotOffset;
|
2018-11-21 21:14:06 -08:00
|
|
|
const lView = getLView();
|
2019-11-13 22:26:34 +09:00
|
|
|
return lView[bindingIndex] === NO_CHANGE ?
|
2018-11-21 21:14:06 -08:00
|
|
|
updateBinding(lView, bindingIndex, thisArg ? pureFn.call(thisArg) : pureFn()) :
|
|
|
|
getBinding(lView, bindingIndex);
|
2018-02-14 13:37:54 -08:00
|
|
|
}
|
2018-02-01 12:13:23 -08:00
|
|
|
|
|
|
|
/**
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of the provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if the value has not changed, returns cached value.
|
2018-02-01 12:13:23 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn Function that returns an updated value
|
2018-02-13 10:24:41 -08:00
|
|
|
* @param exp Updated expression value
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-01 12:13:23 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction1(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number, pureFn: (v: any) => any, exp: any, thisArg?: any): any {
|
2019-12-19 21:54:35 +01:00
|
|
|
return pureFunction1Internal(getLView(), getBindingRoot(), slotOffset, pureFn, exp, thisArg);
|
2018-02-01 12:13:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
2018-02-01 12:13:23 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn
|
2018-02-01 12:13:23 -08:00
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-01 12:13:23 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction2(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number, pureFn: (v1: any, v2: any) => any, exp1: any, exp2: any,
|
|
|
|
thisArg?: any): any {
|
2019-12-19 21:54:35 +01:00
|
|
|
return pureFunction2Internal(
|
|
|
|
getLView(), getBindingRoot(), slotOffset, pureFn, exp1, exp2, thisArg);
|
2018-02-01 12:13:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
2018-02-01 12:13:23 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn
|
2018-02-01 12:13:23 -08:00
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param exp3
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-01 12:13:23 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction3(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number, pureFn: (v1: any, v2: any, v3: any) => any, exp1: any, exp2: any, exp3: any,
|
2018-02-16 16:23:27 +01:00
|
|
|
thisArg?: any): any {
|
2019-12-19 21:54:35 +01:00
|
|
|
return pureFunction3Internal(
|
|
|
|
getLView(), getBindingRoot(), slotOffset, pureFn, exp1, exp2, exp3, thisArg);
|
2018-02-01 12:13:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
2018-02-01 12:13:23 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn
|
2018-02-01 12:13:23 -08:00
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param exp3
|
|
|
|
* @param exp4
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-01 12:13:23 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction4(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any) => any, exp1: any, exp2: any,
|
|
|
|
exp3: any, exp4: any, thisArg?: any): any {
|
2019-12-19 21:54:35 +01:00
|
|
|
return pureFunction4Internal(
|
|
|
|
getLView(), getBindingRoot(), slotOffset, pureFn, exp1, exp2, exp3, exp4, thisArg);
|
2018-02-01 12:13:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
2018-02-01 12:13:23 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn
|
2018-02-01 12:13:23 -08:00
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param exp3
|
|
|
|
* @param exp4
|
|
|
|
* @param exp5
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-01 12:13:23 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction5(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any) => any, exp1: any,
|
|
|
|
exp2: any, exp3: any, exp4: any, exp5: any, thisArg?: any): any {
|
2018-08-20 13:03:03 -07:00
|
|
|
const bindingIndex = getBindingRoot() + slotOffset;
|
2018-11-21 21:14:06 -08:00
|
|
|
const lView = getLView();
|
|
|
|
const different = bindingUpdated4(lView, bindingIndex, exp1, exp2, exp3, exp4);
|
|
|
|
return bindingUpdated(lView, bindingIndex + 4, exp5) || different ?
|
2018-08-15 16:32:08 -07:00
|
|
|
updateBinding(
|
2018-11-21 21:14:06 -08:00
|
|
|
lView, bindingIndex + 5, thisArg ? pureFn.call(thisArg, exp1, exp2, exp3, exp4, exp5) :
|
|
|
|
pureFn(exp1, exp2, exp3, exp4, exp5)) :
|
|
|
|
getBinding(lView, bindingIndex + 5);
|
2018-02-01 12:13:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
2018-02-01 12:13:23 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn
|
2018-02-01 12:13:23 -08:00
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param exp3
|
|
|
|
* @param exp4
|
|
|
|
* @param exp5
|
|
|
|
* @param exp6
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-01 12:13:23 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction6(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any) => any,
|
|
|
|
exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, thisArg?: any): any {
|
2018-08-20 13:03:03 -07:00
|
|
|
const bindingIndex = getBindingRoot() + slotOffset;
|
2018-11-21 21:14:06 -08:00
|
|
|
const lView = getLView();
|
|
|
|
const different = bindingUpdated4(lView, bindingIndex, exp1, exp2, exp3, exp4);
|
|
|
|
return bindingUpdated2(lView, bindingIndex + 4, exp5, exp6) || different ?
|
2018-08-15 16:32:08 -07:00
|
|
|
updateBinding(
|
2018-11-21 21:14:06 -08:00
|
|
|
lView, bindingIndex + 6, thisArg ?
|
|
|
|
pureFn.call(thisArg, exp1, exp2, exp3, exp4, exp5, exp6) :
|
|
|
|
pureFn(exp1, exp2, exp3, exp4, exp5, exp6)) :
|
|
|
|
getBinding(lView, bindingIndex + 6);
|
2018-02-01 12:13:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
2018-02-01 12:13:23 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn
|
2018-02-01 12:13:23 -08:00
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param exp3
|
|
|
|
* @param exp4
|
|
|
|
* @param exp5
|
|
|
|
* @param exp6
|
|
|
|
* @param exp7
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-01 12:13:23 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction7(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number,
|
2018-02-13 18:56:52 -08:00
|
|
|
pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any, v7: any) => any, exp1: any,
|
2018-02-16 16:23:27 +01:00
|
|
|
exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, exp7: any, thisArg?: any): any {
|
2018-08-20 13:03:03 -07:00
|
|
|
const bindingIndex = getBindingRoot() + slotOffset;
|
2018-11-21 21:14:06 -08:00
|
|
|
const lView = getLView();
|
|
|
|
let different = bindingUpdated4(lView, bindingIndex, exp1, exp2, exp3, exp4);
|
|
|
|
return bindingUpdated3(lView, bindingIndex + 4, exp5, exp6, exp7) || different ?
|
2018-08-15 16:32:08 -07:00
|
|
|
updateBinding(
|
2018-11-21 21:14:06 -08:00
|
|
|
lView, bindingIndex + 7, thisArg ?
|
2018-08-15 16:32:08 -07:00
|
|
|
pureFn.call(thisArg, exp1, exp2, exp3, exp4, exp5, exp6, exp7) :
|
|
|
|
pureFn(exp1, exp2, exp3, exp4, exp5, exp6, exp7)) :
|
2018-11-21 21:14:06 -08:00
|
|
|
getBinding(lView, bindingIndex + 7);
|
2018-02-01 12:13:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
2018-02-01 12:13:23 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn
|
2018-02-01 12:13:23 -08:00
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param exp3
|
|
|
|
* @param exp4
|
|
|
|
* @param exp5
|
|
|
|
* @param exp6
|
|
|
|
* @param exp7
|
|
|
|
* @param exp8
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-01 12:13:23 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunction8(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number,
|
2018-02-13 18:56:52 -08:00
|
|
|
pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any, v7: any, v8: any) => any,
|
2018-02-16 16:23:27 +01:00
|
|
|
exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, exp7: any, exp8: any,
|
|
|
|
thisArg?: any): any {
|
2018-08-20 13:03:03 -07:00
|
|
|
const bindingIndex = getBindingRoot() + slotOffset;
|
2018-11-21 21:14:06 -08:00
|
|
|
const lView = getLView();
|
|
|
|
const different = bindingUpdated4(lView, bindingIndex, exp1, exp2, exp3, exp4);
|
|
|
|
return bindingUpdated4(lView, bindingIndex + 4, exp5, exp6, exp7, exp8) || different ?
|
2018-08-15 16:32:08 -07:00
|
|
|
updateBinding(
|
2018-11-21 21:14:06 -08:00
|
|
|
lView, bindingIndex + 8, thisArg ?
|
2018-08-15 16:32:08 -07:00
|
|
|
pureFn.call(thisArg, exp1, exp2, exp3, exp4, exp5, exp6, exp7, exp8) :
|
|
|
|
pureFn(exp1, exp2, exp3, exp4, exp5, exp6, exp7, exp8)) :
|
2018-11-21 21:14:06 -08:00
|
|
|
getBinding(lView, bindingIndex + 8);
|
2018-02-13 10:24:41 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-13 18:56:52 -08:00
|
|
|
* pureFunction instruction that can support any number of bindings.
|
2018-02-13 10:24:41 -08:00
|
|
|
*
|
2018-02-14 13:37:54 -08:00
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
2018-02-13 10:24:41 -08:00
|
|
|
*
|
2018-08-15 16:32:08 -07:00
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
2018-02-13 18:56:52 -08:00
|
|
|
* @param pureFn A pure function that takes binding values and builds an object or array
|
2018-02-13 10:24:41 -08:00
|
|
|
* containing those values.
|
2018-05-13 18:24:12 +02:00
|
|
|
* @param exps An array of binding values
|
|
|
|
* @param thisArg Optional calling context of pureFn
|
2018-05-21 15:59:25 -07:00
|
|
|
* @returns Updated or cached value
|
2019-04-04 11:41:52 -07:00
|
|
|
*
|
2019-04-10 13:45:26 -07:00
|
|
|
* @codeGenApi
|
2018-02-13 10:24:41 -08:00
|
|
|
*/
|
2019-05-17 18:49:21 -07:00
|
|
|
export function ɵɵpureFunctionV(
|
2018-05-21 15:59:25 -07:00
|
|
|
slotOffset: number, pureFn: (...v: any[]) => any, exps: any[], thisArg?: any): any {
|
2019-12-19 21:54:35 +01:00
|
|
|
return pureFunctionVInternal(getLView(), getBindingRoot(), slotOffset, pureFn, exps, thisArg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the value of the provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if the value has not changed, returns cached value.
|
|
|
|
*
|
|
|
|
* @param lView LView in which the function is being executed.
|
|
|
|
* @param bindingRoot Binding root index.
|
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
|
|
|
* @param pureFn Function that returns an updated value
|
|
|
|
* @param exp Updated expression value
|
|
|
|
* @param thisArg Optional calling context of pureFn
|
|
|
|
* @returns Updated or cached value
|
|
|
|
*/
|
|
|
|
export function pureFunction1Internal(
|
|
|
|
lView: LView, bindingRoot: number, slotOffset: number, pureFn: (v: any) => any, exp: any,
|
|
|
|
thisArg?: any): any {
|
|
|
|
const bindingIndex = bindingRoot + slotOffset;
|
|
|
|
return bindingUpdated(lView, bindingIndex, exp) ?
|
|
|
|
updateBinding(lView, bindingIndex + 1, thisArg ? pureFn.call(thisArg, exp) : pureFn(exp)) :
|
|
|
|
getBinding(lView, bindingIndex + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
|
|
|
*
|
|
|
|
* @param lView LView in which the function is being executed.
|
|
|
|
* @param bindingRoot Binding root index.
|
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
|
|
|
* @param pureFn
|
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param thisArg Optional calling context of pureFn
|
|
|
|
* @returns Updated or cached value
|
|
|
|
*/
|
|
|
|
export function pureFunction2Internal(
|
|
|
|
lView: LView, bindingRoot: number, slotOffset: number, pureFn: (v1: any, v2: any) => any,
|
|
|
|
exp1: any, exp2: any, thisArg?: any): any {
|
|
|
|
const bindingIndex = bindingRoot + slotOffset;
|
|
|
|
return bindingUpdated2(lView, bindingIndex, exp1, exp2) ?
|
|
|
|
updateBinding(
|
|
|
|
lView, bindingIndex + 2,
|
|
|
|
thisArg ? pureFn.call(thisArg, exp1, exp2) : pureFn(exp1, exp2)) :
|
|
|
|
getBinding(lView, bindingIndex + 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
|
|
|
*
|
|
|
|
* @param lView LView in which the function is being executed.
|
|
|
|
* @param bindingRoot Binding root index.
|
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
|
|
|
* @param pureFn
|
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param exp3
|
|
|
|
* @param thisArg Optional calling context of pureFn
|
|
|
|
* @returns Updated or cached value
|
|
|
|
*/
|
|
|
|
export function pureFunction3Internal(
|
|
|
|
lView: LView, bindingRoot: number, slotOffset: number,
|
|
|
|
pureFn: (v1: any, v2: any, v3: any) => any, exp1: any, exp2: any, exp3: any,
|
|
|
|
thisArg?: any): any {
|
|
|
|
const bindingIndex = bindingRoot + slotOffset;
|
|
|
|
return bindingUpdated3(lView, bindingIndex, exp1, exp2, exp3) ?
|
|
|
|
updateBinding(
|
|
|
|
lView, bindingIndex + 3,
|
|
|
|
thisArg ? pureFn.call(thisArg, exp1, exp2, exp3) : pureFn(exp1, exp2, exp3)) :
|
|
|
|
getBinding(lView, bindingIndex + 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
|
|
|
*
|
|
|
|
* @param lView LView in which the function is being executed.
|
|
|
|
* @param bindingRoot Binding root index.
|
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
|
|
|
* @param pureFn
|
|
|
|
* @param exp1
|
|
|
|
* @param exp2
|
|
|
|
* @param exp3
|
|
|
|
* @param exp4
|
|
|
|
* @param thisArg Optional calling context of pureFn
|
|
|
|
* @returns Updated or cached value
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
export function pureFunction4Internal(
|
|
|
|
lView: LView, bindingRoot: number, slotOffset: number,
|
|
|
|
pureFn: (v1: any, v2: any, v3: any, v4: any) => any, exp1: any, exp2: any, exp3: any, exp4: any,
|
|
|
|
thisArg?: any): any {
|
|
|
|
const bindingIndex = bindingRoot + slotOffset;
|
|
|
|
return bindingUpdated4(lView, bindingIndex, exp1, exp2, exp3, exp4) ?
|
|
|
|
updateBinding(
|
|
|
|
lView, bindingIndex + 4,
|
|
|
|
thisArg ? pureFn.call(thisArg, exp1, exp2, exp3, exp4) : pureFn(exp1, exp2, exp3, exp4)) :
|
|
|
|
getBinding(lView, bindingIndex + 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* pureFunction instruction that can support any number of bindings.
|
|
|
|
*
|
|
|
|
* If the value of any provided exp has changed, calls the pure function to return
|
|
|
|
* an updated value. Or if no values have changed, returns cached value.
|
|
|
|
*
|
|
|
|
* @param lView LView in which the function is being executed.
|
|
|
|
* @param bindingRoot Binding root index.
|
|
|
|
* @param slotOffset the offset from binding root to the reserved slot
|
|
|
|
* @param pureFn A pure function that takes binding values and builds an object or array
|
|
|
|
* containing those values.
|
|
|
|
* @param exps An array of binding values
|
|
|
|
* @param thisArg Optional calling context of pureFn
|
|
|
|
* @returns Updated or cached value
|
|
|
|
*/
|
|
|
|
export function pureFunctionVInternal(
|
|
|
|
lView: LView, bindingRoot: number, slotOffset: number, pureFn: (...v: any[]) => any,
|
|
|
|
exps: any[], thisArg?: any): any {
|
|
|
|
let bindingIndex = bindingRoot + slotOffset;
|
2018-05-21 15:59:25 -07:00
|
|
|
let different = false;
|
2018-02-13 10:24:41 -08:00
|
|
|
for (let i = 0; i < exps.length; i++) {
|
2018-11-21 21:14:06 -08:00
|
|
|
bindingUpdated(lView, bindingIndex++, exps[i]) && (different = true);
|
2018-02-13 10:24:41 -08:00
|
|
|
}
|
2018-11-21 21:14:06 -08:00
|
|
|
return different ? updateBinding(lView, bindingIndex, pureFn.apply(thisArg, exps)) :
|
|
|
|
getBinding(lView, bindingIndex);
|
2018-02-01 12:13:23 -08:00
|
|
|
}
|