(feat): add avatars to call modals
Some checks failed
/ deploy (push) Has been cancelled

(feat): add fullscreen & popout buttons
(feat): remove clock icon from awaiting messages
(qol): update todos
This commit is contained in:
Alois 2026-05-09 14:36:19 +02:00
commit 30cf5ae3b9
14 changed files with 248 additions and 29 deletions

View file

@ -1,10 +1,28 @@
import { Card, CardContent, Button } from "@tensamin/ui";
import {
Card,
CardContent,
Button,
Tooltip,
TooltipContent,
TooltipTrigger,
} from "@tensamin/ui";
import MuteButton from "./buttons/mute";
import DeafButton from "./buttons/deaf";
import ScreenshareButton from "./buttons/screenshare";
import LeaveButton from "./buttons/leave";
import { stopWatchingFocusedStream, useCall } from "../store";
import {
setCallIsPopout,
stopWatchingFocusedStream,
triggerCallLayoutCalculation,
useCall,
} from "../store";
import InviteButton from "./buttons/invite";
import {
Maximize,
Minimize,
SquareArrowOutDownLeft,
SquareArrowOutUpRight,
} from "lucide-react";
export default function Actions() {
const sharedClasses = "w-14 h-10";
@ -19,8 +37,23 @@ export default function Actions() {
focusedParticipantId != null &&
watchedStreamParticipantIds.includes(focusedParticipantId);
const callIsPopout = useCall((state) => state.callIsPopout);
const callIsFullscreen = useCall((state) => state.callIsFullscreen);
const screenRef = useCall((state) => state.screenRef);
const toggleFullscreen = async () => {
if (callIsFullscreen) {
await document.exitFullscreen().catch(() => undefined);
} else {
await screenRef?.current?.requestFullscreen().catch(() => undefined);
}
triggerCallLayoutCalculation();
};
return (
<div className="w-full flex justify-center">
<div className="w-full flex justify-between items-center">
<div className="w-30" />
<Card className="p-1.75">
<CardContent className="p-0! flex gap-1.75">
<MuteButton className={sharedClasses} iconSize={sharedIconSize} />
@ -43,6 +76,46 @@ export default function Actions() {
)}
</CardContent>
</Card>
<div className="w-30 flex justify-end">
<Tooltip>
<TooltipTrigger
render={
<Button
onClick={() => setCallIsPopout(!callIsPopout)}
variant="link"
className="w-11 h-11 p-0! text-foreground"
>
{callIsPopout ? (
<SquareArrowOutDownLeft className="size-6" />
) : (
<SquareArrowOutUpRight className="size-6" />
)}
</Button>
}
/>
<TooltipContent>Popout</TooltipContent>
</Tooltip>
<Tooltip>
<TooltipTrigger
render={
<Button
onClick={() => {
void toggleFullscreen();
}}
variant="link"
className="w-11 h-11 p-0! mr-3 text-foreground"
>
{callIsFullscreen ? (
<Minimize className="size-6" />
) : (
<Maximize className="size-6" />
)}
</Button>
}
/>
<TooltipContent>Fullscreen</TooltipContent>
</Tooltip>
</div>
</div>
);
}

View file

@ -1,4 +1,7 @@
import {
Avatar,
AvatarFallback,
AvatarImage,
Button,
ContextMenu,
ContextMenuContent,
@ -13,7 +16,7 @@ import {
useCall,
} from "../../store";
import { Track, type Participant } from "livekit-client";
import { useEffect, useState } from "react";
import { useEffect, useRef, useState } from "react";
import { useUser, type User } from "@tensamin/user/context";
import VideoViewer from "../videoViewer";
import { HeadphoneOff, MicOff, Monitor, Plus, Shield } from "lucide-react";
@ -130,6 +133,9 @@ export default function Base({
};
}, [participant, get]);
// Avatar calc
const currentCard = useRef<HTMLDivElement>(null);
if (!participant || !user) {
return (
<div
@ -202,9 +208,11 @@ export default function Base({
</>
</div>
<div
ref={currentCard}
className={`z-10 bg-card absolute top-0 left-0 w-full h-full flex gap-2 items-center justify-center ${
flush ? "rounded-none" : "rounded-sm"
}`}
style={{ containerType: "size" }}
>
{/* Detect video / user and place here */}
@ -230,7 +238,23 @@ export default function Base({
</div>
) : null)}
{type === "user" && <p>{user.display}</p>}
{type === "user" && (
<Avatar
style={{
width: "32cqh",
height: "32cqh",
}}
>
<AvatarImage src={user.avatar} />
<AvatarFallback
style={{
fontSize: "11cqh",
}}
>
{user.display.slice(0, 2).toUpperCase()}
</AvatarFallback>
</Avatar>
)}
</div>
</div>
}