generated from savvy-coders/savvy-spa-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
151 lines (136 loc) · 5.25 KB
/
index.js
File metadata and controls
151 lines (136 loc) · 5.25 KB
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
import { header, nav, main, footer } from "./components";
import * as store from "./store";
import Navigo from "navigo";
import { camelCase } from "lodash";
import { viewNotFound } from "./views";
import links from "./store/links";
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();
}
router.hooks({
// We pass in the `done` function to the before hook handler to allow the function to tell Navigo we are finished with the before hook.
// The `match` parameter is the data that is passed from Navigo to the before hook handler with details about the route being accessed.
// https://github.com/krasimir/navigo/blob/master/DOCUMENTATION.md#match
before: (done, match) => {
// We need to know what view we are on to know what data to fetch
const view = match?.data?.view ? camelCase(match.data.view) : "home";
// Add a switch case statement to handle multiple routes
switch (view) {
// Add a case for each view that needs data from an API
case "home":
axios
.get(
`https://api.openweathermap.org/data/2.5/weather?appid=${process.env.OPEN_WEATHER_MAP_API_KEY}&q=st%20louis&units=imperial`
)
.then((response) => {
console.log("Weather Response Data", response.data);
store.home.weather = {
city: response.data.name,
temp: response.data.main.temp,
feelsLike: response.data.main.feels_like,
description: response.data.weather[0].main,
};
done();
})
.catch((error) => {
console.log("It puked", error);
done();
});
break;
case "pizza":
// New Axios get request utilizing already made environment variable
axios
.get(`${process.env.PIZZA_PLACE_API_URL}/pizzas`)
.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);
store.pizza.pizzas = response.data;
done();
})
.catch(error => {
console.log("It puked", error);
done();
});
break;
default:
// We must call done for all views so we include default for the views that don't have cases above.
done();
// break is not needed since it is the last condition, if you move default higher in the stack then you should add the break statement.
}
},
already: (match) => {
const view = match?.data?.view ? camelCase(match.data.view) : "home";
render(store[view]);
},
after: (match) => {
const view = match?.data?.view ? camelCase(match.data.view) : "home";
if (view === "order") {
// 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 toppings = [];
// Iterate over the toppings array
for (let input of inputList.toppings) {
// If the value of the checked attribute is true then add the value to the toppings array
if (input.checked) {
toppings.push(input.value);
}
}
// Create a request body object to send to the API
const requestData = {
customer: inputList.customer.value,
crust: inputList.crust.value,
cheese: inputList.cheese.value,
sauce: inputList.sauce.value,
toppings: toppings,
};
// 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.PIZZA_PLACE_API_URL}/pizzas`, requestData)
.then((response) => {
// Then push the new pizza onto the Pizza state pizzas attribute, so it can be displayed in the pizza list
store.pizza.pizzas.push(response.data);
router.navigate("/pizza");
})
// If there is an error log it to the console
.catch((error) => {
console.log("It puked", error);
});
});
}
router.updatePageLinks();
// add menu toggle to bars icon in nav bar
document.querySelector(".fa-bars").addEventListener("click", () => {
document.querySelector("nav > ul").classList.toggle("hidden--mobile");
});
},
});
// router.on("/", () => render(store.home)).resolve();
router
.on({
"/": () => render(store.home),
":view": (match) => {
const view = match?.data?.view ? camelCase(match.data.view) : "home";
if (view in store) {
render(store[view]);
} else {
render(store.viewNotFound);
console.log(`View Not Found ${view}`);
}
},
})
.resolve();