-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
314 lines (256 loc) · 10.9 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
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
let verificaEmail = "", verificaSenha = "", verificaConfirmaSenha = "", usuariosRegistrados = "", log = ""
let nomeFormu, emailFormu, cpfFormu, telFormu, parcelaFormu
let textoComprovante
function verificaRegistro(){
verificaEmail = document.getElementById("gmail").value
verificaSenha = document.getElementById("senha").value
verificaConfirmaSenha = document.getElementById("confirmaSenha").value
let usuariosRegistrados = JSON.parse(localStorage.getItem("usuarios")) || {}; // Obte os usuários registrados
if(verificaEmail != "" && verificaSenha != "" && verificaConfirmaSenha != ""){
if (usuariosRegistrados.hasOwnProperty(verificaEmail)) {
document.getElementById("aviso").innerHTML = `O email ${verificaEmail} já foi cadastrado!`
} else if (verificaSenha != verificaConfirmaSenha) {
document.getElementById("aviso").innerHTML = `As senhas não são iguais. Tente novamente!`
} else {
let email = []
for(let i = 0; i < verificaEmail.length; i++){
email[i] = verificaEmail[i]
}
if(!email.includes('@' && '.')){
document.getElementById("aviso").innerHTML = `é necessário um email valido!`
}else{
registrar(verificaEmail, verificaSenha)
alert(`O email ${verificaEmail} foi cadastrado com sucesso!`)
window.location.href = "login.html"
}
}
}else{
document.getElementById("aviso").innerHTML = `Preencha todos os campos!`
}
}
function registro(){
window.location.href = "registro.html"
}
function registrar(emailUsuario, senhaUsuario) {
usuariosRegistrados = JSON.parse(localStorage.getItem("usuarios")) || {}; // Verificar se já existe algum dado armazenado para evitar sobrescrever
usuariosRegistrados[emailUsuario] = { // Adicionar o novo usuário
email: emailUsuario,
senha: senhaUsuario
};
localStorage.setItem("usuarios", JSON.stringify(usuariosRegistrados));
}
function login(){
window.location.href = "login.html"
}
function verificarLogin() {
let emailDigitado = "", senhaDigitada = ""
emailDigitado = document.getElementById("mail").value; // Obtem os dados de usuários registrados
senhaDigitada = document.getElementById("pass").value; // Obtem os dados de usuários registrados
usuariosRegistrados = JSON.parse(localStorage.getItem("usuarios")) || {};
if (usuariosRegistrados.hasOwnProperty(emailDigitado)) { // Verificar se o email do usuário existe nos email registrados
if(localStorage.getItem("usuarioLogado")){
document.getElementById("respLogin").innerHTML = `Você já está logado!`
document.getElementById("pass").value = ""
document.getElementById("mail").value = ""
}else{
if (usuariosRegistrados[emailDigitado].senha === senhaDigitada){ // Verificar se a senha corresponde ao email fornecido
alert(`Login bem-sucedido, Bem vindo(a) ${emailDigitado}!`)
let nome = nomeUsuario(emailDigitado)
localStorage.setItem("usuarioLogado", nome)
window.location.href = "index.html"
}else{
document.getElementById("respLogin").innerHTML = `Senha incorreta, digite novamente!`
}
}
} else {
document.getElementById("respLogin").innerHTML = `O email: ${emailDigitado} não possue uma conta ainda!`
}
}
function mostraLogin() {
let senhaInput = document.getElementById("pass")
if (senhaInput.type === "password") {
senhaInput.type = "text"
document.querySelector("button").textContent = "Ocultar Senha"
} else {
senhaInput.type = "password"
document.querySelector("button").textContent = "Mostrar Senha"
}
}
function mostraRegistro(){
let senhaInput = document.getElementById("senha")
let confirmaSenhaInput = document.getElementById("confirmaSenha")
if (senhaInput.type === "password" && confirmaSenhaInput.type === "password") {
senhaInput.type = "text"
confirmaSenhaInput.type = "text"
document.querySelector("button").textContent = "Ocultar Senha"
} else {
senhaInput.type = "password"
confirmaSenhaInput.type = "password"
document.querySelector("button").textContent = "Mostrar Senha"
}
}
function recuperaSenha(){
let emailRecupera = document.getElementById("mail").value
if(emailRecupera == ""){
alert("Digite um email na opção E-mail")
}else{
usuariosRegistrados = JSON.parse(localStorage.getItem("usuarios")) || {};
if (!usuariosRegistrados.hasOwnProperty(emailRecupera)) {
alert("o email nao foi registrado")
}else{
let text = `Realmente deseja redefinir a senha do email ${emailRecupera}`
if(confirm(text)){
let senhaRedifinida = ""
senhaRedifinida = prompt("Digite sua nova senha")
usuariosRegistrados[emailRecupera] = {
email: emailRecupera,
senha: senhaRedifinida
}
localStorage.setItem("usuarios", JSON.stringify(usuariosRegistrados))
}
}
}
}
function nomeUsuario(emailNome){
return emailNome.slice(0, -10)
}
function bemVindo() {
let nomeUs = localStorage.getItem("nome");
let bios = localStorage.getItem("bio");
let emailPerfil = localStorage.getItem("emailPerfil")
let x = localStorage.getItem("x")
let tel = localStorage.getItem("telefone")
let insta = localStorage.getItem("insta")
const savedImage = localStorage.getItem('ftPerfil');
// Atualiza o nome do usuário
if (nomeUs && nomeUs.trim() !== "") {
document.getElementById("nomeTitulo").innerHTML = `Perfil de ${nomeUs}`;
document.getElementById("nomePrincipal").innerHTML = `Perfil de ${nomeUs}`;
document.getElementById("nomePerfil").innerHTML = `${nomeUs}`;
} else {
document.getElementById("nomeTitulo").innerHTML = `Perfil de [Seu Nome]`;
document.getElementById("nomePrincipal").innerHTML = `Perfil de [Seu Nome]`;
document.getElementById("nomePerfil").innerHTML = `[Seu Nome]`;
}
if(emailPerfil){
document.getElementById("emailPerfil").innerHTML = emailPerfil
}else{
}
if(x){
document.getElementById("x").innerHTML = x
}else{
document.getElementById("x").innerHTML = "[Seu Twitter]"
}
if(tel){
document.getElementById("telefone").innerHTML = tel
}else{
document.getElementById("telefone").innerHTML = "[Seu número de telefone]"
}
if(insta){
document.getElementById("insta").innerHTML = insta
}else{
document.getElementById("insta").innerHTML = "[Seu Instagram]"
}
// Atualiza a descrição do usuário
if (bios && bios.trim() !== "") {
document.getElementById("descricao").innerHTML = `${bios}`;
} else {
document.getElementById("descricao").innerHTML = `[Conte um pouco mais sobre você, seus interesses, e suas experiências]`;
}
// Atualiza a imagem do perfil
if (savedImage && savedImage.trim() !== "") {
displayImageFromLocalStorage('ftPerfil', 'imgPerfil'); // Certifique-se de que 'imgPerfil' é o ID correto do elemento de imagem
document.getElementById("imgPerfil").removeAttribute('hidden')
} else {
console.log('Nenhuma imagem salva encontrada no Local Storage.');
}
}
function displayImageFromLocalStorage(chave, imgElementId) {
const dataURL = localStorage.getItem(chave);
if (dataURL) {
const imgElement = document.getElementById(imgElementId);
imgElement.src = dataURL;
} else {
console.log('Nenhuma imagem encontrada para a chave fornecida.');
}
}
document.addEventListener('DOMContentLoaded', bemVindo)
function mudarNome(){
let nomeUsu = prompt("digite seu nome")
if(nomeUsu != "" && nomeUsu != null){
localStorage.setItem("nome", nomeUsu)
document.getElementById("nomeTitulo").innerHTML = `Perfil de ${nomeUsu}`
document.getElementById("nomePrincipal").innerHTML = `Perfil de ${nomeUsu}`
document.getElementById("nomePerfil").innerHTML = `${nomeUsu}`
}else{
document.getElementById("nomeTitulo").innerHTML = `Perfil de [Seu Nome]`
document.getElementById("nomePrincipal").innerHTML = `Perfil de [Seu Nome]`
document.getElementById("nomePerfil").innerHTML = `[Seu Nome]`
}
}
function mudarBio(){
let bio = prompt("Conte um pouco mais sobre você")
if(bio != "" && bio != null){
localStorage.setItem("bio", bio)
document.getElementById("descricao").innerHTML = `${bio}`
}else{
document.getElementById("nomeTitulo").innerHTML = `[Conte um pouco mais sobre você, seus interesses, e suas experiências]`
}
}
function sair(){
localStorage.removeItem("usuarioLogado") // Remove o nome do usuário logado do Local Storage
alert("Você saiu da sua conta com sucesso!")
window.location = "login.html"
}
const inputFile = document.querySelector("#picture__input");
const pictureImage = document.querySelector(".picture__image");
inputFile.addEventListener("change", function (e) {
const file = e.target.files[0];
if (file) {
const reader = new FileReader();
reader.addEventListener("load", function (e) {
const dataURL = e.target.result;
// Atualiza a imagem exibida na página
const img = document.createElement("img");
img.src = dataURL;
img.classList.add("picture__img");
pictureImage.innerHTML = ""; // Limpa o conteúdo atual
pictureImage.appendChild(img);
// Armazena o Data URL no localStorage
storeImageInLocalStorage(dataURL, 'ftPerfil');
});
reader.readAsDataURL(file);
}
});
function storeImageInLocalStorage(dataURL, chave) {
localStorage.setItem(chave, dataURL);
}
function mudarEmail(){
let emailMudado = prompt("Digite seu novo email")
document.getElementById("emailPerfil").innerHTML = emailMudado
localStorage.setItem("emailPerfil", emailMudado)
}
function mudarTel(){
let tel = prompt("Digite seu telefone")
document.getElementById("telefone").innerHTML = tel
localStorage.setItem("telefone", tel)
}
function mudarInsta(){
let insta = prompt("Digite seu instagram")
document.getElementById("insta").innerHTML = insta
localStorage.setItem("insta", insta)
}
function mudarX(){
let x = prompt("Digite seu Twitter")
document.getElementById("x").innerHTML = x
localStorage.setItem("x", x)
}
function verificaPerfil(){
let log = localStorage.getItem("usuarioLogado")
if(log){
window.location.href = "perfil.html"
}else{
window.location.href = "login.html"
}
}