forked from benjamine/jsondiffpatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonpatch.js
175 lines (144 loc) · 3.8 KB
/
jsonpatch.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import BaseFormatter from './base';
const OPERATIONS = {
add: 'add',
remove: 'remove',
replace: 'replace',
move: 'move',
};
class JSONFormatter extends BaseFormatter {
constructor() {
super();
this.includeMoveDestinations = true;
}
prepareContext(context) {
super.prepareContext(context);
context.result = [];
context.path = [];
context.pushCurrentOp = function(obj) {
const {op, value} = obj;
const val = {
op,
path: this.currentPath(),
};
if (typeof value !== 'undefined') {
val.value = value;
}
this.result.push(val);
};
context.pushMoveOp = function(to) {
const from = this.currentPath();
this.result.push({
op: OPERATIONS.move,
from: from,
path: this.toPath(to),
});
};
context.currentPath = function() {
return `/${this.path.join('/')}`;
};
context.toPath = function(toPath) {
const to = this.path.slice();
to[to.length - 1] = toPath;
return `/${to.join('/')}`;
};
}
typeFormattterErrorFormatter(context, err) {
context.out(`[ERROR] ${err}`);
}
rootBegin() {}
rootEnd() {}
nodeBegin({ path }, key, leftKey) {
path.push(leftKey);
}
nodeEnd({ path }) {
path.pop();
}
/* jshint camelcase: false */
/* eslint-disable camelcase */
format_unchanged() {}
format_movedestination() {}
format_node(context, delta, left) {
this.formatDeltaChildren(context, delta, left);
}
format_added(context, delta) {
context.pushCurrentOp({op: OPERATIONS.add, value: delta[0]});
}
format_modified(context, delta) {
context.pushCurrentOp({op: OPERATIONS.replace, value: delta[1]});
}
format_deleted(context) {
context.pushCurrentOp({op: OPERATIONS.remove});
}
format_moved(context, delta) {
const to = delta[1];
context.pushMoveOp(to);
}
format_textdiff() {
throw new Error('Not implemented');
}
format(delta, left) {
let context = {};
this.prepareContext(context);
this.recurse(context, delta, left);
return context.result;
}
}
/* jshint camelcase: true */
/* eslint-enable camelcase */
export default JSONFormatter;
const last = arr => arr[arr.length - 1];
const sortBy = (arr, pred) => {
arr.sort(pred);
return arr;
};
const compareByIndexDesc = (indexA, indexB) => {
const lastA = parseInt(indexA, 10);
const lastB = parseInt(indexB, 10);
if (!(isNaN(lastA) || isNaN(lastB))) {
return lastB - lastA;
} else {
return 0;
}
};
const opsByDescendingOrder = removeOps => sortBy(removeOps, (a, b) => {
const splitA = a.path.split('/');
const splitB = b.path.split('/');
if (splitA.length !== splitB.length) {
return splitA.length - splitB.length;
} else {
return compareByIndexDesc(last(splitA), last(splitB));
}
});
export const partitionOps = (arr, fns) => {
const initArr = Array(fns.length + 1).fill().map(() => []);
return arr
.map(item => {
let position = fns.map(fn => fn(item)).indexOf(true);
if (position < 0) {
position = fns.length;
}
return { item, position };
})
.reduce((acc, item) => {
acc[ item.position ].push(item.item);
return acc;
}, initArr);
};
const isMoveOp = ({op}) => op === 'move';
const isRemoveOp = ({op}) => op === 'remove';
const reorderOps = diff => {
const [ moveOps, removedOps, restOps ] =
partitionOps(diff, [ isMoveOp, isRemoveOp ]);
const removeOpsReverse = opsByDescendingOrder(removedOps);
return [ ...removeOpsReverse, ...moveOps, ...restOps ];
};
let defaultInstance;
export const format = (delta, left) => {
if (!defaultInstance) {
defaultInstance = new JSONFormatter();
}
return reorderOps(defaultInstance.format(delta, left));
};
export const log = (delta, left) => {
console.log(format(delta, left));
};