mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
use flexbox for recordings view (#10385)
This commit is contained in:
parent
8d4b9bc7ed
commit
fa22f01f39
@ -172,26 +172,23 @@ export function DesktopRecordingView({
|
||||
Back
|
||||
</Button>
|
||||
|
||||
<div className="absolute h-32 left-2 right-28 bottom-4 flex justify-center gap-1">
|
||||
{allCameras.map((cam) => {
|
||||
if (cam == mainCamera) {
|
||||
return (
|
||||
<div
|
||||
key={cam}
|
||||
className="fixed left-96 right-96 top-[40%] -translate-y-[50%]"
|
||||
>
|
||||
<div className="flex h-full justify-center overflow-hidden">
|
||||
<div className="flex flex-1 flex-wrap">
|
||||
<div className="flex flex-col h-full px-2 justify-end">
|
||||
<div key={mainCamera} className="flex justify-center mb-5">
|
||||
<DynamicVideoPlayer
|
||||
camera={cam}
|
||||
className="w-[85%]"
|
||||
camera={mainCamera}
|
||||
timeRange={currentTimeRange}
|
||||
cameraPreviews={allPreviews ?? []}
|
||||
startTime={playbackStart}
|
||||
onControllerReady={(controller) => {
|
||||
videoPlayersRef.current[cam] = controller;
|
||||
videoPlayersRef.current[mainCamera] = controller;
|
||||
controller.onPlayerTimeUpdate((timestamp: number) => {
|
||||
setCurrentTime(timestamp);
|
||||
|
||||
allCameras.forEach((otherCam) => {
|
||||
if (cam != otherCam) {
|
||||
if (mainCamera != otherCam) {
|
||||
videoPlayersRef.current[otherCam]?.scrubToTimestamp(
|
||||
Math.floor(timestamp),
|
||||
);
|
||||
@ -201,11 +198,14 @@ export function DesktopRecordingView({
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
<div className="flex justify-end gap-2 overflow-x-auto">
|
||||
{allCameras.map((cam) => {
|
||||
if (cam !== mainCamera) {
|
||||
return (
|
||||
<div key={cam} className="aspect-video flex items-center">
|
||||
<div
|
||||
key={cam}
|
||||
className="aspect-video flex items-center we-[300px]"
|
||||
>
|
||||
<DynamicVideoPlayer
|
||||
className="size-full"
|
||||
camera={cam}
|
||||
@ -220,10 +220,14 @@ export function DesktopRecordingView({
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
return null;
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="absolute overflow-hidden w-56 inset-y-0 right-0">
|
||||
<div className="w-[55px] md:w-[100px] mt-2 overflow-y-auto no-scrollbar">
|
||||
{severity != "significant_motion" ? (
|
||||
<EventReviewTimeline
|
||||
segmentDuration={30}
|
||||
@ -256,6 +260,7 @@ export function DesktopRecordingView({
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user