Add webclient code

This commit is contained in:
Tanner Collin 2024-12-16 22:28:17 +00:00
parent a5c9511876
commit 594f406702
7 changed files with 10395 additions and 0 deletions

23
webclient/.gitignore vendored Normal file
View File

@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

42
webclient/package.json Normal file
View File

@ -0,0 +1,42 @@
{
"name": "webclient",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"axios": "^1.6.8",
"moment": "^2.29.1",
"mqtt": "^5.5.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"recharts": "^2.0.9",
"web-vitals": "^3.5.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}

View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Loadcell Display</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>

54
webclient/src/App.css Normal file
View File

@ -0,0 +1,54 @@
* {
box-sizing: border-box;
}
body {
background-color: #212121;
}
.container {
max-width: 40em;
margin: 0 auto;
}
.panels:after {
content: "";
display: table;
clear: both;
}
.panel {
float: left;
width: 23%;
padding-bottom: 20%;
border-radius: 5%;
border-style: solid;
border-width: 0.5em;
position: relative;
margin: 1%;
box-sizing: border-box;
}
.panel-label {
position: absolute;
color: white;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 2em;
width: 110%;
text-align: center;
}
p {
color: white;
font-size: 2em;
margin: 0.25em;
}
.recharts-wrapper p {
color: initial;
font-size: initial;
}

117
webclient/src/App.js Normal file
View File

@ -0,0 +1,117 @@
import React, { useState, useEffect } from 'react';
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from 'recharts';
import axios from 'axios';
import moment from 'moment';
import mqtt from 'mqtt';
import './App.css';
const client = mqtt.connect('mqtts://mqtt-dev.dns.t0.vc');
function useMQTTSubscribe(client, topic, onMessage) {
useEffect(() => {
if (!client || !client.connected) {
console.log('No client / connection');
return;
}
const handleMsg = (receivedTopic, message) => {
if (receivedTopic === topic) {
onMessage(message.toString());
}
};
client.subscribe(topic);
client.on('message', handleMsg);
return () => {
client.unsubscribe(topic);
client.off('message', handleMsg);
};
}, [client, topic, onMessage]);
}
function LoadCell(props) {
const { client } = props;
const [data, setData] = useState([]);
const [current, setCurrent] = useState(0);
const [max, setMax] = useState(0);
const addData = (message) => {
setData(prevState => {
const new_data = message.split(',').map(x => {
const val = parseInt(x);
setCurrent(val);
setMax(prevState => val > prevState ? val : prevState);
return {force: val};
});
return [...prevState, ...new_data].slice(-50);
});
};
useMQTTSubscribe(client, 'test', addData);
console.log(data);
return (
<div>
<div className='container'>
<p>Loadcell demo</p>
</div>
{data ?
<ResponsiveContainer width='100%' height={300}>
<LineChart data={data}>
<XAxis
dataKey='time'
minTickGap={10}
/>
<YAxis
domain={[0, 100]}
/>
<CartesianGrid strokeDasharray='3 3'/>
<Tooltip
/>
<Line
type='monotone'
dataKey='force'
name='lbf'
stroke='#ff5900'
strokeWidth={2}
dot={false}
animationDuration={1000}
/>
</LineChart>
</ResponsiveContainer>
:
<p>Loading...</p>
}
<div className='container'>
<p>Current: {current} lbf</p>
<p>Max: {max} lbf</p>
</div>
</div>
);
}
function App() {
const [connected, setConnected] = useState(false);
useEffect(() => {
client.on('connect', () => {
setConnected(true);
});
}, [client]);
return (
<div>
{connected ?
<LoadCell client={client} />
:
<p>Connecting...</p>
}
</div>
);
}
export default App;

10
webclient/src/index.js Normal file
View File

@ -0,0 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);

10113
webclient/yarn.lock Normal file

File diff suppressed because it is too large Load Diff