-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
100 lines (88 loc) · 2.13 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
import React from "react"
import { StyleSheet, Text, View, TextInput, TouchableOpacity } from "react-native"
import Amplify, { API, graphqlOperation } from "aws-amplify"
import config from "./aws-exports"
import { createTodo } from "./src/graphql/mutations"
import { listTodos } from "./src/graphql/queries"
Amplify.configure(config)
export default class App extends React.Component {
state = {
name: "",
todos: []
}
async componentDidMount() {
try {
const todos = await API.graphql(graphqlOperation(listTodos))
console.log("todos: ", todos)
this.setState({ todos: todos.data.listTodos.items })
} catch (err) {
console.log("error: ", err)
}
}
onChangeText = (key, val) => {
this.setState({ [key]: val })
}
addTodo = async event => {
const { name, todos } = this.state
event.preventDefault()
const input = {
name
}
const result = await API.graphql(graphqlOperation(createTodo, { input }))
const newTodo = result.data.createTodo
const updatedTodo = [newTodo, ...todos]
this.setState({ todos: updatedTodo, name: "" })
}
render() {
return (
<View style={styles.container}>
<TextInput
style={styles.input}
value={this.state.name}
onChangeText={val => this.onChangeText("name", val)}
placeholder='Add a Todo'
/>
<TouchableOpacity onPress={this.addTodo} style={styles.buttonContainer}>
<Text style={styles.buttonText}>Add +</Text>
</TouchableOpacity>
{this.state.todos.map((todo, index) => (
<View key={index} style={styles.todo}>
<Text style={styles.name}>{todo.name}</Text>
</View>
))}
</View>
)
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
paddingHorizontal: 10,
paddingTop: 50
},
input: {
height: 50,
borderBottomWidth: 2,
borderBottomColor: "blue",
marginVertical: 10
},
buttonContainer: {
backgroundColor: "#34495e",
marginTop: 10,
marginBottom: 10,
padding: 10,
borderRadius: 5,
alignItems: "center"
},
buttonText: {
color: "#fff",
fontSize: 24
},
todo: {
borderBottomWidth: 1,
borderBottomColor: "#ddd",
paddingVertical: 10
},
name: { fontSize: 16 }
})