generated from savvy-coders/savvy-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
219 lines (192 loc) · 7.13 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
217
218
219
import { Header, Nav, Main, Footer } from "./components";
import * as store from "./store";
import Navigo from "navigo";
import { capitalize } from "lodash";
import axios from "axios";
const router = new Navigo("/");
function render(state = store.Home) {
document.querySelector("#root").innerHTML = `
${Header(state)}
${Nav(store.Links)}
${Main(state)}
${Footer()}
`;
router.updatePageLinks();
afterRender(state);
}
function afterRender(state) {
// add menu toggle to bars icon in nav bar
document.querySelector(".fa-bars").addEventListener("click", () => {
document.querySelector("nav > ul").classList.toggle("hidden--mobile");
});
if (state.view === "Ordersubmission") {
// Add an event handler for the submit button on the form
document.querySelector("form").addEventListener("submit", event => {
event.preventDefault();
// Get the form element
const inputList = event.target.elements;
// console.log("Input Element List", inputList);
// Create an empty array to hold the toppings
const customizations = [];
// // Iterate over the toppings array
for (let input of inputList.customizations) {
// If the value of the checked attribute is true then add the value to the toppings array
if (input.checked) {
customizations.push(input.value);
}
}
// Create a request body object to send to the API
const requestData = {
customer: inputList.customer.value,
bread: inputList.bread.value,
cheese: inputList.cheese.value,
protein: inputList.protein.value,
customizations: customizations,
name: inputList.name.value,
allergies: inputList.allergies.value,
notes: inputList.notes.value
};
// // Log the request body to the console
console.log("request Body", requestData);
axios
// Make a POST request to the API to create a new pizza
// .post(`${process.env.ORDER_UP_API_URL}/Ordersubmission?${column}=${filter}`)
// .then(response => {
.post(`${process.env.ORDER_UP_API_URL}/ordersubmission`, requestData)
.then(response => {
// Then push the new Ordersubmission onto the Ordersubmission state ordersubmission attribute, so it can be displayed in the Ordersubmission list
store.Ordersubmission.order = response.data;
router.navigate("/Ordersubmission");
})
// If there is an error log it to the console
.catch(error => {
console.log("Uh Oh!", error);
});
});
}
if (state.view === "History") {
// document
// // .getElementById("search-button")
// .addEventListener("click", event => {
// event.preventDefault();
// const column = document.getElementById("column").value;
// const filter = document.getElementById("filter").value;
// axios
// .get(
// `${process.env.ORDER_UP_API_URL}/Ordersubmission?${column}=${filter}`
// )
// // or .get(`${process.envORDER_UP_API_URL}/Ordersubmissions?${column}=${filter}`)
// .then(response => {
// // We need to store the response to the state, in the next step but in the meantime let's see what it looks like so that we know what to store from the response.
// store.History.ordersubmissions = response.data;
// router.navigate("/History");
// })
// .catch(error => {
// console.log("Uh oh!", error);
// });
// });
Array.from(document.getElementsByClassName("delete")).forEach(button => {
button.addEventListener("click", event => {
event.preventDefault();
const OrdersubmissionId = event.target.dataset.id;
const OrdersubmissionIndex = event.target.dataset.index;
if (
confirm(
`Are you sure you want to delete Ordersubmission ${OrdersubmissionId}?`
)
) {
axios
.delete(
`${process.env.ORDER_UP_API_URL}/Ordersubmission/${OrdersubmissionId}`
)
.then(response => {
// We need to store the response to the state, in the next step but in the meantime let's see what it looks like so that we know what to store from the response.
store.Ordersubmission.ordersubmissions.splice(
OrdersubmissionIndex,
1
);
router.navigate("/Ordersubmission");
})
.catch(error => {
console.log("Uh oh!", error);
});
}
});
});
}
}
router.hooks({
before: (done, params) => {
// We need to know what view we are on to know what data to fetch
// const view = params && params.data && params.data.view ? capitalize(params.data.view) : "Home";
let view = "Home";
if (params && params.data && params.data.view) {
view = capitalize(params.data.view);
}
// Add a switch case statement to handle multiple routes
switch (view) {
// Add a case for each view that needs data from an API
case "Ordersubmission":
// //above is referring to referencing view called ordersubmission
// // New Axios get request utilizing already made environment variable
axios
.get(`${process.env.ORDER_UP_API_URL}/ordersubmission`)
.then(response => {
// // We need to store the response to the state, in the next step but in the meantime let's see what it looks like so that we know what to store from the response.
console.log("response", response);
console.log("response data", response.data);
store.Ordersubmission.order = response.data;
done();
})
.catch(error => {
console.log("Uh oh!", error);
done();
});
break;
case "Holidays":
axios
.get(
`https://calendarific.com/api/v2/holidays?api_key=${process.env.CALENDERIFIC_API_KEY}&country=us&cn&gb&mx&year=2024&type=national`
)
.then(response => {
// We need to store the response to the state, in the next step but in the meantime let's see what it looks like so that we know what to store from the response.
console.log("response data", response.data);
store.Holidays.holidays = response.data.response.holidays;
done();
})
.catch(error => {
console.log("Uh oh!", error);
done();
});
break;
//case "Menu":
// Do stuff here
// done();
// break;
default:
done();
break;
}
},
already: params => {
const view =
params && params.data && params.data.view
? capitalize(params.data.view)
: "Home";
render(store[view]);
}
});
router
.on({
"/": () => render(),
":view": params => {
let view = capitalize(params.data.view);
if (view in store) {
render(store[view]);
} else {
render(store.Viewnotfound);
console.log(`View ${view} not defined`);
}
}
})
.resolve();