-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
evalutor.ts
2463 lines (2230 loc) · 64.5 KB
/
evalutor.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @file 公式内置函数
*/
import moment from 'moment';
import upperFirst from 'lodash/upperFirst';
import padStart from 'lodash/padStart';
import capitalize from 'lodash/capitalize';
import escape from 'lodash/escape';
import truncate from 'lodash/truncate';
import uniqWith from 'lodash/uniqWith';
import uniqBy from 'lodash/uniqBy';
import isEqual from 'lodash/isEqual';
import isPlainObject from 'lodash/isPlainObject';
import get from 'lodash/get';
import isNumber from 'lodash/isNumber';
import {EvaluatorOptions, FilterContext, FilterMap, FunctionMap} from './types';
import {FormulaEvalError} from './error';
export class Evaluator {
readonly filters: FilterMap;
readonly functions: FunctionMap = {};
readonly context: {
[propName: string]: any;
};
contextStack: Array<(varname: string) => any> = [];
static defaultFilters: FilterMap = {};
static setDefaultFilters(filters: FilterMap) {
Evaluator.defaultFilters = {
...Evaluator.defaultFilters,
...filters
};
}
static defaultFunctions: FunctionMap = {};
static setDefaultFunctions(funtions: FunctionMap) {
Evaluator.defaultFunctions = {
...Evaluator.defaultFunctions,
...funtions
};
}
constructor(
context: {
[propName: string]: any;
},
readonly options: EvaluatorOptions = {
defaultFilter: 'html'
}
) {
this.context = context;
this.contextStack.push((varname: string) =>
varname === '&' ? context : context?.[varname]
);
this.filters = {
...Evaluator.defaultFilters,
...this.filters,
...options?.filters
};
this.functions = {
...Evaluator.defaultFunctions,
...this.functions,
...options?.functions
};
}
// 主入口
evalute(ast: any) {
if (ast && ast.type) {
const name = (ast.type as string).replace(/(?:_|\-)(\w)/g, (_, l) =>
l.toUpperCase()
);
const fn = this.functions[name] || (this as any)[name];
if (!fn) {
throw new Error(`${ast.type} unkown.`);
}
return fn.call(this, ast);
} else {
return ast;
}
}
document(ast: {type: 'document'; body: Array<any>}) {
if (!ast.body.length) {
return undefined;
}
const isString = ast.body.length > 1;
const content = ast.body.map(item => {
let result = this.evalute(item);
if (isString && result == null) {
// 不要出现 undefined, null 之类的文案
return '';
}
return result;
});
return content.length === 1 ? content[0] : content.join('');
}
filter(ast: {
type: 'filter';
input: any;
filters: Array<{name: string; args: Array<any>}>;
}) {
let input = this.evalute(ast.input);
const filters = ast.filters.concat();
const context: FilterContext = {
filter: undefined,
data: this.context,
restFilters: filters
};
while (filters.length) {
const filter = filters.shift()!;
const fn = this.filters[filter.name];
if (!fn) {
throw new Error(`filter \`${filter.name}\` not exists.`);
}
context.filter = filter;
input = fn.apply(
context,
[input].concat(
filter.args.map((item: any) => {
if (item?.type === 'mixed') {
return item.body
.map((item: any) =>
typeof item === 'string' ? item : this.evalute(item)
)
.join('');
} else if (item.type) {
return this.evalute(item);
}
return item;
})
)
);
}
return input;
}
raw(ast: {type: 'raw'; value: string}) {
return ast.value;
}
script(ast: {type: 'script'; body: any}) {
const defaultFilter = this.options.defaultFilter;
// 只给简单的变量取值用法自动补fitler
if (defaultFilter && ~['getter', 'variable'].indexOf(ast.body?.type)) {
ast = {
...ast,
body: {
type: 'filter',
input: ast.body,
filters: [
{
name: defaultFilter.replace(/^\s*\|\s*/, ''),
args: []
}
]
}
};
}
return this.evalute(ast.body);
}
expressionList(ast: {type: 'expression-list'; body: Array<any>}) {
return ast.body.reduce((prev, current) => this.evalute(current));
}
template(ast: {type: 'template'; body: Array<any>}) {
return ast.body.map(arg => this.evalute(arg)).join('');
}
templateRaw(ast: {type: 'template_raw'; value: any}) {
return ast.value;
}
// 下标获取
getter(ast: {host: any; key: any}) {
const host = this.evalute(ast.host);
let key = this.evalute(ast.key);
if (typeof key === 'undefined' && ast.key?.type === 'variable') {
key = ast.key.name;
}
return host?.[key];
}
// 位操作如 +2 ~3 !
unary(ast: {op: '+' | '-' | '~' | '!'; value: any}) {
let value = this.evalute(ast.value);
switch (ast.op) {
case '+':
return +value;
case '-':
return -value;
case '~':
return ~value;
case '!':
return !value;
}
}
formatNumber(value: any, int = false) {
const typeName = typeof value;
if (typeName === 'string') {
return (int ? parseInt(value, 10) : parseFloat(value)) || 0;
} else if (typeName === 'number' && int) {
return Math.round(value);
}
return value ?? 0;
}
power(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
return Math.pow(this.formatNumber(left), this.formatNumber(right));
}
multiply(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
return stripNumber(this.formatNumber(left) * this.formatNumber(right));
}
divide(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
return stripNumber(this.formatNumber(left) / this.formatNumber(right));
}
remainder(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
return this.formatNumber(left) % this.formatNumber(right);
}
add(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// 如果有一个不是数字就变成字符串拼接
if (isNaN(left) || isNaN(right)) {
return left + right;
}
return stripNumber(this.formatNumber(left) + this.formatNumber(right));
}
minus(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
return stripNumber(this.formatNumber(left) - this.formatNumber(right));
}
shift(ast: {op: '<<' | '>>' | '>>>'; left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.formatNumber(this.evalute(ast.right), true);
if (ast.op === '<<') {
return left << right;
} else if (ast.op == '>>') {
return left >> right;
} else {
return left >>> right;
}
}
lt(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// todo 如果是日期的对比,这个地方可以优化一下。
return left < right;
}
gt(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// todo 如果是日期的对比,这个地方可以优化一下。
return left > right;
}
le(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// todo 如果是日期的对比,这个地方可以优化一下。
return left <= right;
}
ge(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// todo 如果是日期的对比,这个地方可以优化一下。
return left >= right;
}
eq(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// todo 如果是日期的对比,这个地方可以优化一下。
return left == right;
}
ne(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// todo 如果是日期的对比,这个地方可以优化一下。
return left != right;
}
streq(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// todo 如果是日期的对比,这个地方可以优化一下。
return left === right;
}
strneq(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
// todo 如果是日期的对比,这个地方可以优化一下。
return left !== right;
}
binary(ast: {op: '&' | '^' | '|'; left: any; right: any}) {
const left = this.evalute(ast.left);
const right = this.evalute(ast.right);
if (ast.op === '&') {
return left & right;
} else if (ast.op === '^') {
return left ^ right;
} else {
return left | right;
}
}
and(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
return left && this.evalute(ast.right);
}
or(ast: {left: any; right: any}) {
const left = this.evalute(ast.left);
return left || this.evalute(ast.right);
}
number(ast: {value: any; raw: string}) {
// todo 以后可以在这支持大数字。
return ast.value;
}
/**
* 名字空间下获取变量,可能存在变量名中带-的特殊情况,目前无法直接获取 ${ns:xxx-xxx}
* 想借助 ${ns:&['xxx-xxx']} 用法来支持特殊字符。
*
* 而 cookie, localstorage, sessionstorage 都不支持获取全量数据,如 ${ns: &}
* 所以当存在上述用法时,将 & 作为一个占位
*
* 比如 cookie 中有一个 key 为 xxx-xxx 的值,那么可以通过 &['xxx-xxx'] 来获取。
* 而无法通过 ${cookie:xxx-xxx} 来获取。 因为这样会被认为是减操作
* @param ast
* @returns
*/
convertHostGetterToVariable(ast: any) {
if (ast.type !== 'getter') {
return ast;
}
let gettter = ast;
const keys: Array<string> = [];
while (gettter.host?.type === 'getter') {
keys.push('host');
gettter = gettter.host;
}
if (gettter.host?.type === 'variable' && gettter.host.name === '&') {
const ret: any = {
host: ast
};
const host = keys.reduce((host, key) => {
host[key] = {...host[key]};
return host[key];
}, ret);
host.host = {
start: host.host.start,
end: host.host.end,
type: 'variable',
name: this.evalute(host.host.key)
};
return ret.host;
}
return ast;
}
nsVariable(ast: {namespace: string; body: any}) {
let body = ast.body;
if (ast.namespace === 'window') {
this.contextStack.push((name: string) =>
name === '&' ? window : (window as any)[name]
);
} else if (ast.namespace === 'cookie') {
// 可能会利用 &['xxx-xxx'] 来取需要特殊变量
body = this.convertHostGetterToVariable(body);
this.contextStack.push((name: string) => {
return getCookie(name);
});
} else if (ast.namespace === 'ls' || ast.namespace === 'ss') {
const ns = ast.namespace;
// 可能会利用 &['xxx-xxx'] 来取需要特殊变量
body = this.convertHostGetterToVariable(body);
this.contextStack.push((name: string) => {
const raw =
ns === 'ss'
? sessionStorage.getItem(name)
: localStorage.getItem(name);
if (typeof raw === 'string') {
// 判断字符串是否一个纯数字字符串,如果是,则对比parse后的值和原值是否相同,
// 如果不同则返回原值,因为原值如果是一个很长的纯数字字符串,则 parse 后可能会丢失精度
if (/^\d+$/.test(raw)) {
const parsed = JSON.parse(raw);
return `${parsed}` === raw ? parsed : raw;
}
return parseJson(raw, raw);
}
return undefined;
});
} else {
throw new Error('Unsupported namespace: ' + ast.namespace);
}
const result = this.evalute(body);
result?.then
? result.then(() => this.contextStack.pop())
: this.contextStack.pop();
return result;
}
variable(ast: {name: string}) {
const contextGetter = this.contextStack[this.contextStack.length - 1];
return contextGetter(ast.name);
}
identifier(ast: {name: string}) {
return ast.name;
}
array(ast: {type: 'array'; members: Array<any>}) {
return ast.members.map(member => this.evalute(member));
}
literal(ast: {type: 'literal'; value: any}) {
return ast.value;
}
string(ast: {type: 'string'; value: string}) {
return ast.value;
}
object(ast: {members: Array<{key: string; value: any}>}) {
let object: any = {};
ast.members.forEach(({key, value}) => {
object[this.evalute(key)] = this.evalute(value);
});
return object;
}
conditional(ast: {
type: 'conditional';
test: any;
consequent: any;
alternate: any;
}) {
return this.evalute(ast.test)
? this.evalute(ast.consequent)
: this.evalute(ast.alternate);
}
funcCall(this: any, ast: {identifier: string; args: Array<any>}) {
const fnName = `fn${ast.identifier}`;
const fn =
this.functions[fnName] ||
this[fnName] ||
(this.filters.hasOwnProperty(ast.identifier) &&
this.filters[ast.identifier]);
if (!fn) {
throw new FormulaEvalError(`${ast.identifier}函数没有定义`);
}
let args: Array<any> = ast.args;
// 逻辑函数特殊处理,因为有时候有些运算是可以跳过的。
if (~['IF', 'AND', 'OR', 'XOR', 'IFS'].indexOf(ast.identifier)) {
args = args.map(a => () => this.evalute(a));
} else {
args = args.map(a => this.evalute(a));
}
return fn.apply(this, args);
}
anonymousFunction(ast: any) {
return ast;
}
callAnonymousFunction(
ast: {
args: any[];
return: any;
},
args: Array<any>
) {
const ctx: any = createObject(
this.contextStack[this.contextStack.length - 1]('&') || {},
{}
);
ast.args.forEach((arg: any) => {
if (arg.type !== 'variable') {
throw new Error('expected a variable as argument');
}
ctx[arg.name] = args.shift();
});
this.contextStack.push((varName: string) =>
varName === '&' ? ctx : ctx[varName]
);
const result = this.evalute(ast.return);
this.contextStack.pop();
return result;
}
/**
* 如果满足条件condition,则返回consequent,否则返回alternate,支持多层嵌套IF函数。
*
* 等价于直接用JS表达式如:condition ? consequent : alternate。
*
* @example IF(condition, consequent, alternate)
* @param {expression} condition 条件表达式。例如:语文成绩>80
* @param {any} consequent 条件判断通过的返回结果
* @param {any} alternate 条件判断不通过的返回结果
* @namespace 逻辑函数
*
* @returns {any} 根据条件返回不同的结果
*/
fnIF(condition: () => any, trueValue: () => any, falseValue: () => any) {
return condition() ? trueValue() : falseValue();
}
/**
* 条件全部符合,返回 true,否则返回 false。
*
* 示例:AND(语文成绩>80, 数学成绩>80),
*
* 语文成绩和数学成绩都大于 80,则返回 true,否则返回 false,
*
* 等价于直接用JS表达式如:语文成绩>80 && 数学成绩>80。
*
* @example AND(expression1, expression2, ...expressionN)
* @param {...expression} conditions 条件表达式,多个用逗号隔开。例如:语文成绩>80, 数学成绩>80
* @namespace 逻辑函数
*
* @returns {boolean}
*/
fnAND(...condtions: Array<() => any>) {
return condtions.every(c => c());
}
/**
* 条件任意一个满足条件,返回 true,否则返回 false。
*
* 示例:OR(语文成绩>80, 数学成绩>80),
*
* 语文成绩和数学成绩任意一个大于 80,则返回 true,否则返回 false,
*
* 等价于直接用JS表达式如:语文成绩>80 || 数学成绩>80。
*
* @example OR(expression1, expression2, ...expressionN)
* @param {...expression} conditions 条件表达式,多个用逗号隔开。例如:语文成绩>80, 数学成绩>80
* @namespace 逻辑函数
*
* @returns {boolean}
*/
fnOR(...condtions: Array<() => any>) {
return condtions.some(c => c());
}
/**
* 异或处理,多个表达式组中存在奇数个真时认为真。
*
* 示例:XOR(语文成绩 > 80, 数学成绩 > 80, 英语成绩 > 80)
*
* 三门成绩中有一门或者三门大于 80,则返回 true,否则返回 false。
*
* @example XOR(condition1, condition2, ...expressionN)
* @param {...expression} condition 条件表达式,多个用逗号隔开。例如:语文成绩>80, 数学成绩>80
* @namespace 逻辑函数
*
* @returns {boolean}
*/
fnXOR(...condtions: Array<() => any>) {
return !!(condtions.filter(c => c()).length % 2);
}
/**
* 判断函数集合,相当于多个 else if 合并成一个。
*
* 示例:IFS(语文成绩 > 80, "优秀", 语文成绩 > 60, "良", "继续努力"),
*
* 如果语文成绩大于 80,则返回优秀,否则判断大于 60 分,则返回良,否则返回继续努力。
*
* @example IFS(condition1, result1, condition2, result2,...conditionN, resultN)
* @param {...expression} condition 条件表达式
* @param {...any} result 返回值
* @namespace 逻辑函数
* @returns {any} 第一个满足条件的结果,没有命中的返回 false。
*/
fnIFS(...args: Array<() => any>) {
if (args.length % 2) {
args.splice(args.length - 1, 0, () => true);
}
while (args.length) {
const c = args.shift()!;
const v = args.shift()!;
if (c()) {
return v();
}
}
return;
}
/**
* 返回传入数字的绝对值。
*
* @example ABS(num)
* @param {number} num - 数值
* @namespace 数学函数
*
* @returns {number} 传入数值的绝对值
*/
fnABS(a: number) {
a = this.formatNumber(a);
return Math.abs(a);
}
/**
* 获取最大值,如果只有一个参数且是数组,则计算这个数组内的值。
*
* @example MAX(num1, num2, ...numN)
* @param {...number} num - 数值
* @namespace 数学函数
*
* @returns {number} 所有传入值中最大的那个
*/
fnMAX(...args: Array<any>) {
const arr = normalizeArgs(args);
return Math.max.apply(
Math,
arr.map(item => this.formatNumber(item))
);
}
/**
* 获取最小值,如果只有一个参数且是数组,则计算这个数组内的值。
*
* @example MIN(num1, num2, ...numN)
* @param {...number} num - 数值
* @namespace 数学函数
*
* @returns {number} 所有传入值中最小的那个
*/
fnMIN(...args: Array<number>) {
const arr = normalizeArgs(args);
return Math.min.apply(
Math,
arr.map(item => this.formatNumber(item))
);
}
/**
* 求和,如果只有一个参数且是数组,则计算这个数组内的值。
*
* @example SUM(num1, num2, ...numN)
* @param {...number} num - 数值
* @namespace 数学函数
*
* @returns {number} 所有传入数值的总和
*/
fnSUM(...args: Array<number>) {
const arr = normalizeArgs(args);
return arr.reduce((sum, a) => sum + this.formatNumber(a) || 0, 0);
}
/**
* 将数值向下取整为最接近的整数。
*
* @example INT(num)
* @param {number} num - 数值
* @namespace 数学函数
*
* @returns {number} 数值对应的整形
*/
fnINT(n: number) {
return Math.floor(this.formatNumber(n));
}
/**
* 返回两数相除的余数,参数 number 是被除数,divisor 是除数。
*
* @example MOD(num, divisor)
* @param {number} num - 被除数
* @param {number} divisor - 除数
* @namespace 数学函数
*
* @returns {number} 两数相除的余数
*/
fnMOD(a: number, b: number) {
return this.formatNumber(a) % this.formatNumber(b);
}
/**
* 圆周率 3.1415...。
*
* @example PI()
* @namespace 数学函数
*
* @returns {number} 圆周率数值
*/
fnPI() {
return Math.PI;
}
/**
* 将数字四舍五入到指定的位数,可以设置小数位。
*
* @example ROUND(num[, numDigits = 2])
* @param {number} num - 要处理的数字
* @param {number} numDigits - 小数位数,默认为2
* @namespace 数学函数
*
* @returns {number} 传入数值四舍五入后的结果
*/
fnROUND(a: number, b: number = 2) {
a = this.formatNumber(a);
b = this.formatNumber(b);
const bResult = Math.round(b);
if (bResult) {
const c = Math.pow(10, bResult);
return Math.round(a * c) / c;
}
return Math.round(a);
}
/**
* 将数字向下取整到指定的位数,可以设置小数位。
*
* @example FLOOR(num[, numDigits=2])
* @param {number} num - 要处理的数字
* @param {number} numDigits - 小数位数,默认为2
* @namespace 数学函数
*
* @returns {number} 传入数值向下取整后的结果
*/
fnFLOOR(a: number, b: number = 2) {
a = this.formatNumber(a);
b = this.formatNumber(b);
const bResult = Math.round(b);
if (bResult) {
const c = Math.pow(10, bResult);
return Math.floor(a * c) / c;
}
return Math.floor(a);
}
/**
* 将数字向上取整到指定的位数,可以设置小数位。
*
* @example CEIL(num[, numDigits=2])
* @param {number} num - 要处理的数字
* @param {number} numDigits - 小数位数,默认为2
* @namespace 数学函数
*
* @returns {number} 传入数值向上取整后的结果
*/
fnCEIL(a: number, b: number = 2) {
a = this.formatNumber(a);
b = this.formatNumber(b);
const bResult = Math.round(b);
if (bResult) {
const c = Math.pow(10, bResult);
return Math.ceil(a * c) / c;
}
return Math.ceil(a);
}
/**
* 开平方,参数 number 为非负数
*
* @example SQRT(num)
* @param {number} num - 要处理的数字
* @namespace 数学函数
*
* @returns {number} 开平方的结果
*/
fnSQRT(n: number) {
return Math.sqrt(this.formatNumber(n));
}
/**
* 返回所有参数的平均值,如果只有一个参数且是数组,则计算这个数组内的值。
*
* @example AVG(num1, num2, ...numN)
* @param {...number} num - 要处理的数字
* @namespace 数学函数
*
* @returns {number} 所有数值的平均值
*/
fnAVG(...args: Array<any>) {
const arr = normalizeArgs(args);
return (
this.fnSUM.apply(
this,
arr.map(item => this.formatNumber(item))
) / arr.length
);
}
/**
* 返回数据点与数据均值点之差(数据偏差)的平方和,如果只有一个参数且是数组,则计算这个数组内的值。
*
* @example DEVSQ(num1, num2, ...numN)
* @param {...number} num - 要处理的数字
* @namespace 数学函数
*
* @returns {number} 所有数值的平均值
*/
fnDEVSQ(...args: Array<any>) {
if (args.length === 0) {
return null;
}
const arr = normalizeArgs(args);
const nums = arr.map(item => this.formatNumber(item));
const sum = nums.reduce((sum, a) => sum + a || 0, 0);
const mean = sum / nums.length;
let result = 0;
for (const num of nums) {
result += Math.pow(num - mean, 2);
}
return result;
}
/**
* 数据点到其算术平均值的绝对偏差的平均值。
*
* @example AVEDEV(num1, num2, ...numN)
* @param {...number} num - 要处理的数字
* @namespace 数学函数
*
* @returns {number} 所有数值的平均值
*/
fnAVEDEV(...args: Array<any>) {
if (args.length === 0) {
return null;
}
let arr = args;
if (args.length === 1 && Array.isArray(args[0])) {
arr = args[0];
}
const nums = arr.map(item => this.formatNumber(item));
const sum = nums.reduce((sum, a) => sum + a || 0, 0);
const mean = sum / nums.length;
let result = 0;
for (const num of nums) {
result += Math.abs(num - mean);
}
return result / nums.length;
}
/**
* 数据点的调和平均值,如果只有一个参数且是数组,则计算这个数组内的值。
*
* @example HARMEAN(num1, num2, ...numN)
* @param {...number} num - 要处理的数字
* @namespace 数学函数
*
* @returns {number} 所有数值的平均值
*/
fnHARMEAN(...args: Array<any>) {
if (args.length === 0) {
return null;
}
let arr = args;
if (args.length === 1 && Array.isArray(args[0])) {
arr = args[0];
}
const nums = arr.map(item => this.formatNumber(item));
let den = 0;
for (const num of nums) {
den += 1 / num;
}
return nums.length / den;
}
/**
* 数据集中第 k 个最大值。
*
* @example LARGE(array, k)
* @param {array} nums - 要处理的数字
* @param {number} k - 第几大
* @namespace 数学函数
*
* @returns {number} 所有数值的平均值
*/
fnLARGE(nums: Array<any>, k: number) {
if (nums.length === 0) {
return null;
}
const numsFormat = nums.map(item => this.formatNumber(item));
if (k < 0 || numsFormat.length < k) {
return null;
}
return numsFormat.sort(function (a, b) {
return b - a;
})[k - 1];
}
/**
* 将数值转为中文大写金额。
*
* @example UPPERMONEY(num)
* @param {number} num - 要处理的数字
* @namespace 数学函数
*
* @returns {string} 数值中文大写字符
*/
fnUPPERMONEY(n: number) {
n = this.formatNumber(n);
const maxLen = 14;
if (n.toString().split('.')[0]?.length > maxLen) {
return `最大数额只支持到兆(既小数点前${maxLen}位)`;
}
const fraction = ['角', '分'];
const digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];
const unit = [
['元', '万', '亿', '兆'],
['', '拾', '佰', '仟']
];
const head = n < 0 ? '欠' : '';
n = Math.abs(n);
let s = '';
for (let i = 0; i < fraction.length; i++) {
s += (
digit[Math.floor(n * 10 * Math.pow(10, i)) % 10] + fraction[i]
).replace(/零./, '');
}
s = s || '整';
n = Math.floor(n);
for (let i = 0; i < unit[0].length && n > 0; i++) {
let p = '';
for (let j = 0; j < unit[1].length && n > 0; j++) {
p = digit[n % 10] + unit[1][j] + p;
n = Math.floor(n / 10);
}
s = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + s;
}
return (
head +
s
.replace(/(零.)*零元/, '元')