-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.js
145 lines (133 loc) · 4.65 KB
/
App.js
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
import React from 'react';
import {View, Text, Pla, TouchableOpacity} from 'react-native';
import ImagePicker from "react-native-image-picker";
import {GiftedChat} from "react-native-gifted-chat-video-support";
const uuidv4 = require('uuid/v4');
export default class App extends React.Component {
constructor(state) {
super(state);
this.state = {
item:undefined,
image:'',
video:'',
messages: []
}
}
chooseImage() {
const options = {
title: null,
takePhotoButtonTitle: "Take photo",
chooseFromLibraryButtonTitle: "Choose from library",
cancelButtonTitle: "cancel",
cameraType: 'front',
mediaType: 'photo',
aspectX: 1,
aspectY: 1,
quality: 1.0,
};
ImagePicker.showImagePicker(options, (response) => {
console.log('Response = ', response);
if (response.didCancel) {
console.log('User cancelled image picker');
} else if (response.error) {
console.log('ImagePicker Error: ', response.error);
} else if (response.customButton) {
if (response.customButton === 'remove') {
console.log('User tapped custom button: ', response.customButton);
this.setState({ Images: undefined });
}
} else {
const source = { uri: response.uri };
let msg = {
_id: uuidv4(),
createdAt: new Date(),
user: {
_id: 1,
name: "test",
},
image: source.uri,
}
this.onSend(msg)
}
});
}
chooseVideo() {
console.log("choose vids called ");
const options = {
title: null,
takePhotoButtonTitle: "Take video",
chooseFromLibraryButtonTitle: "choose video",
cancelButtonTitle: "cancel",
cameraType: 'front',
mediaType: 'video',
videoQuality:'medium',
aspectX: 1,
aspectY: 1,
allowsEditing: true,
quality: 1.0,
};
ImagePicker.showImagePicker(options, (response) => {
console.log('Response = ', response);
if (response.didCancel) {
console.log('User cancelled video picker');
} else if (response.error) {
console.log('ImagePicker Error: ', response.error);
} else if (response.customButton) {
if (response.customButton === 'remove') {
console.log('User tapped custom button: ', response.customButton);
this.setState({ Vids: undefined });
}
} else {
const source = { uri: response.uri };
let msg = {
_id: uuidv4(),
createdAt: new Date(),
user: {
_id: 1,
name: "test",
},
video: source.uri,
}
this.onSend(msg)
}
});
}
renderLeftIcon = () =>{
return(
<View style={{ height:'100%',alignItems:'center' , justifyContent:'flex-start' , flexDirection:'row' , paddingLeft:5,paddingRight: 5}}>
<TouchableOpacity onPress={this.chooseVideo.bind(this)} >
<Text>Video</Text>
</TouchableOpacity>
<TouchableOpacity onPress={this.chooseImage.bind(this)} >
<Text>Image</Text>
</TouchableOpacity>
</View>
);
}
onSend(messages = []) {
this.setState(previousState => ({
messages: GiftedChat.append(previousState.messages, messages),
}))
}
render() {
return (
<View style={{
flex: 1,
flexDirection: 'column',
backgroundColor: '#fff',
}}>
<GiftedChat
messages={this.state.messages}
alwaysShowSend
isAnimated
renderActions={this.renderLeftIcon}
showAvatarForEveryMessage
onSend={messages => this.onSend(messages)}
user={{
_id: 1,
}}
/>
</View>
);
}
}