-
Notifications
You must be signed in to change notification settings - Fork 0
/
encriptador.js
82 lines (74 loc) · 2.21 KB
/
encriptador.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
let texto = document.querySelector(".texto");
let mensaje = document.querySelector(".mensaje");
const removeAccents = (str) => {
return str.normalize("NFD").replace(/[\u0300-\u036f]/g, "");
};
function convertirTextoMinuscula() {
let textoTransformado = removeAccents(texto.value).toLowerCase();
return textoTransformado;
}
function encriptar() {
let texto = convertirTextoMinuscula();
let textoTransform = Array.from(texto);
for (let i = 0; i < textoTransform.length; i++) {
switch (textoTransform[i]) {
case "a":
textoTransform[i] = "ai";
break;
case "e":
textoTransform[i] = "enter";
break;
case "i":
textoTransform[i] = "imes";
break;
case "o":
textoTransform[i] = "ober";
break;
case "u":
textoTransform[i] = "ufat";
break;
}
}
return textoTransform.join("");
}
function desencriptar() {
let texto = convertirTextoMinuscula();
let nuevaCadena = texto.replaceAll("ai", "a");
nuevaCadena = nuevaCadena.replaceAll("enter", "e");
nuevaCadena = nuevaCadena.replaceAll("imes", "i");
nuevaCadena = nuevaCadena.replaceAll("ober", "o");
nuevaCadena = nuevaCadena.replaceAll("ufat", "u");
return nuevaCadena;
}
function ocultarElementos() {
document.querySelector(".mensaje").style.background = "none";
document.querySelector(".info2").style.visibility = "hidden";
document.querySelector(".info3").style.visibility = "hidden";
document.querySelector(".btn-C").style.visibility = "visible";
}
function mostrarTextoEnc() {
if (!(texto.value == "")) {
ocultarElementos();
var mensaje1 = mensaje.value = encriptar();
}
}
function mostrarTextoDes() {
if (!(texto.value == "")) {
ocultarElementos();
mensaje.value = desencriptar();
}
}
function copyMessage() {
var mensajeCopy = mensaje;
mensajeCopy.select();
navigator.clipboard.writeText(mensajeCopy.value);
texto.value = "";
texto.focus();
}
const reload = document.getElementById("reload");
reload.addEventListener("click", (_) => {
// el _ es para indicar la ausencia de parametros
//codigo recuperado de: https://developer.mozilla.org/es/docs/Web/API/Location/reload
location.reload();
mensaje.value = "";
});