-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
216 lines (169 loc) · 4.81 KB
/
index.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
const { prisma } = require("./generated/prisma-client");
const { request } = require("graphql-request");
// A `main` function so that we can use async/await
async function main() {
// Does this work?
// const hello_something = something => console.log("hello, " + something);
//hello_something("etel");
// TODO: Display all restaurants
// This is a QUERY
//const allRestaurants = await prisma.restaurants();
//console.log(allRestaurants);
//with a graphqlquery
const allRestaurantsDeepData = await prisma.$graphql(`
{
allRestaurantsDeep: restaurants {
name
bracketLocation
cuisine {
id
name
}
votes {
createdAt
id
}
}
}`);
const { allRestaurantsDeep } = allRestaurantsDeepData;
// // deconstructor
// const {restaurants} = allRestaurantsDeep
console.log(allRestaurantsDeep);
// for (var i = 0; i < allRestaurantsDeep.length; i++) {
// console.log(allRestaurantsDeep[i].votes.length);
// }
// allRestaurantsDeep.forEach(restaurant => {
// // template string
// const fn = () => "Hello World";
// console.log(`${restaurant.name} ${fn()} ${restaurant.votes.length}`);
// });
// const restaurantsOnRoids = allRestaurantsDeep.map(r => {
// r.voteCount = r.votes.length;
// return r;
// });
const restaurantsOnRoids = allRestaurantsDeep.map(r => {
return {
...r,
voteCount: r.votes.length
};
});
console.log(restaurantsOnRoids);
// TODO: Display votes for each restaurant
// This is a QUERY
const allRestaurantVotes = await prisma.restaurants().votes();
// console.log(allRestaurantVotes);
// TODO: Vote for a restaurant
// This is a MUTATION
/*
function vote(vote, token, name){return {
"voter: "la",
token: "hahaha",
restaurant: {
connect: {
name: "Mamay""}
const newVotes = await prisma.createVote({
voter: "la",
token: "hahaha",
restaurant: {
connect: {
name: "Mamay"
}
}
});
*/
// TODO: Order restaurants by vote
// 🤷🏼♀️
// TODO: Change ranking based on votes
// This is a MUTATION? 🧐
}
main().catch(e => console.error(e));
/*
/*
// Create a new user called `Alice`
const newUser = await prisma.createUser({ name: "Alice" });
console.log(`Created new user: ${newUser.name} (ID: ${newUser.id})`);
// Read all users from the database and print them to the console
const allUsers = await prisma.users();
console.log(allUsers);
*/
/*
await prisma.createRestaurant({
name: "rosegarden",
bracketLocation: 4,
cuisine: {
create: {
name: "generic"
}
}
});
var restaurantName, allRestaurants, allRestaurantNames;
const endpoint = `https://eu1.prisma.sh/beigeotter-539e45/foodbracket/dev`
const query = `query {
restaurants {
name
id
cuisine {
name
}
}
}`
const data = await request(endpoint, query)
dataStringified = JSON.stringify(data, undefined, 2);
//console.log(dataStringified)
//console.log(dataStringified["restaurants"]);
//console.log(data.restaurants[0].name);
wwcRestaurants = data.restaurants;
//console.log(wwcRestaurants);
//then need to loop through
//trying to display this on a page :)
async function wwcShowRestaurants(wwcRestaurants){
for (var i = 0; i < wwcRestaurants.length; i++){
console.log(wwcRestaurants[i].name);
}};
let listElement = document.getElementById("list");
console.log(listElement);
wwcShowRestaurants(wwcRestaurants);
//allRestaurantNames = [];
/*
allRestaurants = await prisma.restaurants();
function listRestaurants(allRestaurants) {
for (var i = 0; i < allRestaurants.length; i++) {
allRestaurantNames.push(allRestaurants[i].name);
//console.log(allRestaurants[i]);
}
}
async function showVotes(allRestaurantNames) {
for (var i = 0; i < allRestaurantNames.length; i++) {
const voteInfo = await prisma
.restaurant({ name: allRestaurantNames[i] })
.votes();
console.log(
allRestaurantNames[i] + " has " + voteInfo.length + " votes "
);
}
}
listRestaurants(allRestaurants);
console.log(allRestaurantNames);
showVotes(allRestaurantNames);
//const voteInfo = await prisma.restaurant({ name: restaurantName }).votes();
//console.log(allRestaurants);
//const allVotes = await prisma.votes();
//console.log(allVotes);
//console.log(allRestaurants);
console.log("hello");
*/
//ISLAND OF LOST TOYS CONTINUES BELOW
/*
const allRestaurantsArray = [];
//Make arrays for things
function makeArray(object, arrayName, loopOver) {
for (var i = 0; i < object.length; i++) {
console.log(loopOver);
arrayName.push(object[i].loopOver);
}
}
makeArray(allRestaurants, allRestaurantsArray, "id");
console.log(allRestaurantsArray);
//console.log(allRestaurants[0].id);
//console.log(allRestaurantVotes[0].votes.length);
*/