UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

42 lines 1.15 kB
import { AbstractSecondOrderPredicateOp } from './AbstractSecondOrderPredicateOp'; import { OPCODE } from '../constants'; import { formatJsonPointer } from '@jsonjoy.com/json-pointer'; /** * @category JSON Predicate */ export class OpOr extends AbstractSecondOrderPredicateOp { ops; constructor(path, ops) { super(path, ops); this.ops = ops; } op() { return 'or'; } code() { return OPCODE.or; } test(doc) { for (const op of this.ops) if (op.test(doc)) return true; return false; } toJson(parent) { const op = { op: 'or', path: formatJsonPointer(parent ? this.path.slice(parent.path.length) : this.path), apply: this.ops.map((op) => op.toJson(this)), }; return op; } toCompact(parent, verbose) { const opcode = verbose ? 'or' : OPCODE.or; return [ opcode, parent ? this.path.slice(parent.path.length) : this.path, this.ops.map((op) => op.toCompact(this, verbose)), ]; } } //# sourceMappingURL=OpOr.js.map