forked from Galaxies-dev/meetings-react-native-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomCallControls.tsx
85 lines (79 loc) · 1.97 KB
/
CustomCallControls.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
import {
CallControlProps,
useCall,
HangUpCallButton,
ToggleAudioPublishingButton,
ToggleVideoPublishingButton,
ToggleCameraFaceButton,
ReactionsButton,
StreamReactionType,
} from '@stream-io/video-react-native-sdk';
import React from 'react';
import { View, StyleSheet, Button } from 'react-native';
import Colors from '../constants/Colors';
export const reactions: StreamReactionType[] = [
{
type: 'reaction',
emoji_code: ':smile:',
custom: {},
icon: '😊',
},
{
type: 'raised-hand',
emoji_code: ':raise-hand:',
custom: {},
icon: '✋',
},
{
type: 'reaction',
emoji_code: ':fireworks:',
custom: {},
icon: '🎉',
},
{
type: 'reaction',
emoji_code: ':like:',
custom: {},
icon: '😍',
},
];
// Custom View for the call controls and reactions
const CustomCallControls = (props: CallControlProps) => {
const call = useCall();
const onLike = () => {
const reaction = {
type: 'reaction',
emoji_code: ':like:',
custom: {},
icon: '😍',
};
call?.sendReaction(reaction);
};
return (
<View style={styles.customCallControlsContainer}>
<ToggleAudioPublishingButton onPressHandler={() => call?.microphone.toggle()} />
<ToggleVideoPublishingButton onPressHandler={() => call?.camera.toggle()} />
<ToggleCameraFaceButton onPressHandler={() => call?.camera.flip()} />
<HangUpCallButton onHangupCallHandler={props.onHangupCallHandler} />
<ReactionsButton supportedReactions={reactions} />
<Button onPress={onLike} title="Like!" color={Colors.secondary} />
</View>
);
};
const styles = StyleSheet.create({
customCallControlsContainer: {
position: 'absolute',
right: 0,
top: 160,
gap: 10,
marginHorizontal: 10,
paddingVertical: 10,
paddingHorizontal: 20,
backgroundColor: '#0333c17c',
borderRadius: 6,
borderColor: '#fff',
borderWidth: 2,
zIndex: 5,
},
});
export default CustomCallControls;