adaptive-expressions
Version:
Common Expression Language
64 lines (55 loc) • 2.07 kB
text/typescript
/**
* @module adaptive-expressions
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { Expression } from '../expression';
import { ExpressionEvaluator, ValueWithError } from '../expressionEvaluator';
import { ExpressionType } from '../expressionType';
import { FunctionUtils } from '../functionUtils';
import { Options } from '../options';
import { ReturnType } from '../returnType';
/**
* Return items from the front of an array or take the specific prefix from a string.
*/
export class Take extends ExpressionEvaluator {
/**
* Initializes a new instance of the [Take](xref:adaptive-expressions.Take) class.
*/
constructor() {
super(ExpressionType.Take, Take.evaluator, ReturnType.Array | ReturnType.String, Take.validator);
}
/**
* @private
*/
private static evaluator(expression: Expression, state: any, options: Options): ValueWithError {
let result: any;
const { value: arr, error: childrenError } = expression.children[0].tryEvaluate(state, options);
let error = childrenError;
if (!error) {
if (Array.isArray(arr) || typeof arr === 'string') {
let start: number;
const startExpr: Expression = expression.children[1];
({ value: start, error } = startExpr.tryEvaluate(state, options));
if (!error && !Number.isInteger(start)) {
error = `${startExpr} is not an integer.`;
}
if (!error) {
start = Math.max(start, 0);
result = arr.slice(0, start);
}
} else {
error = `${expression.children[0]} is not array or string.`;
}
}
return { value: result, error };
}
/**
* @private
*/
private static validator(expression: Expression): void {
FunctionUtils.validateOrder(expression, [], ReturnType.Array | ReturnType.String, ReturnType.Number);
}
}