-
Notifications
You must be signed in to change notification settings - Fork 0
/
scripts.js
123 lines (106 loc) · 4.13 KB
/
scripts.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
let botonEncriptar = document.getElementById("button_encrypt");
let botonDesencriptar = document.getElementById("button_decrypt");
let botonCopiar = document.getElementById("button_copiar");
let botones = document.getElementsByClassName(".button");
let textoEntrada = document.getElementById("input_text_encrypt");
let textoSalida = document.getElementById("output_text_decrypt");
let cuerpo = document.querySelector('body');
let contenedorPadre = document.querySelector(".result");
function habilitarBotones() {
botonEncriptar.disabled = false;
botonDesencriptar.disabled = false;
}
function habilitarCopiado() {
botonCopiar.disabled = false;
}
function actualizarPagina() {
if(textoEntrada.value !== ""){
contenedorPadre.classList.remove("no_texto")
}
textoEntrada.focus();
}
function myAlert(message) {//mensaje modificado de alerta
var alert = document.getElementById('custom-alert');
alert.innerHTML = message;
alert.style.display = 'block';
setTimeout(function() {
alert.style.display = 'none';
}, 2000); // Oculta el alert después de 3 segundos
}
function focusTextArea() {
var textarea = document.getElementById("input_text_encrypt");
textarea.focus();
}
function encriptarMensaje() {
if (textoEntrada.value != "") {
// expresión regular para verificar minúsculas y espacios
let regExp = /^[a-z\s]+$/;
if (regExp.test(textoEntrada.value)) {
let mensajeEncriptado = textoEntrada.value;
mensajeEncriptado = mensajeEncriptado.replace(/e/gim, "enter");
mensajeEncriptado = mensajeEncriptado.replace(/i/gim, "imes");
mensajeEncriptado = mensajeEncriptado.replace(/a/gim, "ai");
mensajeEncriptado = mensajeEncriptado.replace(/o/gim, "ober");
mensajeEncriptado = mensajeEncriptado.replace(/u/gim, "ufat");
textoSalida.innerHTML = mensajeEncriptado;
textoSalida.value = mensajeEncriptado;
actualizarPagina();
} else {
myAlert("Por favor escribe un texto válido, solo letras minúsculas y espacios.");
focusTextArea();
}
} else {
myAlert("Por favor escribe un texto");
focusTextArea();
}
}
function desencriptarMensaje() {
if (textoEntrada.value != "") {
let mensajeDesencriptado = textoEntrada.value;
mensajeDesencriptado = mensajeDesencriptado.replace(/enter/gim, "e");
mensajeDesencriptado = mensajeDesencriptado.replace(/imes/gim, "i");
mensajeDesencriptado = mensajeDesencriptado.replace(/ai/gim, "a");
mensajeDesencriptado = mensajeDesencriptado.replace(/ober/gim, "o");
mensajeDesencriptado = mensajeDesencriptado.replace(/ufat/gim, "u");
textoSalida.innerHTML = mensajeDesencriptado;
textoSalida.value = mensajeDesencriptado;
actualizarPagina();
}
else {
myAlert("Para desencriptar un mensaje, usa la caja de texto");
focusTextArea();
}
}
function copiarMensaje() {
if (textoSalida.value != "") {
navigator.clipboard.writeText(textoSalida.value);
myAlert("Mensaje copiado");
}
else {
myAlert("Nada que copiar");
}
}
//--script del formulario--//
const form = document.getElementById("my_form");
form.addEventListener("submit", async (event) => {
event.preventDefault(); // Evita el envío del formulario por defecto.
const formData = new FormData(form); // Recopila los datos del formulario.
const response = await fetch(form.action, {
method: form.method,
body: formData,
headers: {
Accept: "application/json",
},
}); // Envía los datos del formulario a la URL del formulario.
if (response.ok) {
myAlert("¡Gracias por enviar tu consulta!"); // Mensaje de confirmación.
form.reset();//vacia el formulario
}
else {
myAlert("Ha ocurrido un error al enviar el formulario."); // Mensaje de error.
}
});
botonEncriptar.onclick = encriptarMensaje;
botonDesencriptar.onclick = desencriptarMensaje;
botonCopiar.onclick = copiarMensaje;
textoEntrada.onclick = habilitarBotones;