-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
134 lines (127 loc) · 3.54 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
import react, { useEffect, useState, useRef } from "react";
import {
StyleSheet,
Text,
View,
FlatList,
TouchableOpacity,
Dimensions,
TextInput,
} from "react-native";
import LottieView from "lottie-react-native";
import lottieList from "./lottie/lottieList";
const { width, height } = Dimensions.get("screen");
const lottieFetch = (link) => {
const lottieLink = fetch(link)
.then((response) => response.json())
.catch((err) => console.log(err));
return lottieLink;
};
export default function App() {
const [animation, setAnimation] = useState(require("./lottie/noel.json"));
const [current, setCurrent] = useState(true);
const [customLink, setCustomLink] = useState(null);
const lottieRef = useRef(null);
// useEffect(() => {
// lottieRef.current.play();
// }, []);
return (
<View style={styles.container}>
<LottieView
ref={lottieRef}
autoPlay
style={{
width: 400,
height: 400,
backgroundColor: "#eee",
}}
source={animation}
/>
<View style={{ width, alignItems: "center" }}>
<TouchableOpacity
onPress={() => {
if (current) {
setCurrent(!current);
lottieRef.current.pause();
} else {
setCurrent(!current);
lottieRef.current.play();
}
}}
>
<Text>{current ? "Pause" : "Play"}</Text>
</TouchableOpacity>
<View style={{ alignItems: "center", justifyContent: "center" }}>
<TextInput
placeholder="Custom Link"
style={{
paddingHorizontal: 10,
borderWidth: 0.5,
borderRadius: 10,
width: width - 10,
height: 25,
}}
onChangeText={(e) => setCustomLink(e)}
/>
<TouchableOpacity
disabled={customLink ? false : true}
onPress={() =>
lottieFetch(customLink).then((val) => setAnimation(val))
}
>
<Text>Animasyon ekle</Text>
</TouchableOpacity>
</View>
<FlatList
data={lottieList}
horizontal
style={{ width }}
pagingEnabled
keyExtractor={(item, index) => index}
renderItem={({ item, index }) => (
<View
key={index}
style={{
backgroundColor: item.selected ? "gray" : "#eee",
margin: 10,
borderRadius: 5,
borderWidth: 0.5,
alignItems: "center",
justifyContent: "center",
}}
>
<TouchableOpacity
onPress={() => {
setAnimation(item.source);
setCurrent(true);
for (let i = 0; i < lottieList.length; i++) {
lottieList[i].selected = false;
}
item.selected = true;
}}
>
<Text
style={{
paddingVertical: 5,
paddingHorizontal: 10,
color: item.selected ? "#eee" : "#000",
}}
>
{item.name}
</Text>
</TouchableOpacity>
</View>
)}
/>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#eee",
alignItems: "center",
justifyContent: "center",
},
});