forked from benjamine/jsondiffpatch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtml-ex.js
40 lines (34 loc) · 1.29 KB
/
html-ex.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
import HtmlFormatter from './html';
export { showUnchanged, hideUnchanged } from './html';
export class HtmlExFormatter extends HtmlFormatter {
rootBegin(context, type, nodeType) {
if (type === 'node') {this.parentPath = []}
super.rootBegin(context, type, nodeType)
}
nodeBegin(context, key, leftKey, type, nodeType) {
if (nodeType) this.parentPath.push(key);
const nodeClass = `jsondiffpatch-${type}${
nodeType ? ` jsondiffpatch-child-node-type-${nodeType}` : ''
}`;
const vIsTargetKey = !nodeType && type !== 'unchanged' && type !== 'movedestination' && type !== 'unknown';
const vKeyPath = vIsTargetKey ? [...this.parentPath, key].join('.') : '';
const vCheckbox = vIsTargetKey ?
`<input type="checkbox" id="jsondiffpatchCB-${vKeyPath}" checked> ` : '';
context.out(
`<li class="${nodeClass}" data-key="${leftKey}">` +
`<div class="jsondiffpatch-property-name">${vCheckbox}${leftKey}</div>`
);
}
nodeEnd(context, key, leftKey, type, nodeType) {
if (nodeType) this.parentPath.pop();
context.out('</li>');
}
}
export default HtmlExFormatter;
let defaultInstance;
export function format(delta, left) {
if (!defaultInstance) {
defaultInstance = new HtmlExFormatter();
}
return defaultInstance.format(delta, left);
}