forked from Thanasis1101/react-native-gif-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
executable file
·129 lines (118 loc) · 3.26 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
import React from 'react';
import {
Text,
View,
ScrollView,
StyleSheet,
Image,
} from 'react-native';
import {GifSearch, viaTenorLogoGrey, poweredByGiphyLogoGrey} from 'react-native-gif-search';
const GIPHY_API_KEY = 'NctafbvmG7x6Z1HyDVsd5gvB5SBf87ZE';
const DEVELOPMENT_MODE = false;
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
gif_url: null,
gif_provider: null,
gif_type: null
}
}
onGifSelected = (gif_url, gif_object) => {
this.setState({gif_url: gif_url, gif_provider: gif_object.provider, gif_type: gif_object.type})
}
onGifLongPress = (gif_url, gif_object) => {
alert(gif_url)
}
render() {
return (
<ScrollView style={styles.container} keyboardShouldPersistTaps={"handled"}>
<GifSearch
giphyApiKey={GIPHY_API_KEY}
provider={"all"}
gifsToLoad={10}
maxGifsToLoad={50}
style={{backgroundColor: '#9fd4ab'}}
textInputStyle={{color: 'black'}}
gifStyle={{height:160}}
loadingSpinnerColor={'black'}
placeholderTextColor={'grey'}
placeholderText={'Search Gifs from Tenor and Giphy'}
stickersPlaceholderText={'Search Stickers from Giphy'}
onGifSelected={this.onGifSelected}
onGifLongPress={this.onGifLongPress}
visible={true}
horizontal={true}
showScrollBar={false}
onError={(error) => {console.log(error)}}
noGifsFoundText={"No Gifs found :("}
noGifsFoundTextStyle={{fontWeight: 'bold'}}
textInputProps={{autoFocus: true}}
gifType={"all"}
previewGifQuality={"low"}
selectedGifQuality={"medium"}
/>
<View style={styles.gifPreview}>
{this.state.gif_url ?
(
<View>
<Text style={{textAlign:'center', fontSize: 20}}>Selected {this.state.gif_type}:</Text>
<View style={styles.gifContainer}>
<Image
style={styles.gif}
source={{ uri: this.state.gif_url}}
/>
{!DEVELOPMENT_MODE ?
(
<Image
source={this.state.gif_provider == "tenor" ? (viaTenorLogoGrey) : (poweredByGiphyLogoGrey)}
style={styles.providerLogo}
/>
)
:
(null)
}
</View>
</View>
)
:
(null)
}
</View>
</ScrollView>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
gifPreview: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
marginTop: 20,
},
gifContainer: {
width: 280,
height: 240,
justifyContent: 'center',
alignItems: 'center',
borderRadius: 5,
borderWidth: 2,
marginVertical: 10
},
gif: {
width: 250,
height: 180,
borderRadius: 25,
resizeMode: 'contain',
},
providerLogo: {
width: 190,
height:15,
resizeMode: 'contain',
marginTop: 13,
marginBottom: 2
}
});