File size: 5,012 Bytes
87337b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
"use client"
import * as React from "react"
// import CamSelect from "./camSelect"
import { CamIconByStatus } from "@/components/Icon"
import AgoraRTC, { ICameraVideoTrack, ILocalVideoTrack } from "agora-rtc-sdk-ng"
// import { LocalStreamPlayer } from "../streamPlayer"
// import { useSmallScreen } from "@/common"
import {
DeviceSelect,
} from "@/components/Agent/Microphone"
import { Button } from "@/components/ui/button"
import { LocalStreamPlayer } from "@/components/Agent/StreamPlayer"
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "../ui/select"
import { VIDEO_SOURCE_OPTIONS, VideoSourceType } from "@/common"
import { MonitorIcon, MonitorXIcon } from "lucide-react"
export const ScreenIconByStatus = (
props: React.SVGProps<SVGSVGElement> & { active?: boolean; color?: string },
) => {
const { active, color, ...rest } = props
if (active) {
return <MonitorIcon color={color || "#3D53F5"} {...rest} />
}
return <MonitorXIcon color={color || "#667085"} {...rest} />
}
export function VideoDeviceWrapper(props: {
children: React.ReactNode
title: string
Icon: (
props: React.SVGProps<SVGSVGElement> & { active?: boolean },
) => React.ReactNode
onIconClick: () => void
videoSourceType: VideoSourceType
onVideoSourceChange: (value: VideoSourceType) => void
isActive: boolean
select?: React.ReactNode
}) {
const { Icon, onIconClick, isActive, select, children, onVideoSourceChange, videoSourceType } = props
return (
<div className="flex flex-col">
<div className="flex items-center justify-between">
<div className="flex items-center gap-4">
<div className="text-sm font-medium">{props.title}</div>
<div className="w-[150px]">
<Select value={videoSourceType} onValueChange={onVideoSourceChange}>
<SelectTrigger>
<SelectValue />
</SelectTrigger>
<SelectContent>
{VIDEO_SOURCE_OPTIONS.map((item) => (
<SelectItem key={item.value} value={item.value}>
{item.label}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
</div>
<div className="flex items-center gap-2">
<Button
variant="outline"
size="icon"
className="border-secondary bg-transparent"
onClick={onIconClick}
>
<Icon className="h-5 w-5" active={isActive} />
</Button>
{select}
</div>
</div>
{children}
</div>
)
}
export default function VideoBlock(props: {
videoSourceType:VideoSourceType,
onVideoSourceChange:(value: VideoSourceType) => void,
cameraTrack?: ICameraVideoTrack,
screenTrack?: ILocalVideoTrack
}) {
const { videoSourceType, cameraTrack, screenTrack, onVideoSourceChange } = props
const [videoMute, setVideoMute] = React.useState(false)
React.useEffect(() => {
cameraTrack?.setMuted(videoMute)
screenTrack?.setMuted(videoMute)
}, [cameraTrack, screenTrack, videoMute])
const onClickMute = () => {
setVideoMute(!videoMute)
}
return (
<VideoDeviceWrapper
title="VIDEO"
Icon={videoSourceType === VideoSourceType.CAMERA ? CamIconByStatus : ScreenIconByStatus}
onIconClick={onClickMute}
isActive={!videoMute}
videoSourceType={videoSourceType}
onVideoSourceChange={onVideoSourceChange}
select={videoSourceType === VideoSourceType.CAMERA ? <CamSelect videoTrack={cameraTrack} /> : <div className="w-[180px]" />}
>
<div className="my-3 h-60 w-full overflow-hidden rounded-lg">
<LocalStreamPlayer videoTrack={videoSourceType === VideoSourceType.CAMERA ? cameraTrack : screenTrack} />
</div>
</VideoDeviceWrapper>
)
}
interface SelectItem {
label: string
value: string
deviceId: string
}
const DEFAULT_ITEM: SelectItem = {
label: "Default",
value: "default",
deviceId: "",
}
const CamSelect = (props: { videoTrack?: ICameraVideoTrack }) => {
const { videoTrack } = props
const [items, setItems] = React.useState<SelectItem[]>([DEFAULT_ITEM])
const [value, setValue] = React.useState("default")
React.useEffect(() => {
if (videoTrack) {
const label = videoTrack?.getTrackLabel()
setValue(label)
AgoraRTC.getCameras().then((arr) => {
setItems(
arr.map((item) => ({
label: item.label,
value: item.label,
deviceId: item.deviceId,
})),
)
})
}
}, [videoTrack])
const onChange = async (value: string) => {
const target = items.find((item) => item.value === value)
if (target) {
setValue(target.value)
if (videoTrack) {
await videoTrack.setDevice(target.deviceId)
}
}
}
return (
<DeviceSelect
items={items}
value={value}
onChange={onChange}
placeholder="Select a camera"
/>
)
}
|