-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
136 lines (73 loc) · 2.63 KB
/
script.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
/* Regras Codificador:
"e" é convertido para "enter"
"i" é convertido para "imes"
"a" é convertido para "ai"
"o" é convertido para "ober"
"u" é convertido para "ufat"
Apenas letras minúsculas
Não permite acentuação
*/
/* Regras Decodificador:
"enter" é convertido para "e"
"imes" é convertido para "i"
"ai" é convertido para "a"
"ober" é convertido para "o"
"ufat" é convertido para "u"
Apenas letras minúsculas
Não permite acentuação
*/
// bloqueador de caracteres A-Z - 0-9 e caracteres especiais//
const brandInput = document.querySelector ("#input-texto")
brandInput.addEventListener("keypress", function(e) {
if(!checkChar(e)){
e.preventDefault();
}
});
function checkChar(e){
const char = String.fromCharCode(e.keyCode);
const pattern = '[a-z]';
if(char.match(pattern)) {
console.log(char);
return true;
}
}
// botão criptografar mensagem//
const btnCripto = document.querySelector("#btn-cripto");
btnCripto.addEventListener("click", function(e){
e.preventDefault();
const name = document.querySelector("#input-texto");
const value = name.value;
var textoFinal = value;
textoFinal = textoFinal.replace(/e/g, "enter");
textoFinal = textoFinal.replace(/i/g, "imes");
textoFinal = textoFinal.replace(/a/g, "ai");
textoFinal = textoFinal.replace(/o/g, "ober");
textoFinal = textoFinal.replace(/u/g, "ufat");
document.getElementById("msg").value = textoFinal;
console.log(textoFinal);
})
// botão descriptografar mensagem//
const btnDescripto = document.querySelector("#btn-descripto");
btnDescripto.addEventListener("click", function(e){
e.preventDefault();
const name = document.querySelector("#input-texto");
const value = name.value;
var textoFinal = value;
textoFinal = textoFinal.replace(/enter/g, "e");
textoFinal = textoFinal.replace(/imes/g, "i");
textoFinal = textoFinal.replace(/ai/g, "a");
textoFinal = textoFinal.replace(/ober/g, "o");
textoFinal = textoFinal.replace(/ufat/g, "u");
document.getElementById("msg").value = textoFinal;
console.log(textoFinal)
})
//botão selecionar e copiar para zona de transferência//
let btnCopy = document.querySelector("#btn-copy");
btnCopy.addEventListener("click", function(e){
e.preventDefault();
let textArea = document.querySelector("#msg");
textArea.select();
textArea.setSelectionRange(0, 99999)
document.execCommand("copy");
alert("Texto Copiado!")
})