-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencrypt.js
185 lines (152 loc) · 3.82 KB
/
encrypt.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
function encriptar(texto) {
let resultado = "";
for (let i = 0; i < texto.length; i++) {
let letra = texto[i];
switch (letra) {
case "e":
resultado += "enter";
break;
case "i":
resultado += "imes";
break;
case "a":
resultado += "ai";
break;
case "o":
resultado += "ober";
break;
case "u":
resultado += "ufat";
break;
default:
resultado += letra;
}
}
return resultado;
}
function desencriptar() {
let mensaje = document.getElementById("mensaje").value;
let resultado = mensaje.replace(/enter|imes|ai|ober|ufat/g, function (match) {
switch (match) {
case "enter":
return "e";
case "imes":
return "i";
case "ai":
return "a";
case "ober":
return "o";
case "ufat":
return "u";
}
});
return resultado;
}
let botonEncriptar = document.getElementById('encriptar');
botonEncriptar.addEventListener("click", function () {
let mensaje = document.getElementById("mensaje").value;
if (mensaje == "") {
mostrarImagen();
}
else {
let resultado = encriptar(mensaje);
document.getElementById("resultado").value = resultado;
ocultarImagen();
mostrarBotonCopiar();
}
});
let botonDesencriptar = document.getElementById('desencriptar');
botonDesencriptar.addEventListener("click", function () {
let mensaje = document.getElementById("mensaje").value;
if (mensaje == "") {
mostrarImagen();
}
else {
let resultado = desencriptar(mensaje);
document.getElementById("resultado").value = resultado;
ocultarImagen();
mostrarBotonCopiar();
}
});
/*
funcion para el boton de copiar el texto encriptado
*/
function procesarCopiar() {
let texto = document.getElementById("resultado").value.trim();
if (!texto) {
return;
}
copiar();
}
function copiar() {
let texto = document.getElementById("resultado").value;
let btnCopiar = document.getElementById("copiar");
if (texto.trim() === "") {
return;
}
//funcion del boton copiar para dispositivos moviles
btnCopiar.addEventListener("touchstart", function() {
navigator.clipboard.writeText(texto);
});
navigator.clipboard.writeText(texto)
cambiarTextoBtnCopiar();
borrarResultado();
borrarMensaje();
setTimeout(ocultarBotonCopiar, 2500);
}
/*
funcion para borrar el textarea resultado
*/
function borrarResultado() {
let texto_vacio = document.getElementById("resultado");
texto = texto_vacio.value.trim();
if (texto == "") {
return;
}
texto_vacio.value = "";
}
/*
funcion para borrar el texto del textarea mensaje
*/
function borrarMensaje() {
let mensaje = document.getElementById("mensaje");
texto = mensaje.value.trim();
if (texto == "") {
return;
}
mensaje.value = "";
}
/*
Funciones para mostrar la imagen y el texto de advertencia en el cuadro de resultado
*/
function ocultarImagen() {
document.getElementById("muneco").style.display = 'none';
document.getElementById("texto-advertencia").style.display = 'none';
}
function mostrarImagen() {
document.getElementById("muneco").style.display = 'block';
document.getElementById("texto-advertencia").style.display = 'flex';
}
/*
Funcion para mostrar el boton de copiar
*/
function mostrarBotonCopiar() {
document.getElementById("copiar").style.display = 'block';
}
function ocultarBotonCopiar() {
document.getElementById("copiar").style.display = 'none';
}
/*
Funcion para cambiar el texto del boton de copiar
*/
function cambiarTextoBtnCopiar() {
let btnCopiar = document.getElementById("copiar");
setTimeout(function () {
btnCopiar.textContent = "Texto Copiado";
btnCopiar.style.opacity = 0.5;
}, 500);
setTimeout(function () {
btnCopiar.textContent = 'Copiar';
btnCopiar.style.opacity = 1;
}, 2500);
}