feat: allow using `String.prototype.includes` in item effect filters

This commit is contained in:
Johannes Loher 2023-09-16 10:54:40 +02:00
parent f4585f4254
commit 978301eab1
Signed by: saluu
GPG Key ID: 7CB0A9FB553DA045
2 changed files with 11 additions and 4 deletions

View File

@ -5,7 +5,8 @@
import { DS4 } from "../../config";
import { createCheckRoll } from "../../dice/check-factory";
import { mathEvaluator } from "../../expression-evaluation/evaluator";
import { Evaluator } from "../../expression-evaluation/evaluator";
import { Validator } from "../../expression-evaluation/validator";
import { logger } from "../../utils/logger";
import { getGame } from "../../utils/utils";
import { DS4ActiveEffect } from "../active-effect";
@ -59,7 +60,7 @@ export class DS4Actor extends Actor {
}
/**
* The effects that should be applioed to this actor.
* The effects that should be applied to this actor.
* @type {import("../active-effect").DS4ActiveEffect[]}
* @protected
*/
@ -90,7 +91,7 @@ export class DS4Actor extends Actor {
if (condition !== undefined && condition !== "") {
try {
const replacedCondition = DS4Actor.replaceFormulaData(condition, { item, actor: this, effect });
return replacedCondition !== undefined ? Boolean(mathEvaluator.evaluate(replacedCondition)) : false;
return replacedCondition !== undefined ? Boolean(DS4Actor.evaluator.evaluate(replacedCondition)) : false;
} catch (error) {
logger.warn(error);
return false;
@ -520,6 +521,12 @@ export class DS4Actor extends Actor {
rejectClose: false,
});
}
static evaluator = new Evaluator({
context: Math,
predicate: (identifier) =>
Validator.defaultPredicate(identifier) || ["includes", "toLowerCase", "toUpperCase"].includes(identifier),
});
}
/**

View File

@ -19,7 +19,7 @@ export class Evaluator<Context extends object> {
get: (t, k) => (k === Symbol.unscopables ? undefined : t[k as keyof typeof t]),
});
actualPredicate = (identifier: string) =>
predicate(identifier) || Object.getOwnPropertyNames(Math).includes(identifier);
predicate(identifier) || Object.getOwnPropertyNames(context).includes(identifier);
}
this.validator = new Validator(actualPredicate);
}