UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

60 lines (59 loc) 2.09 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OpTestString = void 0; const AbstractPredicateOp_1 = require("./AbstractPredicateOp"); const json_pointer_1 = require("@jsonjoy.com/json-pointer"); const constants_1 = require("../constants"); /** * @category JSON Patch Extended */ class OpTestString extends AbstractPredicateOp_1.AbstractPredicateOp { constructor(path, pos, str, not) { super(path); this.pos = pos; this.str = str; this.not = not; } op() { return 'test_string'; } code() { return constants_1.OPCODE.test_string; } test(doc) { const { val } = (0, json_pointer_1.find)(doc, this.path); if (typeof val !== 'string') return false; const length = val.length; const start = Math.min(this.pos, length); const end = Math.min(this.pos + this.str.length, length); const test = val.substring(start, end) === this.str; return this.not ? !test : test; } toJson(parent) { const op = { op: 'test_string', path: (0, json_pointer_1.formatJsonPointer)(parent ? this.path.slice(parent.path.length) : this.path), pos: this.pos, str: this.str, }; if (this.not) op.not = this.not; return op; } toCompact(parent, verbose) { const opcode = verbose ? 'test_string' : constants_1.OPCODE.test_string; const path = parent ? this.path.slice(parent.path.length) : this.path; return this.not ? [opcode, path, this.pos, this.str, 1] : [opcode, path, this.pos, this.str]; } encode(encoder, parent) { encoder.encodeArrayHeader(this.not ? 5 : 4); encoder.writer.u8(constants_1.OPCODE.test_string); encoder.encodeArray(parent ? this.path.slice(parent.path.length) : this.path); encoder.encodeNumber(this.pos); encoder.encodeString(this.str); if (this.not) encoder.writer.u8(1); } } exports.OpTestString = OpTestString;