benjamine/jsondiffpatch

View on GitHub
packages/jsondiffpatch/src/with-text-diffs.ts

Summary

Maintainability
A
0 mins
Test Coverage
import DiffMatchPatch from 'diff-match-patch';
import DiffPatcher from './diffpatcher.js';
import dateReviver from './date-reviver.js';
import type { Delta, Options } from './types.js';
import type Context from './contexts/context.js';
import type DiffContext from './contexts/diff.js';
import type PatchContext from './contexts/patch.js';
import type ReverseContext from './contexts/reverse.js';

export { DiffPatcher, dateReviver };

export type * from './types.js';
export type { Context, DiffContext, PatchContext, ReverseContext };

export function create(
  options?: Omit<Options, 'textDiff'> & {
    textDiff?: Omit<Options['textDiff'], 'diffMatchPatch'>;
  },
) {
  return new DiffPatcher({
    ...options,
    textDiff: { ...options?.textDiff, diffMatchPatch: DiffMatchPatch },
  });
}

let defaultInstance: DiffPatcher;

export function diff(left: unknown, right: unknown) {
  if (!defaultInstance) {
    defaultInstance = new DiffPatcher({
      textDiff: { diffMatchPatch: DiffMatchPatch },
    });
  }
  return defaultInstance.diff(left, right);
}

export function patch(left: unknown, delta: Delta) {
  if (!defaultInstance) {
    defaultInstance = new DiffPatcher({
      textDiff: { diffMatchPatch: DiffMatchPatch },
    });
  }
  return defaultInstance.patch(left, delta);
}

export function unpatch(right: unknown, delta: Delta) {
  if (!defaultInstance) {
    defaultInstance = new DiffPatcher({
      textDiff: { diffMatchPatch: DiffMatchPatch },
    });
  }
  return defaultInstance.unpatch(right, delta);
}

export function reverse(delta: Delta) {
  if (!defaultInstance) {
    defaultInstance = new DiffPatcher({
      textDiff: { diffMatchPatch: DiffMatchPatch },
    });
  }
  return defaultInstance.reverse(delta);
}

export function clone(value: unknown) {
  if (!defaultInstance) {
    defaultInstance = new DiffPatcher({
      textDiff: { diffMatchPatch: DiffMatchPatch },
    });
  }
  return defaultInstance.clone(value);
}