-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathclubhouse.tsx
127 lines (116 loc) · 3.76 KB
/
clubhouse.tsx
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
'use client';
import {
ControlBar,
LiveKitRoom,
RoomAudioRenderer,
RoomName,
TrackLoop,
TrackMutedIndicator,
useIsMuted,
useIsSpeaking,
useToken,
useTrackRefContext,
useTracks,
} from '@livekit/components-react';
import styles from '../styles/Clubhouse.module.scss';
import { Track } from 'livekit-client';
import { useMemo, useState } from 'react';
import { generateRandomUserId } from '../lib/helper';
const Clubhouse = () => {
const params = typeof window !== 'undefined' ? new URLSearchParams(location.search) : null;
const roomName = params?.get('room') ?? 'test-room';
const userIdentity = params?.get('user') ?? generateRandomUserId();
const token = useToken(process.env.NEXT_PUBLIC_LK_TOKEN_ENDPOINT, roomName, {
userInfo: {
identity: userIdentity,
name: userIdentity,
},
});
const [tryToConnect, setTryToConnect] = useState(false);
const [connected, setConnected] = useState(false);
return (
<div data-lk-theme="default" className={styles.container}>
<LiveKitRoom
token={token}
serverUrl={process.env.NEXT_PUBLIC_LK_SERVER_URL}
connect={tryToConnect}
video={false}
audio={true}
// simulateParticipants={15}
onConnected={() => setConnected(true)}
onDisconnected={() => {
setTryToConnect(false);
setConnected(false);
}}
>
<div style={{ display: 'grid', placeContent: 'center', height: '100%' }}>
<button
className="lk-button"
onClick={() => {
setTryToConnect(true);
}}
>
Enter Room
</button>
</div>
<div className={styles.slider} style={{ bottom: connected ? '0px' : '-100%' }}>
<h1>
<RoomName />
</h1>
<Stage />
<ControlBar
variation="minimal"
controls={{ microphone: true, camera: false, screenShare: false }}
/>
<RoomAudioRenderer />
</div>
</LiveKitRoom>
</div>
);
};
const Stage = () => {
const tracksReferences = useTracks([Track.Source.Microphone]);
return (
<div className="">
<div className={styles.stageGrid}>
<TrackLoop tracks={tracksReferences}>
<CustomParticipantTile></CustomParticipantTile>
</TrackLoop>
</div>
</div>
);
};
const CustomParticipantTile = () => {
const trackRef = useTrackRefContext();
const isSpeaking = useIsSpeaking(trackRef.participant);
const isMuted = useIsMuted(trackRef);
const id = useMemo(() => trackRef.participant.identity, [trackRef.participant.identity]);
return (
<section className={styles['participant-tile']} title={trackRef.participant.name}>
<div
// className={`rounded-full border-2 p-0.5 transition-colors duration-1000 ${
className={styles['avatar-container']}
style={{ borderColor: isSpeaking ? 'greenyellow' : 'transparent' }}
>
<div
className={styles.avatar}
// className="z-10 grid aspect-square items-center overflow-hidden rounded-full bg-beige transition-all will-change-transform"
>
<img
src={`https://avatars.dicebear.com/api/avataaars/${id}.svg?mouth=default,smile,tongue&eyes=default,happy,hearts&eyebrows=default,defaultNatural,flatNatural`}
className="fade-in"
width={150}
height={150}
alt={`Avatar of user: ${trackRef.participant.identity}`}
/>
</div>
</div>
<div style={{ opacity: isMuted ? 1 : 0 }} className={styles['mic-container']}>
<div>
<TrackMutedIndicator className={styles.mic} trackRef={trackRef}></TrackMutedIndicator>
</div>
</div>
</section>
);
};
export default Clubhouse;