-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubstitution.js
25 lines (22 loc) · 892 Bytes
/
substitution.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
function substitutionRenderer() {
const form = document.querySelector("#substitution");
form.addEventListener("submit", (event) => {
event.preventDefault();
const input = event.target["substitution-input"].value;
const direction = event.target["substitution-options"].value;
const alphabet = event.target["substitution-alphabet"].value;
const result =
direction === "encode"
? substitutionModule.substitution(input, alphabet)
: substitutionModule.substitution(input, alphabet, false);
const alert = document.querySelector("#substitution-alert");
if (result) {
alert.classList.add("d-none");
const output = document.querySelector("#substitution-output");
output.innerHTML = result;
} else {
alert.classList.remove("d-none");
}
});
}
document.addEventListener("DOMContentLoaded", substitutionRenderer);