-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
43 lines (31 loc) · 1.29 KB
/
main.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
const form = document.querySelector('#form-wrapper')
form.addEventListener("change", save)
function adicionarFilme() {
const imagem = document.querySelector("#filme").value;
const trailer = document.querySelector("#trailer").value;
const titulo = document.querySelector("#titulo").value;
const listaFilmes = document.querySelector("#listaFilmes");
const novoFilme = document.createElement("a");
novoFilme.href = trailer;
novoFilme.target = "_blank";
const novaImagem = document.createElement("img");
novaImagem.src = imagem;
const novoTitulo = document.createElement("p");
novoTitulo.innerHTML = titulo;
novoFilme.appendChild(novaImagem);
novoFilme.appendChild(novoTitulo);
listaFilmes.appendChild(novoFilme);
document.querySelector("#titulo").value = "";
document.querySelector("#filme").value = "";
document.querySelector("#trailer").value = "";
}
function removerFilmes() {
var elementoListaFilmes = document.getElementById('listaFilmes')
elementoListaFilmes.innerHTML = ''
}
function save() {
localStorage.setItem('JPFlix@alura', JSON.stringify(adicionarFilme))
}
const data = JSON.parse(localStorage.getItem("JPFlix@alura")) || {}
form.setData(data)
form.load()