Browse Source
Merge pull request #210 from fifieldt/add-connection-info
Add Connection info to Nodes Table
pull/233/head
Ben Meadors
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
8 additions and
0 deletions
-
src/pages/Nodes.tsx
|
|
|
@ -26,6 +26,7 @@ export const NodesPage = (): JSX.Element => { |
|
|
|
{ title: "MAC Address", type: "normal", sortable: true }, |
|
|
|
{ title: "Last Heard", type: "normal", sortable: true }, |
|
|
|
{ title: "SNR", type: "normal", sortable: true }, |
|
|
|
{ title: "Connection", type: "normal", sortable: true }, |
|
|
|
]} |
|
|
|
rows={filteredNodes.map((node) => [ |
|
|
|
<Hashicon size={24} value={node.num.toString()} />, |
|
|
|
@ -55,6 +56,13 @@ export const NodesPage = (): JSX.Element => { |
|
|
|
{Math.min(Math.max((node.snr + 10) * 5, 0), 100)}%/ |
|
|
|
{(node.snr + 10) * 5}raw |
|
|
|
</Mono>, |
|
|
|
<Mono> |
|
|
|
{node.lastHeard != 0 ? |
|
|
|
(node.viaMqtt === false && node.hopsAway === 0 |
|
|
|
? "Direct": node.hopsAway.toString() + " hops away") |
|
|
|
: "-"} |
|
|
|
{node.viaMqtt === true? ", via MQTT": ""} |
|
|
|
</Mono> |
|
|
|
])} |
|
|
|
/> |
|
|
|
</div> |
|
|
|
|