Skip to content

Commit 41deb91

Browse files
author
Rafal Zarajczyk
committedJun 29, 2022
auto refresh every 5 seconds
1 parent 8219a3c commit 41deb91

File tree

3 files changed

+68
-54
lines changed

3 files changed

+68
-54
lines changed
 

‎README.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
A MQTT client which provides a web-based tree-like visualization of MQTT topics.
44

5-
## Usage in docker-compose
5+
## Deployment using docker-compose
66

7-
**docker-compose.yaml:**
7+
#### docker-compose.yaml
88
```yaml
99
version: '3.2'
1010
services:
@@ -16,11 +16,19 @@ services:
1616
network_mode: host
1717
```
1818
19-
**mqtt-tree.yaml**
19+
#### mqtt-tree.yaml
2020
```yaml
21+
port: 8075
2122
mqtt:
2223
broker: <<mqtt address>
2324
port: <<mqtt port>>
2425
username: <<mqtt username>>
2526
password: <<mqtt password>>
2627
```
28+
29+
### Availability:
30+
31+
The web interface is available at the specified port:
32+
```
33+
http://localhost:8075
34+
```

‎src/main/main.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
config, logger, timezone = start_service()
88

9+
PORT = config.get('port', 8075)
10+
911
MQTT_HOST = config['mqtt']['broker']
1012
MQTT_PORT = config['mqtt']['port']
1113
MQTT_USER = config['mqtt']['username']
@@ -46,7 +48,7 @@ def show_tree(params):
4648
StaticResources('/', './src/web')
4749
]
4850

49-
server = http_server(8075, ACTIONS)
51+
server = http_server(PORT, ACTIONS)
5052
try:
5153
server.start(block_caller_thread=True)
5254
finally:

‎src/web/index.js

+54-50
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,68 @@
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})
136
})
7+
}
148

15-
const CACHE = new Map()
9+
const CACHE = new Map()
1610

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>`
3918
}
40-
catch (e) {
41-
return value
19+
else {
20+
it.text = it.name
4221
}
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)
4334
}
35+
catch (e) {
36+
return value
37+
}
38+
}
4439

40+
function refresh() {
4541
fetch('/tree')
4642
.then(response => response.json())
4743
.then(response => {
4844
CACHE.clear()
4945
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)
6349
})
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)
6468
})

0 commit comments

Comments
 (0)
Please sign in to comment.