aboutsummaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-01-13 10:15:12 +0100
committerWojtek Kosior <koszko@koszko.org>2022-01-13 10:15:12 +0100
commit5acb2499c1df14d6275b1ad9e139f02d1280cb9c (patch)
tree9407e99955a654cd04cbf96b8f28f5a6e7f36289 /html
parentdd8de100acda322f2124c58163ecde6f1b37d61d (diff)
downloadbrowser-extension-5acb2499c1df14d6275b1ad9e139f02d1280cb9c.tar.gz
browser-extension-5acb2499c1df14d6275b1ad9e139f02d1280cb9c.zip
facilitate managing repository URLs in a list; minor other changes
Diffstat (limited to 'html')
-rw-r--r--html/dialog.js10
-rw-r--r--html/grid.css6
-rw-r--r--html/item_list.html8
-rw-r--r--html/item_list.js4
-rw-r--r--html/item_preview.html2
-rw-r--r--html/payload_create.html3
-rw-r--r--html/payload_create.js5
-rw-r--r--html/text_entry_list.html65
-rw-r--r--html/text_entry_list.js321
9 files changed, 411 insertions, 13 deletions
diff --git a/html/dialog.js b/html/dialog.js
index c4bba5d..a2406e8 100644
--- a/html/dialog.js
+++ b/html/dialog.js
@@ -129,3 +129,13 @@ const ask = (ctx, ...msg) => show_dialog(ctx, "ask_buts", msg);
const loader = (ctx, ...msg) => show_dialog(ctx, null, msg);
#EXPORT loader
+
+/*
+ * Wrapper around target.addEventListener() that makes the requested callback
+ * only execute if dialog is not shown.
+ */
+function onevent(ctx, target, event, cb)
+{
+ target.addEventListener(event, e => !ctx.shown && cb(e));
+}
+#EXPORT onevent
diff --git a/html/grid.css b/html/grid.css
index aa8fc80..20bb85e 100644
--- a/html/grid.css
+++ b/html/grid.css
@@ -49,7 +49,7 @@
grid-column: 1 / span 2;
}
-span.grid_col_1 {
+span.grid_col_1, label.grid_col_1 {
text-align: right;
}
@@ -61,11 +61,11 @@ div.grid_col_both {
text-align: initial;
}
-.grid_2>span {
+.grid_2>span, grid_2>label {
margin-top: 0.75em;
}
-.grid_form>span {
+.grid_form>span, .grid_form>label {
margin-top: 1.5em;
margin-left: 1em;
margin-right: 1em;
diff --git a/html/item_list.html b/html/item_list.html
index 5d2a163..4e23868 100644
--- a/html/item_list.html
+++ b/html/item_list.html
@@ -57,6 +57,14 @@
.item_list>li.item_li_highlight {
cursor: default;
}
+ .item_list.list_disabled,
+ .item_list.list_disabled *,
+ .item_list.list_disabled .item_li_highlight {
+ -moz-user-select: none;
+ user-select: none;
+ opacity: 0.75;
+ cursor: not-allowed;
+ }
.list_buttons {
margin: 1em auto;
text-align: center;
diff --git a/html/item_list.js b/html/item_list.js
index 34dec83..198e0f9 100644
--- a/html/item_list.js
+++ b/html/item_list.js
@@ -185,14 +185,14 @@ async function item_list(preview_cb, track_cb, remove_cb)
function on_dialog_show(list_ctx)
{
- list_ctx.ul; // TODO: make ul non-selectable when dialog is shown
+ list_ctx.ul.classList.add("list_disabled");
list_ctx.preview_container.classList.add("hide");
list_ctx.dialog_container.classList.remove("hide");
}
function on_dialog_hide(list_ctx)
{
- list_ctx.ul;
+ list_ctx.ul.classList.remove("list_disabled");
if (list_ctx.previewed_item !== null)
list_ctx.preview_container.classList.remove("hide");
list_ctx.dialog_container.classList.add("hide");
diff --git a/html/item_preview.html b/html/item_preview.html
index 6cd15a8..160c01d 100644
--- a/html/item_preview.html
+++ b/html/item_preview.html
@@ -39,7 +39,7 @@
#LOADCSS html/grid.css
<style>
.preview_main_div {
- margin: 0.8em 0;
+ margin: 0.8em 0.8em;
}
</style>
<template>
diff --git a/html/payload_create.html b/html/payload_create.html
index 062e41c..44fa4e2 100644
--- a/html/payload_create.html
+++ b/html/payload_create.html
@@ -40,9 +40,6 @@
#LOADCSS html/base.css
#LOADCSS html/grid.css
<style>
- .payload_create_main_view {
- margin: 0.8em;
- }
.payload_create_form {
margin: 0 0.6em;
}
diff --git a/html/payload_create.js b/html/payload_create.js
index a5f9854..c1563ae 100644
--- a/html/payload_create.js
+++ b/html/payload_create.js
@@ -46,10 +46,7 @@
#FROM html/DOM_helpers.js IMPORT clone_template
#FROM common/sha256.js IMPORT sha256
-#FROM common/patterns.js IMPORT deconstruct_url
-
-const patterns_doc_url =
- "https://hydrillabugs.koszko.org/projects/haketilo/wiki/URL_patterns";
+#FROM common/patterns.js IMPORT deconstruct_url, patterns_doc_url
/* https://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid */
/* This is a helper function used by uuidv4(). */
diff --git a/html/text_entry_list.html b/html/text_entry_list.html
new file mode 100644
index 0000000..21e1604
--- /dev/null
+++ b/html/text_entry_list.html
@@ -0,0 +1,65 @@
+#IF !TEXT_ENTRY_LIST_LOADED
+#DEFINE TEXT_ENTRY_LIST_LOADED
+<!--
+ SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0
+
+ List of editable entries. Used to make UI for management of repo URLs and
+ script allowing/blocking rules.
+
+ This file is part of Haketilo.
+
+ Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
+
+ File is dual-licensed. You can choose either GPLv3+, CC BY-SA or both.
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+ I, Wojtek Kosior, thereby promise not to sue for violation of this file's
+ licenses. Although I request that you do not make use of this code in a
+ proprietary program, I am not going to enforce this in court.
+ -->
+
+<!--
+ This is not a standalone page. This file is meant to be imported into other
+ HTML code.
+ -->
+
+#LOADCSS html/reset.css
+#LOADCSS html/base.css
+#LOADCSS html/grid.css
+<style>
+ .text_entry {
+ height: 3em;
+ padding: 0 0.5em;
+ }
+</style>
+<template>
+ <div id="text_entry" data-template="main_div">
+ <div data-template="noneditable_view">
+ <span data-template="text"></span>
+ <button data-template="remove_but">Remove</button>
+ </div>
+ <div data-template="editable_view" class="hide">
+ <input data-template="input">
+ <button data-template="add_but" class="hide">Add</button>
+ <button data-template="save_but">Save</button>
+ <button data-template="cancel_but">Cancel</button>
+ </div>
+ </div>
+ <div id="text_entry_list" data-template="main_div" class="grid_1">
+ <div data-template="list_div" class="grid_1"></div>
+ <button data-template="new_but">New</button>
+ </div>
+</template>
+#ENDIF
diff --git a/html/text_entry_list.js b/html/text_entry_list.js
new file mode 100644
index 0000000..4af19fd
--- /dev/null
+++ b/html/text_entry_list.js
@@ -0,0 +1,321 @@
+/**
+ * This file is part of Haketilo.
+ *
+ * Function: Driving a list of editable entries. Used to make UI for management
+ * of repo URLs and script allowing/blocking rules.
+ *
+ * Copyright (C) 2022 Wojtek Kosior
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * As additional permission under GNU GPL version 3 section 7, you
+ * may distribute forms of that code without the copy of the GNU
+ * GPL normally required by section 4, provided you include this
+ * license notice and, in case of non-source distribution, a URL
+ * through which recipients can access the Corresponding Source.
+ * If you modify file(s) with this exception, you may extend this
+ * exception to your version of the file(s), but you are not
+ * obligated to do so. If you do not wish to do so, delete this
+ * exception statement from your version.
+ *
+ * As a special exception to the GPL, any HTML file which merely
+ * makes function calls to this code, and for that purpose
+ * includes it by reference shall be deemed a separate work for
+ * copyright law purposes. If you modify this code, you may extend
+ * this exception to your version of the code, but you are not
+ * obligated to do so. If you do not wish to do so, delete this
+ * exception statement from your version.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *
+ * 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
+ * proprietary program, I am not going to enforce this in court.
+ */
+
+#IMPORT html/dialog.js
+#IMPORT common/indexeddb.js AS haketilodb
+
+#FROM html/DOM_helpers.js IMPORT clone_template
+#FROM common/patterns.js IMPORT deconstruct_url, patterns_doc_url
+
+const coll = new Intl.Collator();
+
+function Entry(text, list, entry_idx) {
+ Object.assign(this, clone_template("text_entry"));
+
+ const editable = () => list.active_entry === this;
+ this.exists = () => text !== null;
+
+ /*
+ * Called in the constructor when creating a completely new entry and as a
+ * result of clicking on an existing entry in the list.
+ */
+ this.make_editable = () => {
+ if (editable())
+ return;
+
+ if (list.active_entry !== null)
+ list.active_entry.make_noneditable();
+
+ list.active_entry = this;
+
+ this.editable_view.classList.remove("hide");
+ this.noneditable_view.classList.add("hide");
+
+ this.input.value = text || "";
+ }
+
+ /*
+ * Called when 'Cancel' is clicked, when another entry becomes editable and
+ * when an entry ends being modified.
+ */
+ this.make_noneditable = () => {
+ if (!editable())
+ return;
+
+ list.active_entry = null;
+
+ if (!this.exists()) {
+ this.main_div.remove();
+ return;
+ }
+
+ this.editable_view.classList.add("hide");
+ this.noneditable_view.classList.remove("hide");
+ }
+
+ /*
+ * The *_cb() calls are allowed to throw if an error occurs. It is expected
+ * *_cb() will show some dialog that will block other clicks until they
+ * returns/throw.
+ */
+
+ const add_clicked = async () => {
+ if (!editable() || this.exists())
+ return;
+
+ await list.create_cb(this.input.value);
+ this.make_noneditable();
+ }
+
+ /*
+ * Changing entry's text is not handled here, instead we wait for subsequent
+ * item removal and creation requests from the outside.
+ */
+ const save_clicked = async () => {
+ if (!editable() || !this.exists())
+ return;
+
+ await list.replace_cb(text, this.input.value);
+ this.make_noneditable();
+ }
+
+ const enter_hit = () => add_clicked().then(save_clicked);
+
+ /*
+ * Removing entry from the list is not handled here, instead we wait for
+ * subsequent item removal requests from the outside.
+ */
+ const remove_clicked = async () => {
+ if (editable() || !this.exists())
+ return;
+
+ await list.remove_cb(text);
+ }
+
+ /*
+ * Called from the outside after the entry got removed from the database. It
+ * is assumed entry_exists() is true when this is called.
+ */
+ this.remove = () => {
+ if (editable()) {
+ text = null;
+ this.save_but.classList.add("hide");
+ this.add_but.classList.remove("hide");
+ } else {
+ this.main_div.remove();
+ }
+ }
+
+ if (this.exists()) {
+ this.text.innerText = text;
+ } else {
+ this.save_but.classList.add("hide");
+ this.add_but.classList.remove("hide");
+ this.make_editable();
+ }
+
+ for (const [node, cb] of [
+ [this.save_but, save_clicked],
+ [this.add_but, add_clicked],
+ [this.remove_but, remove_clicked],
+ [this.cancel_but, this.make_noneditable],
+ [this.noneditable_view, this.make_editable],
+ ])
+ dialog.onevent(list.dialog_ctx, node, "click", cb);
+
+ dialog.onevent(list.dialog_ctx, this.input, "keypress",
+ e => (e.key === 'Enter') && enter_hit());
+
+ if (entry_idx > 0) {
+ const prev_text = list.shown_texts[entry_idx - 1];
+ list.entries_by_text.get(prev_text).main_div.after(this.main_div);
+ } else {
+ if (!editable() && list.active_entry && !list.active_entry.exists())
+ list.active_entry.main_div.after(this.main_div);
+ else
+ list.list_div.prepend(this.main_div);
+ }
+}
+
+function TextEntryList(dialog_ctx, destroy_cb,
+ remove_cb, create_cb, replace_cb) {
+ Object.assign(this, {dialog_ctx, remove_cb, create_cb, replace_cb});
+ Object.assign(this, clone_template("text_entry_list"));
+ this.ul = document.createElement("ul");
+ this.shown_texts = [];
+ this.entries_by_text = new Map();
+ this.active_entry = null;
+
+ const find_entry_idx = text => {
+ let left = 0, right = this.shown_texts.length;
+
+ while (left < right) {
+ const mid = (left + right) >> 1;
+ if (coll.compare(text, this.shown_texts[mid]) > 0)
+ left = mid + 1;
+ else /* <= 0 */
+ right = mid;
+ }
+
+ return left;
+ }
+
+ this.remove = text => {
+ if (!this.entries_by_text.has(text))
+ return;
+
+ this.shown_texts.splice(find_entry_idx(text), 1);
+ this.entries_by_text.get(text).remove();
+ this.entries_by_text.delete(text)
+ }
+
+ this.add = text => {
+ if (this.entries_by_text.has(text))
+ return;
+
+ const idx = find_entry_idx(text);
+ this.entries_by_text.set(text, new Entry(text, this, idx));
+ this.shown_texts.splice(idx, 0, text);
+ }
+
+ this.destroy = () => {
+ this.main_div.remove();
+ destroy_cb();
+ }
+
+ const add_new = () => new Entry(null, this, 0);
+
+ dialog.onevent(dialog_ctx, this.new_but, "click", add_new);
+}
+
+async function repo_list(dialog_ctx) {
+ let list;
+
+ function validate_normalize_repo_url(repo_url) {
+ let error_msg;
+
+ /* In the future we might also try making a test connection. */
+ if (!/^https:\/\/[^/.]+\.[^/.]+/.test(repo_url))
+ error_msg = "Provided URL is not valid.";
+
+ if (!/^https:\/\//.test(repo_url))
+ error_msg = "Repository URLs shoud use https:// schema.";
+
+ if (error_msg) {
+ dialog.error(dialog_ctx, error_msg);
+ throw error_msg;
+ }
+
+ return repo_url.replace(/\/*$/, "/");
+ }
+
+ async function remove_repo(repo_url) {
+ dialog.loader(dialog_ctx, "Removing repository...");
+
+ try {
+ await haketilodb.del_repo(repo_url);
+ var removing_ok = true;
+ } finally {
+ if (!removing_ok)
+ dialog.error(dialog_ctx, "Failed to remove repository :(");
+
+ dialog.close(dialog_ctx);
+ }
+ }
+
+ async function create_repo(repo_url) {
+ repo_url = validate_normalize_repo_url(repo_url);
+
+ dialog.loader(dialog_ctx, "Adding repository...");
+
+ try {
+ await haketilodb.set_repo(repo_url);
+ var adding_ok = true;
+ } finally {
+ if (!adding_ok)
+ dialog.error(dialog_ctx, "Failed to add repository :(");
+
+ dialog.close(dialog_ctx);
+ }
+ }
+
+ async function replace_repo(old_repo_url, new_repo_url) {
+ if (old_repo_url === new_repo_url)
+ return;
+
+ new_repo_url = validate_normalize_repo_url(new_repo_url);
+
+ dialog.loader(dialog_ctx, "Replacing repository...");
+
+ try {
+ await haketilodb.set_repo(new_repo_url);
+ await haketilodb.del_repo(old_repo_url);
+ var replacing_ok = true;
+ } finally {
+ if (!replacing_ok)
+ dialog.error(dialog_ctx, "Failed to replace repository :(");
+
+ dialog.close(dialog_ctx);
+ }
+ }
+
+ function onchange(change) {
+ if (change.new_val)
+ list.add(change.key);
+ else
+ list.remove(change.key);
+ }
+
+ dialog.loader(dialog_ctx, "Loading repositories...");
+ const [tracking, items] = await haketilodb.track.repos(onchange);
+ dialog.close(dialog_ctx);
+
+ list = new TextEntryList(dialog_ctx, () => haketilodb.untrack(tracking),
+ remove_repo, create_repo, replace_repo);
+
+ items.forEach(item => list.add(item.url));
+
+ return list;
+}
+#EXPORT repo_list