useProductionQuery
Makes requests to the Production API using JSON query syntax.
Usage
import { useProductionQuery } from '@machinemetrics/mm-react-tools';
function ProductionMetrics() {
const { data, error, loading } = useProductionQuery(
`
{
"startDay": "2025-03-24",
"endDay": "2025-03-30",
"data": [
{
"metric": "partsGoal"
},
{
"metric": "totalParts"
}
],
"groupBy": [
{
"group": "machine"
}
]
}`,
5000, // Optional: refresh every 5 seconds
);
if (loading) return <div>Loading production data...</div>;
if (error) return <div>Error loading production data: {error.message}</div>;
return (
<div>
<h2>Production Metrics</h2>
<pre>{JSON.stringify(data, null, 2)}</pre>
</div>
);
}
Parameters
Parameter | Type | Description |
---|---|---|
query | string | A JSON string containing the query structure |
refreshInterval | number | Optional interval in milliseconds to refetch the data |
Returns
Returns an object containing:
data
: The response data from the Production API (null if not yet loaded)error
: Any error that occurred during the request (null if successful)loading
: Boolean indicating if the request is in progress