forked from Technigo/1-jun-practice-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
80 lines (65 loc) · 2.01 KB
/
Copy pathscript.js
File metadata and controls
80 lines (65 loc) · 2.01 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
console.log("JS file is connected to HTML!")
const starwarsCard = document.getElementById("starwars")
const rickandmortyCard = document.getElementById("rickandmorty")
const pokemonCard = document.getElementById("pokemon")
// Star Wars (codealong)
const getStarWars = async () => {
try {
const response = await fetch("https://swapi.dev/api/people/1/")
// const response = await fetch("https://swapi.info/api/people/1")
if (!response.ok) {
throw new Error(`Något gick fel: ${response.status}`)
}
const data = await response.json()
starwarsCard.innerHTML = `
<p>Character name: PLACEHOLDER</p>
`
} catch (error) {
starwarsCard.innerHTML = `
<p>Något gick fel, försök igen senare</p>
`
console.error(error)
}
}
// Practice: Använd getStarWars som mall för att hämta data från Rick and Morty API eller Pokémon API. Visa karaktärens namn och bild i respektive "card".
// Rick and Morty
const getRickAndMorty = async () => {
try {
const response = await fetch("https://rickandmortyapi.com/api/character/1")
if (!response.ok) {
throw new Error(`Något gick fel: ${response.status}`)
}
const data = await response.json()
rickandmortyCard.innerHTML = `
<p>Character name: PLACEHOLDER</p>
<img src="PLACEHOLDER">
`
} catch (error) {
rickandmortyCard.innerHTML = `
<p>Något gick fel, försök igen senare</p>
`
console.error(error)
}
}
// Pokémon
const getPokemon = async () => {
try {
const response = await fetch("https://pokeapi.co/api/v2/pokemon/1")
if (!response.ok) {
throw new Error(`Något gick fel: ${response.status}`)
}
const data = await response.json()
pokemonCard.innerHTML = `
<p>Character name: PLACEHOLDER</p>
<img src="PLACEHOLDER">
`
} catch (error) {
pokemonCard.innerHTML = `
<p>Något gick fel, försök igen senare</p>
`
console.error(error)
}
}
getStarWars()
getRickAndMorty()
getPokemon()