UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

52 lines (51 loc) 1.53 kB
import { AbstractSecondOrderPredicateOp } from './AbstractSecondOrderPredicateOp'; import { OPCODE } from '../constants'; import { formatJsonPointer } from '@jsonjoy.com/json-pointer'; /** * @category JSON Predicate */ export class OpAnd extends AbstractSecondOrderPredicateOp { ops; constructor(path, ops) { super(path, ops); this.ops = ops; } op() { return 'and'; } code() { return OPCODE.and; } test(doc) { for (const op of this.ops) if (!op.test(doc)) return false; return true; } toJson(parent) { const op = { op: 'and', 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 ? 'and' : OPCODE.and; return [ opcode, parent ? this.path.slice(parent.path.length) : this.path, this.ops.map((op) => op.toCompact(this, verbose)), ]; } encode(encoder, parent) { const path = parent ? this.path.slice(parent.path.length) : this.path; encoder.encodeArrayHeader(3); encoder.writer.u8(OPCODE.and); encoder.encodeArray(path); const length = this.ops.length; encoder.encodeArrayHeader(length); for (let i = 0; i < length; i++) this.ops[i].encode(encoder, this); } }