aboutsummaryrefslogtreecommitdiff
path: root/src/docs-google-com-fix-forms/google_forms.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs-google-com-fix-forms/google_forms.js')
-rw-r--r--src/docs-google-com-fix-forms/google_forms.js83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/docs-google-com-fix-forms/google_forms.js b/src/docs-google-com-fix-forms/google_forms.js
new file mode 100644
index 0000000..2abf3fa
--- /dev/null
+++ b/src/docs-google-com-fix-forms/google_forms.js
@@ -0,0 +1,83 @@
+/**
+ * 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)