-
Notifications
You must be signed in to change notification settings - Fork 2
/
PerfilUsuario.html
495 lines (403 loc) · 24.2 KB
/
PerfilUsuario.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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
<!DOCTYPE html>
<html lang="pt-br">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.4.0/jspdf.umd.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.5.14/jspdf.plugin.autotable.min.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Perfil do Usuário</title>
<link rel="stylesheet" href="/Cartao de Credito/Estilo.css">
<link rel="stylesheet" href="/AddProduto/EstiloDoProduto.css">
<link rel="stylesheet" href="CSS/PerfilUser.css">
<link rel="stylesheet" href="CSS/PerfilUserCell.css">
</head>
<body>
<nav class="menu-options">
<div class="logo">
<img src="./IMG/Logo_Pevivace.png" alt="Logo">
</div>
<div class="menu-container">
<span class="menu-icon" onclick="toggleMenu()">☰</span>
</div>
<ul id="menu" class="hidden">
<li><a href="#" onclick="showSection('profile')">Perfil</a></li>
<li><a href="#" onclick="showSection('cardData')">Dados do Cartão</a></li>
<li><a href="#" onclick="showSection('addProduct')">Adicionar Produtos</a></li>
<li><a href="#" onclick="showSection('purchaseHistory')">Histórico de Compra</a></li>
<li><a href="#" onclick="showSection('privacy')" style="text-align: center;">Política e Priv.</a></li>
<li><a href="index.html" onclick="logout()" style="color: red;">Sair</a></li>
</ul>
</nav>
<main>
<section id="profile" class="active">
<div id="profileImageContainer">
<label id="profileImageLabel" for="profileImage">Foto de Perfil</label>
<input type="file" id="profileImageInput" style="display: none;" accept="image/*" onchange="displayProfileImage(this)">
<div id="profileImage" class="profile-image" onclick="document.getElementById('profileImageInput').click()"></div>
</div>
<form id="profileForm">
<label for="profileName">Nome Completo</label>
<input type="text" id="profileName" required>
<label for="profileEmail">E-mail</label>
<input type="text" id="profileEmail" required readonly>
<label for="profileCPF">CPF</label>
<input type="text" id="profileCPF" required>
<label for="profileAddressCEP">CEP</label>
<input type="text" id="profileAddressCEP" class="address-input-full">
<label for="profileAddressState">Estado</label>
<input type="text" id="profileAddressState" class="address-input">
<label for="profileAddressCity">Cidade</label>
<input type="text" id="profileAddressCity" class="address-input">
<label for="profileAddressNeighborhood">Bairro</label>
<input type="text" id="profileAddressNeighborhood" class="address-input">
<label for="profileAddressStreet">Rua</label>
<input type="text" id="profileAddressStreet" class="address-input">
<label for="profileAddressNumber">Número</label>
<input type="text" id="profileAddressNumber" class="address-input">
<button type="button" onclick="submitProfileForm()">Salvar</button>
</form>
<div class="user-type" id="userType"></div>
</section>
<section id="cardData">
<div class="checkout">
<div class="credit-card-box">
<div class="flip">
<div class="front">
<div class="chip"></div>
<div class="logo">
<svg version="1.1" id="visa" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="47.834px" height="47.834px" viewBox="0 0 47.834 47.834" style="enable-background:new 0 0 47.834 47.834;">
<g>
<g>
<path d="M44.688,16.814h-3.004c-0.933,0-1.627,0.254-2.037,1.184l-5.773,13.074h4.083c0,0,0.666-1.758,0.817-2.143
c0.447,0,4.414,0.006,4.979,0.006c0.116,0.498,0.474,2.137,0.474,2.137h3.607L44.688,16.814z M39.893,26.01
c0.32-0.819,1.549-3.987,1.549-3.987c-0.021,0.039,0.317-0.825,0.518-1.362l0.262,1.23c0,0,0.745,3.406,0.901,4.119H39.893z
M34.146,26.404c-0.028,2.963-2.684,4.875-6.771,4.875c-1.743-0.018-3.422-0.361-4.332-0.76l0.547-3.193l0.501,0.228
c1.277,0.532,2.104,0.747,3.661,0.747c1.117,0,2.313-0.438,2.325-1.393c0.007-0.625-0.501-1.07-2.016-1.77
c-1.476-0.683-3.43-1.827-3.405-3.876c0.021-2.773,2.729-4.708,6.571-4.708c1.506,0,2.713,0.31,3.483,0.599l-0.526,3.092
l-0.351-0.165c-0.716-0.288-1.638-0.566-2.91-0.546c-1.522,0-2.228,0.634-2.228,1.227c-0.008,0.668,0.824,1.108,2.184,1.77
C33.126,23.546,34.163,24.783,34.146,26.404z M0,16.962l0.05-0.286h6.028c0.813,0.031,1.468,0.29,1.694,1.159l1.311,6.304
C7.795,20.842,4.691,18.099,0,16.962z M17.581,16.812l-6.123,14.239l-4.114,0.007L3.862,19.161
c2.503,1.602,4.635,4.144,5.386,5.914l0.406,1.469l3.808-9.729L17.581,16.812L17.581,16.812z M19.153,16.8h3.89L20.61,31.066
h-3.888L19.153,16.8z"/>
</g>
</g>
</svg>
</div>
<div class="number"></div>
<div class="card-holder">
<label>Titular do Cartão</label>
<div></div>
</div>
<div class="card-expiration-date">
<label>Expira</label>
<div></div>
</div>
</div>
<div class="back">
<div class="strip"></div>
<div class="logo">
<svg version="1.1" id="visa" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="47.834px" height="47.834px" viewBox="0 0 47.834 47.834" style="enable-background:new 0 0 47.834 47.834;">
<g>
<g>
<path d="M44.688,16.814h-3.004c-0.933,0-1.627,0.254-2.037,1.184l-5.773,13.074h4.083c0,0,0.666-1.758,0.817-2.143
c0.447,0,4.414,0.006,4.979,0.006c0.116,0.498,0.474,2.137,0.474,2.137h3.607L44.688,16.814z M39.893,26.01
c0.32-0.819,1.549-3.987,1.549-3.987c-0.021,0.039,0.317-0.825,0.518-1.362l0.262,1.23c0,0,0.745,3.406,0.901,4.119H39.893z
M34.146,26.404c-0.028,2.963-2.684,4.875-6.771,4.875c-1.743-0.018-3.422-0.361-4.332-0.76l0.547-3.193l0.501,0.228
c1.277,0.532,2.104,0.747,3.661,0.747c1.117,0,2.313-0.438,2.325-1.393c0.007-0.625-0.501-1.07-2.016-1.77
c-1.476-0.683-3.43-1.827-3.405-3.876c0.021-2.773,2.729-4.708,6.571-4.708c1.506,0,2.713,0.31,3.483,0.599l-0.526,3.092
l-0.351-0.165c-0.716-0.288-1.638-0.566-2.91-0.546c-1.522,0-2.228,0.634-2.228,1.227c-0.008,0.668,0.824,1.108,2.184,1.77
C33.126,23.546,34.163,24.783,34.146,26.404z M0,16.962l0.05-0.286h6.028c0.813,0.031,1.468,0.29,1.694,1.159l1.311,6.304
C7.795,20.842,4.691,18.099,0,16.962z M17.581,16.812l-6.123,14.239l-4.114,0.007L3.862,19.161
c2.503,1.602,4.635,4.144,5.386,5.914l0.406,1.469l3.808-9.729L17.581,16.812L17.581,16.812z M19.153,16.8h3.89L20.61,31.066
h-3.888L19.153,16.8z"/>
</g>
</g>
</svg>
</div>
<div class="ccv">
<label>CCV</label>
<div></div>
</div>
</div>
</div>
</div>
<form class="form" autocomplete="off" novalidate>
<fieldset>
<label for="card-number">Número do Cartão</label>
<input type="text" id="card-number" class="input-cart-number" maxlength="19" />
</fieldset>
<fieldset>
<label for="card-holder">Titular do Cartão</label>
<input type="text" id="card-holder" />
</fieldset>
<fieldset class="fieldset-expiration">
<label for="card-expiration-month">Data de Expiração</label>
<div class="select">
<select id="card-expiration-month">
<option></option>
<option>01</option>
<option>02</option>
<option>03</option>
<option>04</option>
<option>05</option>
<option>06</option>
<option>07</option>
<option>08</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
</select>
</div>
<div class="select">
<select id="card-expiration-year">
<option></option>
<option>2024</option>
<option>2025</option>
<option>2026</option>
<option>2027</option>
<option>2028</option>
<option>2029</option>
<option>2030</option>
<option>2031</option>
<option>2032</option>
<option>2034</option>
</select>
</div>
</fieldset>
<fieldset class="fieldset-ccv">
<label for="card-ccv">CCV</label>
<input type="text" id="card-ccv" maxlength="3" />
</fieldset>
<br>
<button id="saveCardButton" class="btn" onclick="submitCardData()"><i class="fa fa-lock"></i>Salvar</button>
</form>
</div>
</section>
<section id="addProduct" class="forms-section">
<div class="productContainer">
<h2>Adicionar Produto</h2>
<form action="#" method="post" class="product-form">
<div class="form-group">
<label for="productName">Nome do Produto:</label>
<input type="text" id="productName" name="productName" required>
</div>
<div class="form-group">
<label for="productDescription">Descrição do Produto:</label>
<textarea name="productDescription" id="productDescription" rows="4" required></textarea>
</div>
<div class="form-group">
<label for="productPrice">Preço do Produto:</label>
<input type="text" id="productPrice" name="productPrice" required>
</div>
<div class="form-group">
<label for="productImage">Imagem do Produto:</label>
<input type="file" id="productImage" name="productImage" accept="image/*" required>
</div>
<button type="submit" class="btn-submit">Adicionar Produto</button>
</form>
</div>
<div class="productPreview">
</div>
</section>
<section id="purchaseHistory">
<ul id="purchaseHistoryList"></ul>
</section>
<section id="privacy" class="privacy-section">
<h2>Política de Privacidade</h2>
<p>Sua privacidade é importante para nós. É política do nosso aplicativo respeitar a sua privacidade em relação a qualquer informação sua que possamos coletar no aplicativo, e outros sites que possuímos e operamos.<br><br>
Solicitamos informações pessoais apenas quando realmente precisamos delas para lhe fornecer um serviço. Fazemos isso por meios justos e legais, com o seu conhecimento e consentimento. Também informamos por que estamos coletando e como será usado.<br><br>
Apenas retemos as informações coletadas pelo tempo necessário para fornecer o serviço solicitado. Quando armazenamos dados, protegemos dentro de meios comercialmente aceitáveis para evitar perdas e roubos, bem como acesso, divulgação, cópia, uso ou modificação não autorizados.<br><br>
Não compartilhamos informações de identificação pessoal publicamente ou com terceiros, exceto quando exigido por lei.<br><br>
O nosso aplicativo pode ter links para sites externos que não são operados por nós. Esteja ciente de que não temos controle sobre o conteúdo e práticas desses sites e não podemos aceitar responsabilidade por suas respectivas políticas de privacidade.<br><br>
Você é livre para recusar a nossa solicitação de informações pessoais, entendendo que talvez não possamos fornecer alguns dos serviços desejados.<br><br>
O uso continuado do nosso aplicativo será considerado como aceitação de nossas práticas em torno da privacidade e informações pessoais. Se você tiver alguma dúvida sobre como lidamos com dados do usuário e informações pessoais, entre em contato conosco.<br><br>
Sua privacidade é importante para nós. É política do nosso aplicativo respeitar a sua privacidade em relação a qualquer informação sua que possamos coletar no aplicativo, e outros sites que possuímos e operamos.<br><br>
Solicitamos informações pessoais apenas quando realmente precisamos delas para lhe fornecer um serviço. Fazemos isso por meios justos e legais, com o seu conhecimento e consentimento. Também informamos por que estamos coletando e como será usado.<br><br>
Ao utilizar nosso aplicativo para comprar ou vender produtos, coletamos informações necessárias para processar transações, como detalhes de pagamento e envio. Essas informações são usadas apenas para concluir a transação e fornecer suporte relacionado.<br><br>
Quando você decide devolver um produto, solicitamos informações adicionais para facilitar o processo de devolução. Isso pode incluir detalhes sobre o motivo da devolução, estado do produto, comprovante de compra, entre outros.<br><br>
Apenas retemos as informações coletadas pelo tempo necessário para fornecer o serviço solicitado. Quando armazenamos dados, protegemos dentro de meios comercialmente aceitáveis para evitar perdas e roubos, bem como acesso, divulgação, cópia, uso ou modificação não autorizados.<br><br>
</section>
</main>
<script>
function toggleMenu() {
const menu = document.getElementById('menu');
menu.classList.toggle('hidden');
}
</script>
<script>
let userEmail;
let userCPF;
let userName;
let currentUser;
let cardData;
function fillProfileFields() {
const currentUserData = localStorage.getItem('currentUser');
if (currentUserData) {
const currentUserInfo = JSON.parse(currentUserData);
userEmail = currentUserInfo.email;
userCPF= currentUserInfo.cpf;
userName = currentUserInfo.name;
currentUser = JSON.parse(localStorage.getItem(userEmail + '_profile')) || {};
correntUser = JSON.parse(localStorage.getItem(userName + '_profile')) || {};
correntUser = JSON.parse(localStorage.getItem(userCPF + '_profile')) || {};
const userType = currentUserInfo.userType || '';
console.log('User email:', userEmail);
cardData = JSON.parse(localStorage.getItem(userEmail + '_cardData'));
if (currentUser) {
document.getElementById('profileName').value = currentUser.name || '';
document.getElementById('profileEmail').value = userEmail || '';
document.getElementById('profileCPF').value = currentUser.cpf || '';
document.getElementById('userType').textContent = userType === 'vendedor' ? 'Vendedor' : 'Comprador';
if (currentUser.address) {
document.getElementById('profileAddressCEP').value = currentUser.address.cep || '';
document.getElementById('profileAddressState').value = currentUser.address.state || '';
document.getElementById('profileAddressCity').value = currentUser.address.city || '';
document.getElementById('profileAddressNeighborhood').value = currentUser.address.neighborhood || '';
document.getElementById('profileAddressStreet').value = currentUser.address.street || '';
document.getElementById('profileAddressNumber').value = currentUser.address.number || '';
}
if (currentUser.profileImage) {
document.getElementById('profileImage').style.backgroundImage = "url('" + currentUser.profileImage + "')";
}
}
if (cardData) {
document.getElementById('card-number').value = cardData.cardNumber || '';
document.getElementById('card-holder').value = cardData.cardHolder || '';
document.getElementById('card-expiration-month').value = cardData.expirationMonth || '';
document.getElementById('card-expiration-year').value = cardData.expirationYear || '';
document.getElementById('card-ccv').value = cardData.ccv || '';
}
} else {
console.log('Nenhum usuário logado');
}
}
function saveUserData() {
localStorage.setItem(userEmail + '_profile', JSON.stringify(currentUser));
}
function saveCardData() {
localStorage.setItem(userEmail + '_cardData', JSON.stringify(cardData));
}
function submitProfileForm() {
const newName = document.getElementById('profileName').value;
const newEmail = document.getElementById('profileEmail').value;
const newCPF = document.getElementById('profileCPF').value;
if (newName && newEmail && newCPF) {
currentUser.name = newName;
currentUser.email = newEmail;
currentUser.cpf = newCPF;
if (!currentUser.address) {
currentUser.address = {};
}
currentUser.address.cep = document.getElementById('profileAddressCEP').value;
currentUser.address.state = document.getElementById('profileAddressState').value;
currentUser.address.city = document.getElementById('profileAddressCity').value;
currentUser.address.neighborhood = document.getElementById('profileAddressNeighborhood').value;
currentUser.address.street = document.getElementById('profileAddressStreet').value;
currentUser.address.number = document.getElementById('profileAddressNumber').value;
saveUserData();
alert('Dados do perfil atualizados com sucesso!');
}
}
function fillCardFields() {
if (cardData) {
document.getElementById('card-number').value = cardData.cardNumber || '';
document.getElementById('card-holder').value = cardData.cardHolder || '';
document.getElementById('card-expiration-month').value = cardData.expirationMonth || '';
document.getElementById('card-expiration-year').value = cardData.expirationYear || '';
document.getElementById('card-ccv').value = cardData.ccv || '';
}
}
function submitCardData() {
const cardNumber = document.getElementById('card-number').value.replace(/\D/g, '');
const cardHolder = document.getElementById('card-holder').value;
const expirationMonth = document.getElementById('card-expiration-month').value;
const expirationYear = document.getElementById('card-expiration-year').value;
const ccv = document.getElementById('card-ccv').value;
cardData = {
cardNumber,
cardHolder,
expirationMonth,
expirationYear,
ccv
};
saveCardData();
alert('Dados do cartão salvos com sucesso!');
}
function displayProfileImage(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
document.getElementById('profileImage').style.backgroundImage = "url('" + e.target.result + "')";
if (currentUser) {
currentUser.profileImage = e.target.result;
saveUserData();
}
}
reader.readAsDataURL(input.files[0]);
}
}
function showSection(sectionId) {
document.querySelectorAll('section').forEach(section => {
section.classList.remove('active');
});
document.getElementById(sectionId).classList.add('active');
}
function refreshPurchaseHistory() {
console.log('Refreshing purchase history...');
const purchaseHistoryList = document.getElementById('purchaseHistoryList');
if (!purchaseHistoryList) {
console.log('Purchase history list element not found.');
return;
}
purchaseHistoryList.innerHTML = '';
const storage = window.localStorage;
const currentUserData = JSON.parse(storage.getItem('currentUser'));
if (!currentUserData) {
console.log('Current user data not found.');
return;
}
const userEmail = currentUserData.email;
console.log('User email:', userEmail);
const purchaseHistoryData = storage.getItem(userEmail + '_purchaseHistory');
if (!purchaseHistoryData) {
console.log('Purchase history data not found.');
return;
}
const purchaseHistory = JSON.parse(purchaseHistoryData) || [];
console.log('Purchase history:', purchaseHistory);
purchaseHistory.forEach(purchase => {
const listItem = document.createElement('li');
listItem.textContent = `Data: ${purchase.date}, Produto: ${purchase.product}, Preço: ${purchase.price}`;
purchaseHistoryList.appendChild(listItem);
});
}
function addToPurchaseHistory(product, price) {
console.log('Adding to purchase history...');
const currentUserData = localStorage.getItem('currentUser');
if (!currentUserData) {
console.log('Current user data not found.');
return;
}
const currentUserInfo = JSON.parse(currentUserData);
const userEmail = currentUserInfo.email;
console.log('User email:', userEmail);
let purchaseHistoryData = localStorage.getItem(userEmail + '_purchaseHistory');
let purchaseHistory = purchaseHistoryData ? JSON.parse(purchaseHistoryData) : [];
const date = new Date().toLocaleDateString();
const purchase = { date, product, price };
purchaseHistory.push(purchase);
localStorage.setItem(userEmail + '_purchaseHistory', JSON.stringify(purchaseHistory));
console.log('Updated purchase history:', purchaseHistory);
refreshPurchaseHistory();
}
refreshPurchaseHistory();
fillProfileFields();
fillCardFields();
</script>
<script src="/AddProduto/Produto.js"></script>
<script src="/Cartao de Credito/script.js"></script>
</body>
</html>