Skip to content

Commit

Permalink
feat(web): AutoUpdatingCameraImage to replace MJPEG feed
Browse files Browse the repository at this point in the history
  • Loading branch information
paularmstrong authored and blakeblackshear committed Jan 27, 2021
1 parent 633d45d commit a862ba8
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 8 deletions.
8 changes: 2 additions & 6 deletions web/src/Camera.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { h } from 'preact';
import AutoUpdatingCameraImage from './components/AutoUpdatingCameraImage';
import Box from './components/Box';
import Heading from './components/Heading';
import Link from './components/Link';
Expand Down Expand Up @@ -36,12 +37,7 @@ export default function Camera({ camera, url }) {
<div className="space-y-4">
<Heading size="2xl">{camera}</Heading>
<Box>
<img
width={cameraConfig.width}
height={cameraConfig.height}
key={searchParamsString}
src={`${apiHost}/api/${camera}?${searchParamsString}`}
/>
<AutoUpdatingCameraImage camera={camera} searchParams={searchParamsString} />
</Box>

<Box className="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4 p-4">
Expand Down
4 changes: 2 additions & 2 deletions web/src/CameraMap.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ ${Object.keys(objectMaskPoints)
);

return (
<div class="flex-col space-y-4" style={`max-width: ${width}px`}>
<div class="flex-col space-y-4">
<Heading size="2xl">{camera} mask & zone creator</Heading>

<Box>
Expand All @@ -226,7 +226,7 @@ ${Object.keys(objectMaskPoints)

<Box className="space-y-4">
<div className="relative">
<img ref={imageRef} width={width} height={height} src={`${apiHost}/api/${camera}/latest.jpg`} />
<img ref={imageRef} className="w-full" src={`${apiHost}/api/${camera}/latest.jpg`} />
<EditableMask
onChange={handleUpdateEditable}
points={editing.subkey ? editing.set[editing.key][editing.subkey] : editing.set[editing.key]}
Expand Down
27 changes: 27 additions & 0 deletions web/src/components/AutoUpdatingCameraImage.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { h } from 'preact';
import { ApiHost, Config } from '../context';
import { useCallback, useEffect, useContext, useState } from 'preact/hooks';

export default function AutoUpdatingCameraImage({ camera, searchParams }) {
const config = useContext(Config);
const apiHost = useContext(ApiHost);
const cameraConfig = config.cameras[camera];

const [key, setKey] = useState(Date.now());
useEffect(() => {
const timeoutId = setTimeout(() => {
setKey(Date.now());
}, 500);
return () => {
clearTimeout(timeoutId);
};
}, [key, searchParams]);

return (
<img
className="w-full"
src={`${apiHost}/api/${camera}/latest.jpg?cache=${key}&${searchParams}`}
alt={`Auto-updating ${camera} image`}
/>
);
}

0 comments on commit a862ba8

Please sign in to comment.