-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppTest.js
230 lines (193 loc) · 5.73 KB
/
AppTest.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
import React, { useState, useEffect } from "react";
import { API, graphqlOperation } from "aws-amplify";
import {
createUser,
createDonation,
deleteDonation,
} from "./graphql/mutations";
import { listUsers, listDonations } from "./graphql/queries";
import Auth from "./Auth";
import Logout from "./Logout";
// Styles
import "./App.css";
import AddCharity from "./components/containers/Legacy/AddCharity";
import Charity from "./components/containers/Legacy/Charity";
require("dotenv").config();
function App() {
const [loggedIn, setLoggedIn] = useState(false);
const [creatingAccount, setCreatingAccount] = useState(false);
const [charities, setCharities] = useState([]);
const [formState, setFormState] = useState({
fullName: "",
handle: "",
token: "random-string-token-0123-456",
});
const [users, setUsers] = useState([]);
const [user, setUser] = useState(localStorage.user);
useEffect(() => {
fetchUser();
fetchDonations();
}, []);
const handleInputChange = (e) => {
const { name, value } = e.target;
setFormState({
...formState,
[name]: value,
});
};
// Fetching the user with our graphql query
const fetchUser = async () => {
try {
const userData = await API.graphql(graphqlOperation(listUsers));
console.log(userData.data.listUsers);
const users = userData.data.listUsers.items;
setUsers(users);
} catch (err) {
console.error(err);
}
};
// Adding a single user to our db
const addUser = async () => {
try {
if (!formState.fullName || !formState.handle) return; // making sure the inputs have values
const user = { ...formState };
setUsers([...users, user]);
setFormState({
...formState,
fullName: "",
handle: "",
});
setLoggedIn(true);
setCreatingAccount(false);
// Sending our newly created user to our createUser mutation
await API.graphql(graphqlOperation(createUser, { input: user }));
} catch (err) {
console.error(err);
}
};
// Adding a charity/donations to the db
const addCharity = async (charityObj) => {
try {
if (!charityObj.charity || !charityObj.amount) return; // making sure the inputs have values
setCharities(charities.concat([charityObj]));
const input = {
userID: users[0].id,
trigger: "TWEET",
initialAmount: parseFloat(charityObj.amount),
accumulatedAmount: 0.0,
numberOfCalls: 0,
limit: 0,
};
await API.graphql(graphqlOperation(createDonation, { input: input }));
} catch (err) {
console.error(err);
}
};
// NOT WORKING FOR ME
const deleteDonation = async (charityObj) => {
try {
if (!charityObj.charity || !charityObj.amount) return; // making sure the inputs have values
const input = {
userID: users[0].id,
trigger: "TWEET",
initialAmount: parseFloat(charityObj.amount),
accumulatedAmount: 0.0,
numberOfCalls: 0,
limit: 0,
};
console.log(input);
await API.graphql(
graphqlOperation(deleteDonation, {
input: { id: "6cc6c971-c0d2-4499-93aa-e99fa3d39d84" },
})
);
} catch (err) {
console.error(err);
}
};
// Fetching the donations with our graphql query
const fetchDonations = async () => {
try {
const donationData = await API.graphql(graphqlOperation(listDonations));
console.log(donationData.data.listDonations.items);
} catch (err) {
console.error(err);
}
};
function deleteCharity(index) {
let char = [];
for (var i = 0; i < charities.length; i++) {
if (i !== index) {
char.push(charities[i]);
}
}
setCharities(char);
}
return (
<div className="App">
<h1>if this, then donate</h1>
<h3>
Engagement on social media does matter: Make it matter more by
automating your donations based on social media hashtags and content.
</h3>
{user ? (
<Logout removeUser={() => setUser(null)} />
) : (
<Auth addUser={(x) => setUser(x)} />
)}
{!loggedIn && (
<div>
<div className="login" onClick={() => setLoggedIn(true)}>
Login To View and Control Your Donations
</div>
<div className="login" onClick={() => setCreatingAccount(true)}>
Create an Account
</div>
</div>
)}
{creatingAccount && (
<div>
<h2>Create user sample</h2>
<input
name="fullName"
value={formState.fullName}
onChange={(e) => handleInputChange(e)}
placeholder="Full name..."
/>
<input
name="handle"
value={formState.handle}
onChange={(e) => handleInputChange(e)}
placeholder="Handle..."
/>
<button onClick={() => addUser()}>Create user</button>
</div>
)}
{loggedIn && (
<div className="content-wrapper">
<div className="welcome-message">
<h2>
Welcome, {users[0].fullName} <br /> Here are your selected
hashtags, charities, and donation amounts.
</h2>
</div>
<div className="charities">
<Charity
index={-1}
item={{
charity: ["Charity Name"],
hashtag: "Hashtag",
amount: "Amount Raised",
}}
/>
{charities.map((item, index) => (
<Charity index={index} item={item} delete={deleteCharity} />
))}
<AddCharity addChar={addCharity} />
</div>
</div>
)}
</div>
);
}
export default App;