useApiRequest
Makes GET requests to urls.apiUrl
with optional periodic repetition.
Usage
import { useApiRequest } from '@machinemetrics/mm-react-tools';
function MyWidget() {
const { data, error, loading } = useApiRequest(
'/machines',
null,
5000, // Optional: refresh every 5 seconds
);
if (loading) return <div>Loading metrics...</div>;
if (error) return <div>Error loading metrics: {error.message}</div>;
return (
<div>
<pre>{JSON.stringify(data, null, 2)}</pre>
</div>
);
}
Parameters
Parameter | Type | Description |
---|---|---|
endpoint | string | The API endpoint to fetch from (will be prefixed with urls.apiUrl ) |
options | RequestInit | Optional fetch options (headers, method, body, etc.) |
refreshInterval | number | Optional interval in milliseconds to refetch the data |
Returns
Returns an object containing:
data
: The response data (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