-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.js
78 lines (68 loc) · 2.62 KB
/
index2.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
const listaTarefas = document.querySelector('#listaTarefas');
const caixaTexto = document.querySelector('#caixaDeTexto');
const botaoAdicionar = document.querySelector('#botaoAdicionar');
const listaSuspensa = document.querySelector('#listaSuspensa');
//LISTENER - SEMPRE QUE O BOTAO ADICIONAR FOR CLICADO
//ADICIONA UM ITEM OU UMA TAREFA A LISTA
botaoAdicionar.addEventListener('click',function(){
const textoDaTarefa = caixaTexto.value;
caixaTexto.value= '';
listaTarefas.appendChild(adicionaTarefa(textoDaTarefa));
exibeOcultaListaSuspensa();
caixaTexto.focus();
});
function adicionaTarefa(textoDaTarefa) {
const elementoLI = document.createElement('li');
const elementoSPAN = document.createElement('span');
elementoSPAN.setAttribute('id','tarefa');
elementoSPAN.textContent = textoDaTarefa;
elementoLI.className = 'naoRealizada';
elementoLI.appendChild(elementoSPAN);
elementoLI.appendChild(adicionaBotaoRemover());
//LISTENER - SEMPRE QUE UM ITEM DA LISTA FOR CLICADO
//ALTERA O MARCADOR, A COR DA FONTE E RISCA O TEXTO
elementoSPAN.addEventListener('click',function() {
if(this.id === 'tarefa') {
if(this.parentNode.className === 'naoRealizada') {
this.parentNode.className = 'realizada'
} else {
this.parentNode.className = 'naoRealizada'
}
}
});
return elementoLI;
}
function adicionaBotaoRemover (){
const botaoRemover = document.createElement('button');
botaoRemover.textContent = '✘';
botaoRemover.className = 'remover';
//LISTENER - SEMPRE QUE O BOTÃO REMOVER FOR CLICADO
//REMOVE UM ITEM DA LISTA
botaoRemover.addEventListener('click',function(){
listaTarefas.removeChild(this.parentNode);
exibeOcultaListaSuspensa();
}
);
return botaoRemover;
}
function exibeOcultaListaSuspensa () {
const elementoSPAN = document.querySelector('#tarefa');
if(elementoSPAN === null) {
listaSuspensa.setAttribute('hidden','hidden');
} else {
listaSuspensa.removeAttribute('hidden');
}
}
listaSuspensa.addEventListener('change', function(){
if(listaSuspensa.selectedIndex === 1 || listaSuspensa.selectedIndex === 2) {
const vetorTarefas = listaTarefas.querySelectorAll('#tarefa');
for(tarefa of vetorTarefas) {
tarefa.dispatchEvent(new Event('click'));
}
} else if(listaSuspensa.selectedIndex === 3) {
const vetorBotoes = listaTarefas.querySelectorAll('.remover');
for(botao of vetorBotoes) {
botao.dispatchEvent(new Event('click'));
}
}
});