mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-09 04:35:25 +03:00
Bug fixes
This commit is contained in:
parent
7c4c21426f
commit
48d1ce19de
@ -29,7 +29,7 @@ type DynamicVideoPlayerProps = {
|
||||
timeRange: { start: number; end: number };
|
||||
cameraPreviews: Preview[];
|
||||
previewOnly?: boolean;
|
||||
onControllerReady?: (controller: DynamicVideoController) => void;
|
||||
onControllerReady: (controller: DynamicVideoController) => void;
|
||||
onClick?: () => void;
|
||||
};
|
||||
export default function DynamicVideoPlayer({
|
||||
@ -86,14 +86,17 @@ export default function DynamicVideoPlayer({
|
||||
}, [camera, config, previewOnly]);
|
||||
|
||||
useEffect(() => {
|
||||
if (!controller) {
|
||||
if (!playerRef.current && !previewRef.current) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (onControllerReady) {
|
||||
if (controller) {
|
||||
onControllerReady(controller);
|
||||
}
|
||||
}, [controller, onControllerReady]);
|
||||
|
||||
// we only want to fire once when players are ready
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [playerRef, previewRef]);
|
||||
|
||||
const [hasRecordingAtTime, setHasRecordingAtTime] = useState(true);
|
||||
|
||||
@ -277,10 +280,6 @@ export default function DynamicVideoPlayer({
|
||||
player.on("ended", () =>
|
||||
controller.fireClipChangeEvent("forward"),
|
||||
);
|
||||
|
||||
if (onControllerReady) {
|
||||
onControllerReady(controller);
|
||||
}
|
||||
}}
|
||||
onDispose={() => {
|
||||
playerRef.current = undefined;
|
||||
|
||||
@ -9,7 +9,8 @@ const buttonVariants = cva(
|
||||
{
|
||||
variants: {
|
||||
variant: {
|
||||
default: "bg-selected text-primary-foreground hover:bg-opacity-60",
|
||||
default: "bg-primary text-primary-foreground hover:bg-primary/90",
|
||||
select: "bg-select text-white hover:bg-select/90",
|
||||
destructive:
|
||||
"bg-destructive text-destructive-foreground hover:bg-destructive/90",
|
||||
outline:
|
||||
|
||||
@ -212,9 +212,11 @@ export default function EventView({
|
||||
<ToggleGroup
|
||||
className="*:px-3 *:py-4 *:rounded-2xl"
|
||||
type="single"
|
||||
defaultValue="alert"
|
||||
size="sm"
|
||||
onValueChange={(value: ReviewSeverity) => setSeverity(value)}
|
||||
value={severity}
|
||||
onValueChange={(value: ReviewSeverity) =>
|
||||
value ? setSeverity(value) : null
|
||||
} // don't allow the severity to be unselected
|
||||
>
|
||||
<ToggleGroupItem
|
||||
className={`${severity == "alert" ? "" : "text-gray-500"}`}
|
||||
@ -510,7 +512,11 @@ function DetectionReview({
|
||||
{currentItems && (
|
||||
<div className="col-span-full flex justify-center items-center">
|
||||
{reachedEnd ? (
|
||||
<Button className="text-white" onClick={markAllReviewed}>
|
||||
<Button
|
||||
className="text-white"
|
||||
variant="select"
|
||||
onClick={markAllReviewed}
|
||||
>
|
||||
Mark all items as reviewed
|
||||
</Button>
|
||||
) : (
|
||||
|
||||
Loading…
Reference in New Issue
Block a user