-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
63 lines (53 loc) · 1.76 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
/* 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
*/
var inputTexto = document.querySelector(".text-input");
var botaoCripto = document.querySelector("#btn-cripto");
var botaoDescrito = document.querySelector("#btn-descripto");
var botaoCopiar = document.querySelector("#btn-copy");
var mensagem = document.querySelector("#msg");
botaoCripto.addEventListener("click", function(event){
event.preventDefault();
mensagem.value = criptografar(inputTexto.value);
inputTexto.value = '';
});
botaoDescrito.addEventListener("click", function(event){
event.preventDefault();
mensagem.value = descriptografar(inputTexto.value);
inputTexto.value = '';
})
botaoCopiar.addEventListener('click', function() {
navigator.clipboard.writeText(document.querySelector('#msg').value);
mensagem.value = '';
})
function criptografar(texto) {
var codificar = texto.replace(/[i\í]/gi, 'imes')
.replace(/[e\é\ê]/gi, 'enter')
.replace(/[a\á\ã\â]/gi, 'ai')
.replace(/[o\ó\ô]/gi, 'ober')
.replace(/[u\ú]/gi, 'ufat');
return codificar;
}
function descriptografar(texto) {
var decodificar = texto.replace(/enter/gi, 'e')
.replace(/imes/gi, 'i')
.replace(/ai/gi, 'a')
.replace(/ober/gi, 'o')
.replace(/ufat/gi, 'u');
return decodificar;
}