forked from Frombolas/DesafioLoopis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
154 lines (127 loc) · 4.21 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
const todoForm = document.querySelector("#todo-form");
const todoName = document.querySelector("#todo-name");
const todoDescription = document.querySelector("#todo-description");
const todoFavorite = document.querySelector("#favorite");
const todoNotFavorite = document.querySelector("#not-favorite");
const fatherButtons = document.querySelector('.father-buttons');
const cards = document.querySelector('.card');
let lista = [];
let favorito = false;
const getValues = () => {
const listInMemory = JSON.parse(window.localStorage.getItem("jogos"));
if (Array.isArray(listInMemory)) {
const favoritos = [];
const naoFavoritos = [];
let listaJogos = [];
listInMemory.map((value)=> {
if(value.favorito){
favoritos.push(value);
}else {
naoFavoritos.push(value);
}
})
listaJogos = [...favoritos,...naoFavoritos];
lista = [...listInMemory];
}
}
const saveValues = () => {
const favoritos = [];
const naoFavoritos = [];
let listaJogos = [];
lista.map((value)=> {
if(value.favorito){
favoritos.push(value);
}else {
naoFavoritos.push(value);
}
})
listaJogos = [...favoritos,...naoFavoritos];
window.localStorage.setItem("jogos", JSON.stringify(listaJogos));
console.log(listaJogos);
}
fatherButtons.addEventListener('change', function (event) {
if (event.target.type === 'radio') {
const valorSelecionado = event.target.value;
favorito = valorSelecionado == "sim" ? true:false;
console.log(favorito);
}
});
function createGameCard(jogo, index) {
const cardHTML = `
<div class="${jogo.favorito ? "jogofav":"lista"}">
<div>
<div class="infogames">
<div class="figurejoistick">
<img src="./imagens/joystick-svgrepo-com 1.png" alt="joystick-svgrepo-com">
</div>
<div class="todo">
<h2>${jogo.nome}</h2>
<p>${jogo.descricao}</p>
</div>
</div>
</div>
<div>
<div class="lixeira">
<button class="remove-todo" type="button" style="background-color:#10086A; all:unset; onclick ="removeGame(this)>
<img src="./imagens/trash.png" alt="lixeira" class = "imgLixeira" onclick = "deletarClick(${index})" ></button>
</div>
<div class="favoritIcon">
<button class="favorict-todo" type="button" style="background-color:#10086A; all:unset;">
<img src="${jogo.favorito ? './imagens/Estrela-preenchida.png' : './imagens/estrela_vazia.png'}" class="imgEstrela" alt="estrela"
onclick = "atualizarClickFavoritos(${index})" ></button>
</div>
</div>
</div>
`;
return cardHTML;
}
function renderGameCards() {
const cardsContainer = document.querySelector('.roll');
// Limpa os cards existentes
cardsContainer.innerHTML = '';
// Percorre a lista de jogos e cria um card para cada um
lista.forEach((jogo, index) => {
const card = createGameCard(jogo, index);
cardsContainer.insertAdjacentHTML('beforeend', card);
});
}
const submit = () => {
const nome = todoName.value;
const descricao = todoDescription.value;
const jogo = { nome, descricao, favorito};
lista.push(jogo);
console.log(lista);
todoName.value = '';
todoDescription.value = '';
favorito = false;
saveValues();
getValues();
renderGameCards();
cards.innerHTML = 'teste'
}
getValues();
renderGameCards();
function atualizarClickFavoritos(index){
const jogoClick = lista[index];
lista[index].favorito = jogoClick.favorito ? false : true
const favoritos = [];
const naoFavoritos = [];
let listaJogos = [];
lista.map((value)=> {
if(value.favorito){
favoritos.push(value);
}else {
naoFavoritos.push(value);
}
})
listaJogos = [...favoritos,...naoFavoritos];
lista.length = 0;
lista = [...listaJogos]
saveValues();
renderGameCards();
}
function deletarClick(index){
lista.splice(index,1);
saveValues();
renderGameCards();
}