File size: 4,633 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 |
"use client"
import * as React from "react"
import { cn } from "@/lib/utils"
import { ICameraVideoTrack, ILocalVideoTrack, IMicrophoneAudioTrack } from "agora-rtc-sdk-ng"
import { useAppSelector, useAppDispatch } from "@/common/hooks"
import { isVoiceGenderSupported, VideoSourceType } from "@/common/constant"
import { ITextItem, EMessageType, IChatItem } from "@/types"
import { rtcManager, IUserTracks, IRtcUser } from "@/manager"
import {
setRoomConnected,
addChatItem,
setVoiceType,
setOptions,
} from "@/store/reducers/global"
import AgentVoicePresetSelect from "@/components/Agent/VoicePresetSelect"
import AgentView from "@/components/Agent/View"
import MicrophoneBlock from "@/components/Agent/Microphone"
import CameraBlock from "@/components/Agent/Camera"
import VideoBlock from "@/components/Agent/Camera"
let hasInit: boolean = false
export default function RTCCard(props: { className?: string }) {
const { className } = props
const dispatch = useAppDispatch()
const options = useAppSelector((state) => state.global.options)
const voiceType = useAppSelector((state) => state.global.voiceType)
const selectedGraphId = useAppSelector((state) => state.global.graphName)
const { userId, channel } = options
const [videoTrack, setVideoTrack] = React.useState<ICameraVideoTrack>()
const [audioTrack, setAudioTrack] = React.useState<IMicrophoneAudioTrack>()
const [screenTrack, setScreenTrack] = React.useState<ILocalVideoTrack>()
const [remoteuser, setRemoteUser] = React.useState<IRtcUser>()
const [videoSourceType, setVideoSourceType] = React.useState<VideoSourceType>(VideoSourceType.CAMERA)
React.useEffect(() => {
if (!options.channel) {
return
}
if (hasInit) {
return
}
init()
return () => {
if (hasInit) {
destory()
}
}
}, [options.channel])
const init = async () => {
console.log("[rtc] init")
rtcManager.on("localTracksChanged", onLocalTracksChanged)
rtcManager.on("textChanged", onTextChanged)
rtcManager.on("remoteUserChanged", onRemoteUserChanged)
await rtcManager.createCameraTracks()
await rtcManager.createMicrophoneTracks()
await rtcManager.join({
channel,
userId,
})
dispatch(
setOptions({
...options,
appId: rtcManager.appId ?? "",
token: rtcManager.token ?? "",
}),
)
await rtcManager.publish()
dispatch(setRoomConnected(true))
hasInit = true
}
const destory = async () => {
console.log("[rtc] destory")
rtcManager.off("textChanged", onTextChanged)
rtcManager.off("localTracksChanged", onLocalTracksChanged)
rtcManager.off("remoteUserChanged", onRemoteUserChanged)
await rtcManager.destroy()
dispatch(setRoomConnected(false))
hasInit = false
}
const onRemoteUserChanged = (user: IRtcUser) => {
console.log("[rtc] onRemoteUserChanged", user)
setRemoteUser(user)
}
const onLocalTracksChanged = (tracks: IUserTracks) => {
console.log("[rtc] onLocalTracksChanged", tracks)
const { videoTrack, audioTrack, screenTrack } = tracks
setVideoTrack(videoTrack)
setScreenTrack(screenTrack)
if (audioTrack) {
setAudioTrack(audioTrack)
}
}
const onTextChanged = (text: IChatItem) => {
console.log("[rtc] onTextChanged", text)
dispatch(
addChatItem(text),
)
}
const onVoiceChange = (value: any) => {
dispatch(setVoiceType(value))
}
const onVideoSourceTypeChange = async (value: VideoSourceType) => {
await rtcManager.switchVideoSource(value)
setVideoSourceType(value)
}
return (
<>
<div className={cn("flex-shrink-0", "overflow-y-auto", className)}>
<div className="flex h-full w-full flex-col">
{/* -- Agent */}
<div className="w-full">
<div className="flex w-full items-center justify-between p-2">
<h2 className="mb-2 text-xl font-semibold">Audio & Video</h2>
{
isVoiceGenderSupported(selectedGraphId) ?
<AgentVoicePresetSelect /> :
null}
</div>
<AgentView audioTrack={remoteuser?.audioTrack} />
</div>
{/* -- You */}
<div className="w-full space-y-2 px-2">
<MicrophoneBlock audioTrack={audioTrack} />
<VideoBlock
cameraTrack={videoTrack}
screenTrack={screenTrack}
videoSourceType={videoSourceType}
onVideoSourceChange={onVideoSourceTypeChange}
/>
</div>
</div>
</div>
</>
)
}
|