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
|
import React from 'react';
import {StyleSheet, View} from 'react-native';
import {useStore} from 'react-redux';
import {
AutoCompleteInput,
MessageInputProps,
useMessageInputContext,
} from 'stream-chat-react-native';
import {RootState} from '../../store/rootReducer';
import {
LocalAttachmentType,
LocalChannelType,
LocalCommandType,
LocalEventType,
LocalMessageType,
LocalReactionType,
LocalUserType,
} from '../../types';
import {normalize} from '../../utils';
import {Avatar} from '../common';
import {ChatInputSubmit} from '../messages';
const ChatInput: React.FC<
MessageInputProps<
LocalAttachmentType,
LocalChannelType,
LocalCommandType,
LocalEventType,
LocalMessageType,
LocalReactionType,
LocalUserType
>
> = () => {
const state: RootState = useStore().getState();
const avatar = state.user.avatar;
const {sendMessage, text} = useMessageInputContext();
// const {
// setSelectedImages,
// selectedImages,
// openPicker,
// } = useAttachmentPickerContext();
// const selectImage = () => {
// ImagePicker.openPicker({
// cropping: true,
// freeStyleCropEnabled: true,
// mediaType: 'photo',
// multiple: true,
// // includeBase64: true,
// })
// .then((pictures) => {
// pictures.map((pic) =>
// uploadNewImage({
// width: pic.width,
// height: pic.height,
// source: 'picker',
// uri: 'ph://' + pic.localIdentifier,
// }),
// );
// })
// .catch((error) => {
// console.log(error);
// });
// };
return (
<View style={styles.container}>
<View style={styles.textContainer}>
<Avatar style={styles.avatar} uri={avatar} />
<AutoCompleteInput />
<View style={styles.actionButtons}>
{/* TODO: Not working, toggled off for now */}
{/* <TouchableOpacity onPress={openPicker}> */}
{/* <TouchableOpacity onPress={selectImage}>
<Image
style={{width: normalize(23), height: normalize(23)}}
source={require('../../assets/images/camera.png')}
/>
</TouchableOpacity> */}
{/* <TouchableOpacity onPress={() => setText('/')}>
<Image
style={{width: normalize(23), height: normalize(23)}}
source={require('../../assets/images/gif.png')}
/>
</TouchableOpacity> */}
<ChatInputSubmit onPress={sendMessage} outlined={text.length === 0} />
</View>
</View>
</View>
);
};
const styles = StyleSheet.create({
container: {
alignItems: 'center',
width: '100%',
top: -10,
},
textContainer: {
width: '95%',
flexDirection: 'row',
backgroundColor: '#e8e8e8',
alignItems: 'center',
justifyContent: 'space-between',
margin: '3%',
borderRadius: 25,
},
text: {
flex: 1,
padding: '1%',
marginHorizontal: '1%',
},
avatar: {
height: normalize(30),
width: normalize(30),
borderRadius: 30,
marginRight: 10,
marginLeft: '3%',
marginVertical: 5,
alignSelf: 'flex-end',
},
whiteBackround: {
backgroundColor: '#fff',
},
actionButtons: {
height: normalize(30) + 10,
flexDirection: 'row',
justifyContent: 'flex-end',
alignItems: 'center',
marginRight: 10,
width: 50,
alignSelf: 'flex-end',
},
});
export default ChatInput;
|