-
Notifications
You must be signed in to change notification settings - Fork 2
/
home.html
139 lines (125 loc) · 6.08 KB
/
home.html
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="home.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900&display=swap" rel="stylesheet">
</head>
<body>
<div id="cabecalho">
<div id="logo">
<img src="Ativo 1.png" alt="" href="home.html">
</div>
<div id="links">
<a href="home.html">Estoque</a>
<a href="dashboards.html">Dashboards</a>
<a href="sobreNos.html">Sobre Nós</a>
</div>
</div>
<div id="barraLaranja">
<div id="pesquisa">
<div id="boxSVG">
<?xml version="1.0" ?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg enable-background="new 0 0 139 139" height="139px" id="Find" version="1.1" viewBox="0 0 139 139" width="139px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M127.558,111.961L100.249,84.65c4.64-7.387,7.333-16.118,7.333-25.488c0-26.509-21.49-47.996-47.998-47.996 c-26.508,0-47.996,21.487-47.996,47.996c0,26.51,21.487,47.995,47.996,47.995c10.197,0,19.642-3.188,27.414-8.605l26.984,26.986 c1.875,1.873,4.333,2.806,6.788,2.806c2.458,0,4.913-0.933,6.791-2.806C131.308,121.787,131.308,115.711,127.558,111.961z M59.584,91.607c-17.917,0-32.443-14.525-32.443-32.443S41.667,26.72,59.584,26.72c17.918,0,32.443,14.526,32.443,32.444 S77.502,91.607,59.584,91.607z" />
</svg>
</div>
<input type="text" id="searchInput" placeholder="Pesquise pelo nome do produto">
</div>
<div id="Add">
<button> <a href="addProduto.html">Adicionar Produtos</a></button>
</div>
</div>
<div id="produtos">
<!-- Os novos cards serão adicionados aqui -->
</div>
<div id="rodape">
<h1> <span>© 2024 Estoque Plus.</span> All rights reserved.</h1>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
carregarProdutos();
// Adiciona ouvinte de eventos para o campo de busca
document.getElementById('searchInput').addEventListener('input', function () {
const query = this.value.trim().toLowerCase();
const cards = document.querySelectorAll('.card');
if (query === "") {
cards.forEach(card => card.style.display = 'block');
} else {
cards.forEach(card => {
const productName = card.querySelector('h1').textContent.toLowerCase();
if (productName === query) {
card.style.display = 'block';
} else {
card.style.display = 'none';
}
});
}
});
// Carrega os produtos do localStorage ao iniciar a página
function carregarProdutos() {
const produtos = JSON.parse(localStorage.getItem('produtos')) || [];
const produtosContainer = document.getElementById('produtos');
produtos.forEach(produto => {
const card = createCard(produto);
produtosContainer.appendChild(card);
});
adicionarEventosExcluir();
}
// Função para criar um card com base nos dados do produto
function createCard(produto) {
const card = document.createElement('div');
card.classList.add('card');
card.innerHTML = `
<div class="tudo">
<div class="infoImagemProduto">
<img src="${produto.foto}" alt="${produto.nome}">
<h1>${produto.nome}</h1>
</div>
<div class="preco">
<p>R$ <span>${produto.preco}</span>,00</p>
</div>
<div class="infosBasicas">
<h1>Quantidade: ${produto.quantidade}</h1>
<div class="dados">
<h1>Validade: ${produto.validade}</h1>
<h1>Inserção: ${produto.insercao}</h1>
</div>
</div>
<div class="editarProduto">
<a href="#" class="excluir-link">Excluir</a>
</div>
</div>
`;
return card;
}
// Adiciona evento de exclusão aos links "Excluir"
function adicionarEventosExcluir() {
document.querySelectorAll('.excluir-link').forEach(link => {
link.addEventListener('click', function (event) {
event.preventDefault();
const card = this.closest('.card');
if (card) {
card.remove(); // Remove o card do DOM
// Remove o produto do armazenamento local (localStorage)
const nomeProduto = card.querySelector('h1').textContent;
removerProdutoLocalStorage(nomeProduto);
}
});
});
}
// Remove produto do localStorage
function removerProdutoLocalStorage(nomeProduto) {
const produtos = JSON.parse(localStorage.getItem('produtos')) || [];
const novosProdutos = produtos.filter(produto => produto.nome !== nomeProduto);
localStorage.setItem('produtos', JSON.stringify(novosProdutos));
}
});
</script>
</body>
</html>