-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
61 lines (45 loc) · 1.78 KB
/
index.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
const textArea = document.querySelector('.texto');
const mensaje = document.querySelector('.texto2');
function btnEncriptar(){
const validaMensaje = /[A-ZÁÉÍÓÚáéíóú]/.test(textArea.value);
if(validaMensaje==true){
alert("Por favor, ingrese un texto sin mayúsculas ni acentos");
return;
}
const textoEncriptado = encriptar(textArea.value);
mensaje.value = textoEncriptado;
textArea.value = "";
}
function encriptar(stringEncriptado){
let matrizCode = [["e", "enter"], ["i", "imes"], ["a", "ai"], ["o", "ober"], ["u", "ufat"]];
stringEncriptado = stringEncriptado.toLowerCase();
for(let i = 0; i < matrizCode.length; i++){
if(stringEncriptado.includes(matrizCode[i][0])){
stringEncriptado = stringEncriptado.replaceAll(matrizCode[i][0], matrizCode[i][1]);
}
}
return stringEncriptado;
}
function btnDesencriptar(){
const textoEncriptado = desencriptar(textArea.value);
mensaje.value = textoEncriptado;
textArea.value = "";
}
function desencriptar(stringDesencriptado){
let matrizCode = [["e", "enter"], ["i", "imes"], ["a", "ai"], ["o", "ober"], ["u", "ufat"]];
stringDesencriptado = stringDesencriptado.toLowerCase();
for(let i = 0; i < matrizCode.length; i++){
if(stringDesencriptado.includes(matrizCode[i][0])){
stringDesencriptado = stringDesencriptado.replaceAll(matrizCode[i][1], matrizCode[i][0]);
}
}
return stringDesencriptado;
}
function btnCopiar(){
navigator.clipboard.writeText(mensaje.value).then(function(){
alert("Texto copiado al portapapeles");
})
.catch (function(err){
console.error('Error al copiar el texto: ', err);
});
}