From 017779c7b4c532210225f3c8e119a47c2fbde677 Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Sun, 27 Feb 2022 17:20:59 +0100 Subject: [PATCH] Remove obsolete code --- static-src/ui.js | 87 ------------------------------------------------ 1 file changed, 87 deletions(-) diff --git a/static-src/ui.js b/static-src/ui.js index b590c14..712510d 100644 --- a/static-src/ui.js +++ b/static-src/ui.js @@ -38,12 +38,6 @@ const elFormEncrypt = document.body.querySelector("#dialog--encryptMessage form" const elFormVerify = document.body.querySelector("#dialog--verifySignature form") const elFormSearch = document.body.querySelector("#search") -const elProfileUid = document.body.querySelector("#profileUid") -const elProfileMode = document.body.querySelector("#profileMode") -const elProfileServer = document.body.querySelector("#profileServer") - -const elModeSelect = document.body.querySelector("#modeSelect") - const elUtilWKD = document.body.querySelector("#form-util-wkd") const elUtilQRFP = document.body.querySelector("#form-util-qrfp") const elUtilQR = document.body.querySelector("#form-util-qr") @@ -74,13 +68,6 @@ export function init() { if (elFormSearch) { runSearchForm() } - if (elModeSelect) { - runModeSelector() - } - - if (elProfileUid) { - runProfileGenerator() - } if (elUtilWKD) { runWKDUtility() @@ -199,80 +186,6 @@ const runSearchForm = () => { elFormSearch.querySelector("input[type='radio']:checked").dispatchEvent(new Event('input')); } -const runModeSelector = () => { - elModeSelect.onchange = function (evt) { - let elAllModes = document.body.querySelectorAll('.modes'); - elAllModes.forEach(function(el) { - el.classList.remove('modes--visible'); - }); - document.body.querySelector(`.modes--${elModeSelect.value}`).classList.add('modes--visible'); - } - elModeSelect.dispatchEvent(new Event("change")); -} - -const runProfileGenerator = () => { - let opts, profileUid = elProfileUid.innerHTML; - switch (elProfileMode.innerHTML) { - default: - case "sig": - elFormSignatureProfile.onsubmit = function (evt) { - evt.preventDefault(); - - opts = { - input: document.body.querySelector("#plaintext_input").value, - mode: elProfileMode.innerHTML - } - - displayProfile(opts) - } - break; - - case "auto": - if (/.*@.*/.test(profileUid)) { - // Match email for wkd - opts = { - input: profileUid, - mode: "wkd" - } - } else { - // Match fingerprint for hkp - opts = { - input: profileUid, - mode: "hkp" - } - } - break; - - case "hkp": - opts = { - input: profileUid, - server: elProfileServer.innerHTML, - mode: elProfileMode.innerHTML - } - break; - - case "wkd": - opts = { - input: profileUid, - mode: elProfileMode.innerHTML - } - break; - - case "keybase": - let match = profileUid.match(/(.*)\/(.*)/); - opts = { - username: match[1], - fingerprint: match[2], - mode: elProfileMode.innerHTML - } - break; - } - - if (elProfileMode.innerHTML !== 'sig') { - keyoxide.displayProfile(opts); - } -} - const runWKDUtility = () => { elUtilWKD.onsubmit = function (evt) { evt.preventDefault();