diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-06-28 18:17:14 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-06-30 12:33:03 +0200 |
commit | ecc6c218af8ef864fe8d03badfed0e6e7c730fd0 (patch) | |
tree | d30ef4b7d74802204130e8a2af27938d0412ab04 /src/google_forms.js | |
parent | c6505d419b6c6a6207c6418ede107d00e6792015 (diff) | |
download | hydrilla-fixes-bundle-ecc6c218af8ef864fe8d03badfed0e6e7c730fd0.tar.gz hydrilla-fixes-bundle-ecc6c218af8ef864fe8d03badfed0e6e7c730fd0.zip |
put each fix in a separate directory with its own index.json
This commit also updates the repository to use version 2 of package source schema.
Diffstat (limited to 'src/google_forms.js')
-rw-r--r-- | src/google_forms.js | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/src/google_forms.js b/src/google_forms.js deleted file mode 100644 index 2abf3fa..0000000 --- a/src/google_forms.js +++ /dev/null @@ -1,83 +0,0 @@ -/** - * SPDX-License-Identifier: Apache-2.0 - * - * (Incomplete) Fix for Google Forms - * - * Copyright © 2021 jahoti <jahoti@tilde.team> - * Copyright 2022 Wojtek Kosior <koszko@koszko.org> - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * I, Wojtek Kosior, thereby promise not to sue for violation of this file's - * license. Although I request that you do not make use of this code in a way - * incompliant with the license, I am not going to enforce this in court. - */ - -var form = document.forms[0]; - -/* Fix form fields. */ -for (let div of form.querySelectorAll('div[data-params]')) { - var data = JSON.parse('[' + div.dataset.params.substring(4)); - var name = 'entry.' + data[0][4][0][0]; - var input = div.querySelector('input, textarea'); - - if (!input) { - console.error(`cannot enable input ${name}`, div); - continue; - } - - if (input.name === name + '_sentinel') { - /* Handle radio buttons. */ - for (const input_div of div.querySelectorAll('[data-value]')) { - const new_radio = document.createElement('input'); - new_radio.type = 'radio'; - new_radio.name = name; - new_radio.value = input_div.getAttribute("data-value"); - input_div.replaceWith(new_radio); - } - } else { - input.removeAttribute('disabled'); - input.name = name; - - /* Enlarge textareas and make them stand out from mere input fields. */ - if (input.tagName === "TEXTAREA") { - input.style.height = "8em"; - input.style.overflowY = "scroll"; - } - } -} - -/* Remove placeholders in text input fields and textareas. */ -document.querySelectorAll('[jsname=LwH6nd]').forEach(n => n.remove()); - -/* Enable the form sumbission button (if any). */ -for (const submit_but of document.querySelectorAll('[jsname=M2UYVd]')) - submit_but.addEventListener("click", () => form.submit()); - -/* Enable the "next page" button (if any). */ -function goToNext() -{ - var next = document.createElement('input'); - next.type = 'hidden'; - next.name = 'continue'; - next.value = '1'; - form.appendChild(next); - form.submit(); -} - -for (const next_but of document.querySelectorAll('[jsname=OCpkoe]')) - next_but.addEventListener("click", goToNext); - -// TODO: -// * support "back" with instatiation of previous entries -// * find and fix form parts that still don't work (if any) |