|
1 |
| -window.addEventListener('DOMContentLoaded', (event) => { |
2 |
| - document.querySelector('#copy-value-to-clipboard').addEventListener('click', event => { |
3 |
| - navigator.clipboard.writeText(document.querySelector('#node-value').innerText) |
4 |
| - M.toast({html: 'Content copied!', displayLength: 1000}) |
5 |
| - }) |
6 |
| - document.querySelector('#copy-name-to-clipboard').addEventListener('click', event => { |
7 |
| - navigator.clipboard.writeText(document.querySelector('#node-name').innerText) |
8 |
| - M.toast({html: 'Content copied!', displayLength: 1000}) |
9 |
| - }) |
10 |
| - document.querySelector('#copy-path-to-clipboard').addEventListener('click', event => { |
11 |
| - navigator.clipboard.writeText(document.querySelector('#node-path').innerText) |
12 |
| - M.toast({html: 'Content copied!', displayLength: 1000}) |
| 1 | +function addCopyToClipboardListener(triggerSelector, textSourceSelector) { |
| 2 | + document.querySelector(triggerSelector).addEventListener('click', event => { |
| 3 | + const text = document.querySelector(textSourceSelector).innerText |
| 4 | + navigator.clipboard.writeText(text) |
| 5 | + M.toast({html: `Content copied: ${text}`, displayLength: 1000}) |
13 | 6 | })
|
| 7 | +} |
14 | 8 |
|
15 |
| - const CACHE = new Map() |
| 9 | +const CACHE = new Map() |
16 | 10 |
|
17 |
| - function shorten(response) { |
18 |
| - return response.map(it => { |
19 |
| - CACHE.set(it.id, it) |
20 |
| - if (it.value != null) { |
21 |
| - const MAX_LENGTH = 60 |
22 |
| - const truncatedValue = it.value.length > MAX_LENGTH + 3 ? `${it.value.substring(0, MAX_LENGTH)}...` : it.value |
23 |
| - it.text = `${(it.name)} <b>${truncatedValue}</b>` |
24 |
| - } else { |
25 |
| - it.text = it.name |
26 |
| - } |
27 |
| - it.children = shorten(it.children) |
28 |
| - return it |
29 |
| - }) |
30 |
| - } |
31 |
| - |
32 |
| - function renderValue(value) { |
33 |
| - if (!value) { |
34 |
| - return "<i>no value</i>" |
35 |
| - } |
36 |
| - try { |
37 |
| - const parsedJson = JSON.parse(value) |
38 |
| - return JSON.stringify(parsedJson, null, 2) |
| 11 | +function parse(response) { |
| 12 | + return response.map(it => { |
| 13 | + CACHE.set(it.id, it) |
| 14 | + if (it.value != null) { |
| 15 | + const MAX_LENGTH = 60 |
| 16 | + const truncatedValue = it.value.length > MAX_LENGTH + 3 ? `${it.value.substring(0, MAX_LENGTH)}...` : it.value |
| 17 | + it.text = `${(it.name)} <b>${truncatedValue}</b>` |
39 | 18 | }
|
40 |
| - catch (e) { |
41 |
| - return value |
| 19 | + else { |
| 20 | + it.text = it.name |
42 | 21 | }
|
| 22 | + it.children = parse(it.children) |
| 23 | + return it |
| 24 | + }) |
| 25 | +} |
| 26 | + |
| 27 | +function renderValue(value) { |
| 28 | + if (!value) { |
| 29 | + return "<i>no value</i>" |
| 30 | + } |
| 31 | + try { |
| 32 | + const parsedJson = JSON.parse(value) |
| 33 | + return JSON.stringify(parsedJson, null, 2) |
43 | 34 | }
|
| 35 | + catch (e) { |
| 36 | + return value |
| 37 | + } |
| 38 | +} |
44 | 39 |
|
| 40 | +function refresh() { |
45 | 41 | fetch('/tree')
|
46 | 42 | .then(response => response.json())
|
47 | 43 | .then(response => {
|
48 | 44 | CACHE.clear()
|
49 | 45 | console.log(response)
|
50 |
| - response = shorten(response) |
51 |
| - $('#tree').jstree({ |
52 |
| - 'core': { |
53 |
| - 'data': response |
54 |
| - } |
55 |
| - }).on('changed.jstree', (e, data) => { |
56 |
| - console.log(data) |
57 |
| - const id = data.node.id |
58 |
| - const node = CACHE.get(id) |
59 |
| - document.querySelector('#node-value').innerHTML = renderValue(node.value) |
60 |
| - document.querySelector('#node-name span').innerHTML = node.name |
61 |
| - document.querySelector('#node-path span').innerHTML = node.path |
62 |
| - }) |
| 46 | + const parsed = parse(response) |
| 47 | + $('#tree').jstree(true).settings.core.data = parsed |
| 48 | + $('#tree').jstree(true).refresh(true) |
63 | 49 | })
|
| 50 | +} |
| 51 | + |
| 52 | +window.addEventListener('DOMContentLoaded', (event) => { |
| 53 | + addCopyToClipboardListener('#copy-value-to-clipboard', '#node-value'); |
| 54 | + addCopyToClipboardListener('#copy-name-to-clipboard', '#node-name span'); |
| 55 | + addCopyToClipboardListener('#copy-path-to-clipboard', '#node-path span'); |
| 56 | + $('#tree').jstree({core: {data: []}}).on('changed.jstree', (e, data) => { |
| 57 | + console.log(data) |
| 58 | + if (data.action == 'select_node') { |
| 59 | + const id = data.node.id |
| 60 | + const node = CACHE.get(id) |
| 61 | + document.querySelector('#node-value').innerHTML = renderValue(node.value) |
| 62 | + document.querySelector('#node-name span').innerHTML = node.name |
| 63 | + document.querySelector('#node-path span').innerHTML = node.path |
| 64 | + } |
| 65 | + }) |
| 66 | + refresh() |
| 67 | + setInterval(refresh, 5000) |
64 | 68 | })
|
0 commit comments