-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
170 lines (158 loc) · 6.06 KB
/
script.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
let FILTRO_GENERO = "all";
const btnPesquisar = document.querySelector("#btn_pesquisar");
const btnAbreMenu = document.querySelector(".menu_abre");
const btnFechaMenu = document.querySelector(".menu_fecha");
const menu = document.querySelector(".menu");
const menuItens = document.querySelectorAll(".menu_item");
// busca e monta os jogos
fetch(
"https://api.rawg.io/api/games?key=f86230ad675a41239c7e3d45ec7fd4c0&tags=pixel-graphics"
)
.then((res) => res.json())
.then((data) => {
let str = "";
const results = data.results;
for (let i = 0; i < results.length; i++) {
const result = results[i];
str += `<div class="jogo">
<h3 class="jogo_titulo">${result.name}</h3>
<img width="230" height="157" src="${result.background_image}">
<p class="jogo_rating">Avaliação: ${result.rating}</p>
<p class="jogo_tag">Tag principal: ${result.genres[0].name}</p>
<a href="detalhes.html?category=games&id=${result.id}" class="jogo_mensagem">Mais detalhes...</a>
</div>`;
}
const jogos = document.querySelector(".jogos_main");
jogos.innerHTML = str;
});
// busca e monta as stores
fetch("https://api.rawg.io/api/stores?key=f86230ad675a41239c7e3d45ec7fd4c0")
.then((res) => res.json())
.then((data) => {
let str = "";
const results = data.results;
for (let i = 0; i < results.length; i++) {
const result = results[i];
str += `<div class="store">
<h3 class="store_titulo">${result.name}</h3>
<img class="store_imagem" src="${result.image_background}">
<h4 class="store_jogos-titulo">Link: <a class="store_link" href="http://${result.domain}">${result.name}</a></h4>
<a href="detalhes.html?category=stores&id=${result.id}" class="store_mensagem">Mais detalhes...</a>
</div>`;
}
const stores = document.querySelector(".stores_container");
stores.innerHTML = str;
});
// busca e monta as publishers
fetch("https://api.rawg.io/api/publishers?key=f86230ad675a41239c7e3d45ec7fd4c0")
.then((res) => res.json())
.then((data) => {
let str = "";
const results = data.results;
for (let i = 0; i < results.length; i++) {
const result = results[i];
str += `<div class="publisher">
<h3 class="publisher_titulo">${result.name}</h3>
<img class="publisher_logo" src="${result.image_background}">
<h4 class="publisher_jogos-titulo">Principais jogos</h4>
<ul class="lista_jogos">
<li class="publisher_jogo">${result.games[0].name}</li>
<li class="publisher_jogo">${result.games[1].name}</li>
<li class="publisher_jogo">${result.games[2].name}</li>
</ul>
<a href="detalhes.html?category=publishers&id=${result.id}" class="publisher_mensagem">Mais detalhes...</a>
</div>`;
}
const publishers = document.querySelector(".publishers_container");
publishers.innerHTML = str;
});
// filtra jogos
function filtraJogos(genre) {
const jogos = document.querySelector(".jogos_main");
jogos.innerHTML = "";
fetch(
"https://api.rawg.io/api/games?key=f86230ad675a41239c7e3d45ec7fd4c0&tags=pixel-graphics"
)
.then((res) => res.json())
.then((data) => {
let str = "";
const results = data.results;
for (let i = 0; i < results.length; i++) {
const result = results[i];
let genreJogo = result.genres.findIndex((elem) => elem.slug == genre);
if (genreJogo != -1) {
str += `<div class="jogo">
<h3 class="jogo_titulo">${result.name}</h3>
<img width="230" height="157" src="${result.background_image}">
<p class="jogo_rating">Avaliação: ${result.rating}</p>
<a href="#" class="jogo_mensagem">Mais detalhes...</a>
</div>`;
} else if (genre == "all") {
str += `<div class="jogo">
<h3 class="jogo_titulo">${result.name}</h3>
<img width="230" height="157" src="${result.background_image}">
<p class="jogo_rating">Avaliação: ${result.rating}</p>
<p class="jogo_tag">Tag principal: ${result.genres[0].name}</p>
<a href="detalhes.html?category=games&id=${result.id}" class="jogo_mensagem">Mais detalhes...</a>
</div>`;
}
}
if (str == "") {
str = `<h1 class="jogo_vazio">NENHUM JOGO ENCONTRADO</h1>`;
}
const jogos = document.querySelector(".jogos_main");
jogos.innerHTML = str;
});
}
// pesquisa jogos
btnPesquisar.addEventListener("click", (e) => {
const cxPesquisa = document.querySelector(".pesquisa");
fetch(
"https://api.rawg.io/api/games?key=f86230ad675a41239c7e3d45ec7fd4c0&search=" +
cxPesquisa.value
)
.then((res) => res.json())
.then((data) => {
let str = "";
const results = data.results;
for (let i = 0; i < results.length; i++) {
const result = results[i];
str += `<div class="jogo">
<h3 class="jogo_titulo">${result.name}</h3>
<img width="230" height="157" src="${result.background_image}">
<p class="jogo_rating">Avaliação: ${result.rating}</p>
<p class="jogo_tag">Data de lançamento: ${result.released}</p>
<a href="detalhes.html?category=games&id=${result.id}" class="jogo_mensagem">Mais detalhes...</a>
</div>`;
}
const jogos = document.querySelector(".jogos_main");
jogos.innerHTML = str;
});
});
// dinâmica de menu mobile
if (window.screen.width < 768) {
btnAbreMenu.addEventListener("click", (e) => {
btnFechaMenu.style.display = "initial";
menu.style.display = "flex";
btnAbreMenu.style.display = "none";
});
btnFechaMenu.addEventListener("click", (e) => {
btnFechaMenu.style.display = "none";
menu.style.display = "none";
btnAbreMenu.style.display = "initial";
});
menuItens.forEach((item) => {
item.addEventListener("click", (e) => {
btnFechaMenu.style.display = "none";
menu.style.display = "none";
btnAbreMenu.style.display = "initial";
});
});
}
document.body.onload = () => {
let filtro = document.querySelector("#genero");
filtro.addEventListener("change", (e) => {
FILTRO_GENERO = filtro.value;
filtraJogos(FILTRO_GENERO);
});
};