json-diff-viewer-component 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/diff.js +45 -14
- package/src/lib/styles.js +5 -2
- package/src/lib/viewer.js +168 -74
package/package.json
CHANGED
package/src/lib/diff.js
CHANGED
|
@@ -1,12 +1,29 @@
|
|
|
1
1
|
const TYPE = { UNCHANGED: 'unchanged', ADDED: 'added', REMOVED: 'removed', MODIFIED: 'modified', TYPE_CHANGED: 'type_changed' }
|
|
2
2
|
|
|
3
|
-
const typeOf =
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
const typeOf = (v) => {
|
|
4
|
+
if (v === null) return 'null';
|
|
5
|
+
if (Array.isArray(v)) return 'array';
|
|
6
|
+
return typeof v;
|
|
7
|
+
};
|
|
6
8
|
|
|
7
|
-
const
|
|
9
|
+
const isObj = (v) => v !== null && typeof v === 'object';
|
|
8
10
|
|
|
9
|
-
const
|
|
11
|
+
const keys = (a, b) => [...new Set([...Object.keys(a || {}), ...Object.keys(b || {})])];
|
|
12
|
+
|
|
13
|
+
const node = (key, type, left, right, extra = {}) => ({
|
|
14
|
+
key,
|
|
15
|
+
type,
|
|
16
|
+
left,
|
|
17
|
+
right,
|
|
18
|
+
hasDiff: type !== TYPE.UNCHANGED,
|
|
19
|
+
...extra
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
const container = (val, isArr) => {
|
|
23
|
+
if (isArr) return { isArray: true };
|
|
24
|
+
if (isObj(val)) return { isObject: true };
|
|
25
|
+
return {};
|
|
26
|
+
};
|
|
10
27
|
|
|
11
28
|
const childMap = (val, side) => (v, k) => node(
|
|
12
29
|
k, TYPE.UNCHANGED,
|
|
@@ -15,9 +32,11 @@ const childMap = (val, side) => (v, k) => node(
|
|
|
15
32
|
isObj(v) && { children: mapChildren(v, side), ...container(v, Array.isArray(v)) }
|
|
16
33
|
)
|
|
17
34
|
|
|
18
|
-
const mapChildren = (val, side) =>
|
|
19
|
-
Array.isArray(val)
|
|
20
|
-
isObj(val)
|
|
35
|
+
const mapChildren = (val, side) => {
|
|
36
|
+
if (Array.isArray(val)) return val.map(childMap(val, side));
|
|
37
|
+
if (isObj(val)) return Object.entries(val).map(([k, v]) => childMap(val, side)(v, k));
|
|
38
|
+
return [];
|
|
39
|
+
};
|
|
21
40
|
|
|
22
41
|
const diffContainer = (left, right, key, isArr) => {
|
|
23
42
|
const items = isArr
|
|
@@ -28,11 +47,23 @@ const diffContainer = (left, right, key, isArr) => {
|
|
|
28
47
|
}
|
|
29
48
|
|
|
30
49
|
const diff = (left, right, key = 'root') => {
|
|
31
|
-
if (left === undefined)
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
50
|
+
if (left === undefined) {
|
|
51
|
+
const extra = isObj(right) ? { children: mapChildren(right, 'added'), ...container(right, Array.isArray(right)) } : {};
|
|
52
|
+
return node(key, TYPE.ADDED, left, right, extra);
|
|
53
|
+
}
|
|
54
|
+
if (right === undefined) {
|
|
55
|
+
const extra = isObj(left) ? { children: mapChildren(left, 'removed'), ...container(left, Array.isArray(left)) } : {};
|
|
56
|
+
return node(key, TYPE.REMOVED, left, right, extra);
|
|
57
|
+
}
|
|
58
|
+
if (!isObj(left) && !isObj(right)) {
|
|
59
|
+
if (left === right) return node(key, TYPE.UNCHANGED, left, right);
|
|
60
|
+
if (typeOf(left) !== typeOf(right)) return node(key, TYPE.TYPE_CHANGED, left, right);
|
|
61
|
+
return node(key, TYPE.MODIFIED, left, right);
|
|
62
|
+
}
|
|
63
|
+
if (typeOf(left) !== typeOf(right)) {
|
|
64
|
+
return node(key, TYPE.TYPE_CHANGED, left, right, { children: [], ...container(left, Array.isArray(left)) });
|
|
65
|
+
}
|
|
66
|
+
return diffContainer(left, right, key, Array.isArray(left));
|
|
67
|
+
};
|
|
37
68
|
|
|
38
69
|
export { diff, TYPE }
|
package/src/lib/styles.js
CHANGED
|
@@ -44,8 +44,11 @@ export default `
|
|
|
44
44
|
.preview::after { content: ' items'; }
|
|
45
45
|
.stats { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .75rem 1rem; background: var(--bg); border-bottom: 2px solid var(--bdr); font-size: 12px; }
|
|
46
46
|
.stats-buttons { display: flex; gap: 0.5rem; }
|
|
47
|
-
.btn-collapse, .btn-expand { padding: 0.
|
|
48
|
-
.btn-collapse
|
|
47
|
+
.btn-filter, .btn-collapse, .btn-expand { padding: 0.5rem; background: var(--bg2); border: 1px solid var(--bdr); border-radius: 6px; color: var(--txt); cursor: pointer; transition: background .15s, border-color .15s; display: flex; align-items: center; justify-content: center; }
|
|
48
|
+
.btn-filter svg, .btn-collapse svg, .btn-expand svg { width: 18px; height: 18px; }
|
|
49
|
+
.btn-filter:hover, .btn-collapse:hover, .btn-expand:hover { background: rgba(255,255,255,.05); border-color: var(--dim); }
|
|
50
|
+
.btn-filter .checkbox-icon { opacity: 0.3; transition: opacity .15s; }
|
|
51
|
+
.btn-filter .checkbox-icon.checked { opacity: 1; }
|
|
49
52
|
.stat { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: .35rem; }
|
|
50
53
|
.stat .dot { width: 8px; height: 8px; }
|
|
51
54
|
.stat-added .dot { background: var(--add); }
|
package/src/lib/viewer.js
CHANGED
|
@@ -1,109 +1,203 @@
|
|
|
1
|
-
import { diff, TYPE } from
|
|
2
|
-
import styles from
|
|
1
|
+
import { diff, TYPE } from "./diff.js";
|
|
2
|
+
import styles from "./styles.js";
|
|
3
3
|
|
|
4
|
-
const STAT_TYPES = [
|
|
4
|
+
const STAT_TYPES = ["added", "removed", "modified", "type_changed"];
|
|
5
5
|
|
|
6
|
-
const format = val =>
|
|
7
|
-
null
|
|
8
|
-
undefined
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
boolean
|
|
12
|
-
|
|
6
|
+
const format = (val) => {
|
|
7
|
+
if (val === null) return ["null", "null"];
|
|
8
|
+
if (val === undefined) return ["undefined", "null"];
|
|
9
|
+
const type = typeof val;
|
|
10
|
+
if (type === "string") return [val, "string"];
|
|
11
|
+
if (type === "number" || type === "boolean") return [String(val), type];
|
|
12
|
+
return [JSON.stringify(val), "string"];
|
|
13
|
+
};
|
|
13
14
|
|
|
14
15
|
class JsonDiffViewer extends HTMLElement {
|
|
15
|
-
#left = null
|
|
16
|
-
#right = null
|
|
17
|
-
#tree = null
|
|
18
|
-
#exp = {}
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
16
|
+
#left = null;
|
|
17
|
+
#right = null;
|
|
18
|
+
#tree = null;
|
|
19
|
+
#exp = {};
|
|
20
|
+
#rendering = false;
|
|
21
|
+
#proxy = new Proxy(this.#exp, {
|
|
22
|
+
set: (t, k, v) => {
|
|
23
|
+
t[k] = v;
|
|
24
|
+
if (!this.#rendering) this.#render();
|
|
25
|
+
return true;
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
#stats = {};
|
|
29
|
+
#showOnlyChanged = false;
|
|
30
|
+
|
|
31
|
+
static observedAttributes = ["left", "right"];
|
|
32
|
+
constructor() {
|
|
33
|
+
super();
|
|
34
|
+
this.attachShadow({ mode: "open" });
|
|
35
|
+
}
|
|
36
|
+
connectedCallback() {
|
|
37
|
+
this.#render();
|
|
38
|
+
}
|
|
39
|
+
attributeChangedCallback(name, _, value) {
|
|
40
|
+
if (name === "left") this.#left = JSON.parse(value);
|
|
41
|
+
if (name === "right") this.#right = JSON.parse(value);
|
|
42
|
+
this.#compute();
|
|
43
|
+
}
|
|
44
|
+
set left(v) {
|
|
45
|
+
this.#left = v;
|
|
46
|
+
this.#compute();
|
|
47
|
+
}
|
|
48
|
+
set right(v) {
|
|
49
|
+
this.#right = v;
|
|
50
|
+
this.#compute();
|
|
51
|
+
}
|
|
52
|
+
get left() {
|
|
53
|
+
return this.#left;
|
|
54
|
+
}
|
|
55
|
+
get right() {
|
|
56
|
+
return this.#right;
|
|
57
|
+
}
|
|
58
|
+
setData(left, right) {
|
|
59
|
+
this.#left = left;
|
|
60
|
+
this.#right = right;
|
|
61
|
+
this.#compute();
|
|
62
|
+
}
|
|
31
63
|
|
|
32
64
|
#compute() {
|
|
33
|
-
if (!this.#left || !this.#right) return
|
|
34
|
-
this.#tree = diff(this.#left, this.#right)
|
|
35
|
-
this.#stats = Object.fromEntries(STAT_TYPES.map(t => [t, 0]))
|
|
36
|
-
this.#walk(this.#tree, n =>
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
this.#
|
|
65
|
+
if (!this.#left || !this.#right) return;
|
|
66
|
+
this.#tree = diff(this.#left, this.#right);
|
|
67
|
+
this.#stats = Object.fromEntries(STAT_TYPES.map((t) => [t, 0]));
|
|
68
|
+
this.#walk(this.#tree, (n) => {
|
|
69
|
+
if (n.type !== TYPE.UNCHANGED) this.#stats[n.type]++;
|
|
70
|
+
});
|
|
71
|
+
for (const k of Object.keys(this.#exp)) delete this.#exp[k];
|
|
72
|
+
this.#walk(this.#tree, (n, p) => {
|
|
73
|
+
if ((n.isArray || n.isObject) && !n.hasDiff) this.#exp[p] = false;
|
|
74
|
+
});
|
|
75
|
+
this.#render();
|
|
40
76
|
}
|
|
41
77
|
|
|
42
|
-
#walk(node, fn, path =
|
|
43
|
-
const
|
|
44
|
-
fn(node,
|
|
45
|
-
for (const
|
|
78
|
+
#walk(node, fn, path = "") {
|
|
79
|
+
const currentPath = path ? `${path}.${node.key}` : String(node.key);
|
|
80
|
+
fn(node, currentPath);
|
|
81
|
+
for (const child of node.children || []) this.#walk(child, fn, currentPath);
|
|
46
82
|
}
|
|
47
83
|
|
|
48
84
|
#collapseAll() {
|
|
49
|
-
if (!this.#tree) return
|
|
50
|
-
this.#
|
|
51
|
-
this.#
|
|
85
|
+
if (!this.#tree) return;
|
|
86
|
+
this.#rendering = true;
|
|
87
|
+
this.#walk(this.#tree, (n, p) => {
|
|
88
|
+
if (n.isArray || n.isObject) this.#proxy[p] = false;
|
|
89
|
+
});
|
|
90
|
+
this.#rendering = false;
|
|
91
|
+
this.#render();
|
|
52
92
|
}
|
|
53
93
|
|
|
54
94
|
#expandAll() {
|
|
55
|
-
|
|
56
|
-
this.#
|
|
95
|
+
this.#rendering = true;
|
|
96
|
+
for (const k of Object.keys(this.#exp)) delete this.#exp[k];
|
|
97
|
+
this.#rendering = false;
|
|
98
|
+
this.#render();
|
|
57
99
|
}
|
|
58
100
|
|
|
59
101
|
#render() {
|
|
60
|
-
if (!this.#tree)
|
|
102
|
+
if (!this.#tree)
|
|
103
|
+
return (this.shadowRoot.innerHTML = `<style>${styles}</style><div class="empty">Provide left and right JSON</div>`);
|
|
61
104
|
this.shadowRoot.innerHTML = `
|
|
62
105
|
<style>${styles}</style>
|
|
63
106
|
<div class="stats">
|
|
64
|
-
${STAT_TYPES.map(t => `<div class="stat stat-${t}"><span class="dot"></span>${this.#stats[t]} ${t.replace(
|
|
107
|
+
${STAT_TYPES.map((t) => `<div class="stat stat-${t}"><span class="dot"></span>${this.#stats[t]} ${t.replace("_", " ")}</div>`).join("")}
|
|
65
108
|
<div class="stats-buttons">
|
|
66
|
-
<button class="btn-
|
|
67
|
-
|
|
109
|
+
<button class="btn-filter" data-action="filter" aria-label="Show only changed">
|
|
110
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" class="checkbox-icon ${this.#showOnlyChanged ? 'checked' : ''}">
|
|
111
|
+
<path fill="currentColor" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/>
|
|
112
|
+
</svg>
|
|
113
|
+
</button>
|
|
114
|
+
<button class="btn-collapse" data-action="collapse"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M9 15H6q-.425 0-.712-.288T5 14t.288-.712T6 13h4q.425 0 .713.288T11 14v4q0 .425-.288.713T10 19t-.712-.288T9 18zm6-6h3q.425 0 .713.288T19 10t-.288.713T18 11h-4q-.425 0-.712-.288T13 10V6q0-.425.288-.712T14 5t.713.288T15 6z"/></svg></button>
|
|
115
|
+
<button class="btn-expand" data-action="expand"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M7 17h3q.425 0 .713.288T11 18t-.288.713T10 19H6q-.425 0-.712-.288T5 18v-4q0-.425.288-.712T6 13t.713.288T7 14zM17 7h-3q-.425 0-.712-.288T13 6t.288-.712T14 5h4q.425 0 .713.288T19 6v4q0 .425-.288.713T18 11t-.712-.288T17 10z"/></svg></button>
|
|
68
116
|
</div>
|
|
69
117
|
</div>
|
|
70
118
|
<div class="container">
|
|
71
|
-
${[
|
|
72
|
-
|
|
73
|
-
|
|
119
|
+
${["left", "right"]
|
|
120
|
+
.map((side) => {
|
|
121
|
+
const label = side === "left" ? "Original" : "Modified";
|
|
122
|
+
return `<div class="panel" data-side="${side}"><div class="header">${label}</div>${this.#node(this.#tree, side, "")}</div>`;
|
|
123
|
+
})
|
|
124
|
+
.join("")}
|
|
125
|
+
</div>`;
|
|
126
|
+
this.#bind();
|
|
74
127
|
}
|
|
75
128
|
|
|
76
|
-
#node(
|
|
77
|
-
const
|
|
78
|
-
const
|
|
79
|
-
const
|
|
80
|
-
const
|
|
81
|
-
const
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
129
|
+
#node(node, side, path, root = true) {
|
|
130
|
+
const currentPath = path ? `${path}.${node.key}` : String(node.key);
|
|
131
|
+
const value = node[side];
|
|
132
|
+
const hasDiff = node.hasDiff && node.type !== TYPE.UNCHANGED;
|
|
133
|
+
const diffClass = hasDiff ? `diff-${node.type}` : "";
|
|
134
|
+
const hasChildDiff = node.hasDiff && node.children?.some((c) => c.hasDiff);
|
|
135
|
+
const dotType = node.type === TYPE.UNCHANGED ? "modified" : node.type;
|
|
136
|
+
const dot = hasChildDiff ? `<span class="dot dot-${dotType}"></span>` : "";
|
|
137
|
+
const keyHtml = root
|
|
138
|
+
? ""
|
|
139
|
+
: `<span class="key">${node.key}</span><span class="colon">:</span>`;
|
|
140
|
+
const rootClass = root ? " root" : "";
|
|
141
|
+
|
|
142
|
+
if (!node.isArray && !node.isObject) {
|
|
143
|
+
const [val, type] = format(value);
|
|
144
|
+
return `<div class="node${rootClass}"><div class="line ${diffClass}"><span class="tog"></span>${dot}${keyHtml}<span class="val-${type}">${val}</span></div></div>`;
|
|
86
145
|
}
|
|
87
146
|
|
|
88
|
-
const [open, close] =
|
|
89
|
-
const
|
|
90
|
-
|
|
91
|
-
|
|
147
|
+
const [open, close] = node.isArray ? ["[", "]"] : ["{", "}"];
|
|
148
|
+
const isExpanded = this.#proxy[currentPath] !== false;
|
|
149
|
+
const filteredChildren = this.#showOnlyChanged
|
|
150
|
+
? node.children?.filter((c) => c.hasDiff) || []
|
|
151
|
+
: node.children || [];
|
|
152
|
+
const childrenHtml =
|
|
153
|
+
filteredChildren
|
|
154
|
+
.map((c) => this.#node(c, side, currentPath, false))
|
|
155
|
+
.join("") || "";
|
|
156
|
+
const preview = `${filteredChildren.length}`;
|
|
157
|
+
|
|
158
|
+
if (!isExpanded) {
|
|
159
|
+
return `<div class="node${rootClass}"><div class="line ${diffClass}" data-p="${currentPath}"><span class="tog">▶</span>${dot}${keyHtml}<span class="br">${open}</span><span class="preview">${preview}</span><span class="br">${close}</span></div></div>`;
|
|
160
|
+
}
|
|
92
161
|
|
|
93
|
-
return `<div class="node${
|
|
162
|
+
return `<div class="node${rootClass}"><div class="line ${diffClass}" data-p="${currentPath}"><span class="tog">▼</span>${dot}${keyHtml}<span class="br">${open}</span></div>${childrenHtml}<div class="line"><span class="tog"></span><span class="br">${close}</span></div></div>`;
|
|
94
163
|
}
|
|
95
164
|
|
|
96
165
|
#bind() {
|
|
97
|
-
const [
|
|
98
|
-
let
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
166
|
+
const [leftPanel, rightPanel] = this.shadowRoot.querySelectorAll(".panel");
|
|
167
|
+
let syncing = false;
|
|
168
|
+
|
|
169
|
+
const syncScroll = (source) => () => {
|
|
170
|
+
if (syncing) return;
|
|
171
|
+
syncing = true;
|
|
172
|
+
const target = source === leftPanel ? rightPanel : leftPanel;
|
|
173
|
+
target.scrollTop = source.scrollTop;
|
|
174
|
+
target.scrollLeft = source.scrollLeft;
|
|
175
|
+
syncing = false;
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
leftPanel?.addEventListener("scroll", syncScroll(leftPanel));
|
|
179
|
+
rightPanel?.addEventListener("scroll", syncScroll(rightPanel));
|
|
180
|
+
|
|
181
|
+
for (const el of this.shadowRoot.querySelectorAll("[data-p]")) {
|
|
182
|
+
el.onclick = () => {
|
|
183
|
+
this.#proxy[el.dataset.p] = this.#proxy[el.dataset.p] === false;
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
this.shadowRoot
|
|
188
|
+
.querySelector('[data-action="filter"]')
|
|
189
|
+
?.addEventListener("click", () => {
|
|
190
|
+
this.#showOnlyChanged = !this.#showOnlyChanged;
|
|
191
|
+
this.#render();
|
|
192
|
+
});
|
|
193
|
+
this.shadowRoot
|
|
194
|
+
.querySelector('[data-action="collapse"]')
|
|
195
|
+
?.addEventListener("click", () => this.#collapseAll());
|
|
196
|
+
this.shadowRoot
|
|
197
|
+
.querySelector('[data-action="expand"]')
|
|
198
|
+
?.addEventListener("click", () => this.#expandAll());
|
|
105
199
|
}
|
|
106
200
|
}
|
|
107
201
|
|
|
108
|
-
customElements.define(
|
|
109
|
-
export { JsonDiffViewer }
|
|
202
|
+
customElements.define("json-diff-viewer", JsonDiffViewer);
|
|
203
|
+
export { JsonDiffViewer };
|