-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
135 lines (113 loc) · 3.4 KB
/
data.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
// import { StatusBar } from 'expo-status-bar';
// import { useState } from 'react';
// import { StyleSheet, Text, TouchableOpacity, View, TextInput } from 'react-native';
// import { useFetchDataQuery, useAddDataMutation } from './apiSlice';
// export default function Data() {
// const { data = [], isLoading, isError } = useFetchDataQuery();
// console.log('Fecth:', data)
// const [channel, setChannel] = useState('');
// const [event, setEvent] = useState('');
// const [message, setMessage] = useState('');
// const handleChannelChange = (text) => {
// setChannel(text);
// }
// const handleEventChange = (text) => {
// setEvent(text);
// }
// const handleMessageChange = (text) => {
// setMessage(text);
// }
// const [ addData ] = useAddDataMutation();
// const HandleAddClick = () => {
// const data = {
// meli: {
// channel: channel,
// event: event,
// send_message: message
// }
// };
// addData(data)
// };
// return (
// <View style={styles.container}>
// <Text style={styles.heading}>Data Table</Text>
// <View style={styles.formContainer}>
// <Text style={styles.label}>Channel</Text>
// <TextInput style={styles.input} placeholder='Enter Channel' value={channel} onChangeText={handleChannelChange}></TextInput>
// <Text style={styles.label}>Event</Text>
// <TextInput style={styles.input} placeholder='Enter Event' value={event} onChangeText={handleEventChange}></TextInput>
// <Text style={styles.label}>Message</Text>
// <TextInput style={styles.input} placeholder='Enter Message' value={message} onChangeText={handleMessageChange}></TextInput>
// <TouchableOpacity style={styles.button} onPress={HandleAddClick}>
// <Text style={styles.buttonText}>Add</Text>
// </TouchableOpacity>
// </View>
// <>
// {isLoading && <Text>Loading...</Text>}
// {isError && <Text>Error</Text>}
// {!isLoading && !isError && (
// <View>
// {data.data.map((item) => (
// <View key={item.id}>
// <Text>{item.channel}</Text>
// <Text>{item.event}</Text>
// <Text>{item.send_message}</Text>
// </View>
// ))}
// </View>
// )}
// </>
// <StatusBar style="auto" />
// </View>
// );
// }
// const styles = StyleSheet.create({
// container: {
// flex: 1,
// backgroundColor: '#fff',
// alignItems: 'center',
// justifyContent: 'center',
// paddingTop: 50,
// paddingHorizontal: 20
// },
// heading: {
// fontSize: 24,
// fontWeight: 'bold'
// },
// formContainer: {
// marginTop: 20,
// },
// label: {
// fontSize: 16,
// fontWeight: 'bold',
// borderColor: '#ccc',
// borderRadius: 5,
// padding: 10,
// marginBottom: 10
// },
// input: {
// borderWidth: 1,
// borderColor: '#ccc',
// padding: 10,
// borderRadius: 5,
// marginBottom: 10
// },
// button: {
// backgroundColor: '#007AAF',
// padding: 10,
// borderRadius: 5,
// alignItems: 'center'
// },
// buttonText: {
// color: '#fff',
// fontSize: 16,
// fontWeight: 'bold'
// },
// fetchButton: {
// backgroundColor: '#007AAF',
// padding: 10,
// borderRadius: 5,
// marginTop: 20,
// alignItems: 'center'
// },
// })