/**
* Myext HTML options page main script
*
* Copyright (C) 2021 Wojtek Kosior
*
* Dual-licensed under:
* - 0BSD license
* - GPLv3 or (at your option) any later version
*/
"use strict";
(() => {
const get_storage = window.get_storage;
const TYPE_PREFIX = window.TYPE_PREFIX;
const TYPE_NAME = window.TYPE_NAME;
const list_prefixes = window.list_prefixes;
var storage;
function by_id(id)
{
return document.getElementById(id);
}
const item_li_template = by_id("item_li_template");
const bag_component_li_template = by_id("bag_component_li_template");
const chbx_component_li_template = by_id("chbx_component_li_template");
const radio_component_li_template = by_id("radio_component_li_template");
/* Make sure they are later cloned without id. */
item_li_template.removeAttribute("id");
bag_component_li_template.removeAttribute("id");
chbx_component_li_template.removeAttribute("id");
radio_component_li_template.removeAttribute("id");
function item_li_id(prefix, item)
{
return `li_${prefix}_${item}`;
}
/* Insert into list of bags/pages/scripts */
function add_li(prefix, item, at_the_end=false)
{
let ul = ul_by_prefix[prefix];
let li = item_li_template.cloneNode(true);
li.id = item_li_id(prefix, item);
let span = li.firstElementChild;
span.textContent = item;
let edit_button = span.nextElementSibling;
edit_button.addEventListener("click", () => edit_item(prefix, item));
let remove_button = edit_button.nextElementSibling;
remove_button.addEventListener("click",
() => storage.remove(prefix, item));
if (!at_the_end) {
for (let element of ul.ul.children) {
if (element.id < li.id || element.id.startsWith("work_"))
continue;
ul.ul.insertBefore(li, element);
return;
}
}
ul.ul.appendChild(li);
}
const chbx_components_ul = by_id("chbx_components_ul");
const radio_components_ul = by_id("radio_components_ul");
function chbx_li_id(prefix, item)
{
return `cli_${prefix}_${item}`;
}
function radio_li_id(prefix, item)
{
return `rli_${prefix}_${item}`;
}
//TODO: refactor the 2 functions below
function add_chbx_li(prefix, name)
{
if (prefix === TYPE_PREFIX.PAGE)
return;
let li = chbx_component_li_template.cloneNode(true);
li.id = chbx_li_id(prefix, name);
li.setAttribute("data-prefix", prefix);
li.setAttribute("data-name", name);
let chbx = li.firstElementChild;
let span = chbx.nextElementSibling;
span.textContent = `${name} (${TYPE_NAME[prefix]})`;
chbx_components_ul.appendChild(li);
}
var radio_component_none_li = by_id("radio_component_none_li");
function add_radio_li(prefix, name)
{
if (prefix === TYPE_PREFIX.PAGE)
return;
let li = radio_component_li_template.cloneNode(true);
li.id = radio_li_id(prefix, name);
li.setAttribute("data-prefix", prefix);
li.setAttribute("data-name", name);
let radio = li.firstElementChild;
let span = radio.nextElementSibling;
span.textContent = `${name} (${TYPE_NAME[prefix]})`;
radio_components_ul.insertBefore(li, radio_component_none_li);
}
const page_payload_span = by_id("page_payload");
function set_page_components(components)
{
if (components === undefined) {
page_payload_span.setAttribute("data-payload", "no");
page_payload_span.textContent = "(None)";
} else {
page_payload_span.setAttribute("data-payload", "yes");
let [prefix, name] = components;
page_payload_span.setAttribute("data-prefix", prefix);
page_payload_span.setAttribute("data-name", name);
page_payload_span.textContent = `${name} (${TYPE_NAME[prefix]})`;
}
}
const page_allow_chbx = by_id("page_allow_chbx");
/* Used to reset edited page. */
function reset_work_page_li(ul, item, settings)
{
ul.work_name_input.value = item;
page_allow_chbx.checked = !!settings?.allow;
set_page_components(settings?.components);
}
function work_page_li_components()
{
if (page_payload_span.getAttribute("data-payload") === "no")
return undefined;
let prefix = page_payload_span.getAttribute("data-prefix");
let name = page_payload_span.getAttribute("data-name");
return [prefix, name];
}
/* Used to get edited page data for saving. */
function work_page_li_data(ul)
{
let url = ul.work_name_input.value;
let settings = {
components : work_page_li_components(),
allow : !!page_allow_chbx.checked
};
return [url, settings];
}
const empty_bag_component_li = by_id("empty_bag_component_li");
var bag_components_ul = by_id("bag_components_ul");
/* Used to construct and update components list of edited bag. */
function add_bag_components(components)
{
for (let component of components) {
let [prefix, name] = component;
let li = bag_component_li_template.cloneNode(true);
li.setAttribute("data-prefix", prefix);
li.setAttribute("data-name", name);
let span = li.firstElementChild;
span.textContent = `${name} (${TYPE_NAME[prefix]})`;
let remove_but = span.nextElementSibling;
remove_but.addEventListener("click", () =>
bag_components_ul.removeChild(li));
bag_components_ul.appendChild(li);
}
bag_components_ul.appendChild(empty_bag_component_li);
}
/* Used to reset edited bag. */
function reset_work_bag_li(ul, item, components)
{
if (item === undefined) {
item = "";
components = [];
};
ul.work_name_input.value = item;
let old_components_ul = bag_components_ul;
bag_components_ul = old_components_ul.cloneNode(false);
ul.work_li.insertBefore(bag_components_ul, old_components_ul);
ul.work_li.removeChild(old_components_ul);
add_bag_components(components);
}
/* Used to get edited bag data for saving. */
function work_bag_li_data(ul)
{
let components_ul = ul.work_name_input.nextElementSibling;
let component_li = components_ul.firstElementChild;
let components = [];
/* Last list element is empty li with id set. */
while (component_li.id === '') {
components.push([component_li.getAttribute("data-prefix"),
component_li.getAttribute("data-name")]);
component_li = component_li.nextElementSibling;
}
return [ul.work_name_input.value, components];
}
const script_url_input = by_id("script_url_field");
const script_sha256_input = by_id("script_sha256_field");
const script_contents_field = by_id("script_contents_field");
function maybe_string(maybe_defined)
{
return maybe_defined === undefined ? "" : maybe_defined + "";
}
/* Used to reset edited script. */
function reset_work_script_li(ul, name, data)
{
ul.work_name_input.value = maybe_string(name);
script_url_input.value = maybe_string(data?.url);
script_sha256_input.value = maybe_string(data?.hash);
script_contents_field.value = maybe_string(data?.text);
}
/* Used to get edited script data for saving. */
function work_script_li_data(ul)
{
return [ul.work_name_input.value, {
url : script_url_input.value,
hash : script_sha256_input.value,
text : script_contents_field.value
}];
}
function cancel_work(prefix)
{
let ul = ul_by_prefix[prefix];
if (ul.state === UL_STATE.IDLE)
return;
if (ul.state === UL_STATE.EDITING_ENTRY) {
add_li(prefix, ul.edited_item);
}
ul.work_li.classList.add("hide");
ul.state = UL_STATE.IDLE;
}
function save_work(prefix)
{
let ul = ul_by_prefix[prefix];
if (ul.state === UL_STATE.IDLE)
return;
let [item, data] = ul.get_work_li_data(ul);
/* Here we fire promises and return without waiting. */
if (ul.state === UL_STATE.EDITING_ENTRY)
storage.replace(prefix, ul.edited_item, item, data);
if (ul.state === UL_STATE.ADDING_ENTRY)
storage.set(prefix, item, data);
cancel_work(prefix);
}
function edit_item(prefix, item)
{
cancel_work(prefix);
let ul = ul_by_prefix[prefix];
let li = by_id(item_li_id(prefix, item));
ul.reset_work_li(ul, item, storage.get(prefix, item));
ul.ul.insertBefore(ul.work_li, li);
ul.ul.removeChild(li);
ul.work_li.classList.remove("hide");
ul.state = UL_STATE.EDITING_ENTRY;
ul.edited_item = item;
}
function add_new_item(prefix)
{
cancel_work(prefix);
let ul = ul_by_prefix[prefix];
ul.reset_work_li(ul);
ul.work_li.classList.remove("hide");
ul.ul.appendChild(ul.work_li);
ul.state = UL_STATE.ADDING_ENTRY;
}
const chbx_components_window = by_id("chbx_components_window");
function bag_components()
{
chbx_components_window.classList.remove("hide");
radio_components_window.classList.add("hide");
for (let li of chbx_components_ul.children) {
let chbx = li.firstElementChild;
chbx.checked = false;
}
}
function commit_bag_components()
{
let selected = [];
for (let li of chbx_components_ul.children) {
let chbx = li.firstElementChild;
if (!chbx.checked)
continue;
selected.push([li.getAttribute("data-prefix"),
li.getAttribute("data-name")]);
}
add_bag_components(selected);
cancel_components();
}
const radio_components_window = by_id("radio_components_window");
var radio_component_none_input = by_id("radio_component_none_input");
function page_components()
{
radio_components_window.classList.remove("hide");
chbx_components_window.classList.add("hide");
radio_component_none_input.checked = true;
let components = work_page_li_components();
if (components === undefined)
return;
let [prefix, item] = components;
let li = by_id(radio_li_id(prefix, item));
if (li === null)
radio_component_none_input.checked = false;
else
li.firstElementChild.checked = true;
}
function commit_page_components()
{
let components = null;
for (let li of radio_components_ul.children) {
let radio = li.firstElementChild;
if (!radio.checked)
continue;
components = [li.getAttribute("data-prefix"),
li.getAttribute("data-name")];
if (radio.id === "radio_component_none_input")
components = undefined;
break;
}
if (components !== null)
set_page_components(components);
cancel_components();
}
function cancel_components()
{
chbx_components_window.classList.add("hide");
radio_components_window.classList.add("hide");
}
const UL_STATE = {
EDITING_ENTRY : 0,
ADDING_ENTRY : 1,
IDLE : 2
};
const ul_by_prefix = {
[TYPE_PREFIX.PAGE] : {
ul : by_id("pages_ul"),
work_li : by_id("work_page_li"),
work_name_input : by_id("page_url_field"),
reset_work_li : reset_work_page_li,
get_work_li_data : work_page_li_data,
select_components : page_components,
commit_components : commit_page_components,
state : UL_STATE.IDLE,
edited_item : undefined,
},
[TYPE_PREFIX.BAG] : {
ul : by_id("bags_ul"),
work_li : by_id("work_bag_li"),
work_name_input : by_id("bag_name_field"),
reset_work_li : reset_work_bag_li,
get_work_li_data : work_bag_li_data,
select_components : bag_components,
commit_components : commit_bag_components,
state : UL_STATE.IDLE,
edited_item : undefined,
},
[TYPE_PREFIX.SCRIPT] : {
ul : by_id("scripts_ul"),
work_li : by_id("work_script_li"),
work_name_input : by_id("script_name_field"),
reset_work_li : reset_work_script_li,
get_work_li_data : work_script_li_data,
state : UL_STATE.IDLE,
edited_item : undefined,
}
}
async function main()
{
storage = await get_storage();
for (let prefix of list_prefixes) {
for (let item of storage.get_all_names(prefix).sort()) {
add_li(prefix, item, true);
add_chbx_li(prefix, item);
add_radio_li(prefix, item);
}
let name = TYPE_NAME[prefix];
let add_but = by_id(`add_${name}_but`);
let discard_but = by_id(`discard_${name}_but`);
let save_but = by_id(`save_${name}_but`);
add_but.addEventListener("click", () => add_new_item(prefix));
discard_but.addEventListener("click", () => cancel_work(prefix));
save_but.addEventListener("click", () => save_work(prefix));
if (prefix === TYPE_PREFIX.SCRIPT)
continue;
let ul = ul_by_prefix[prefix];
let commit_components_but = by_id(`commit_${name}_components_but`);
let cancel_components_but = by_id(`cancel_${name}_components_but`);
let select_components_but = by_id(`select_${name}_components_but`);
commit_components_but
.addEventListener("click", ul.commit_components);
select_components_but
.addEventListener("click", ul.select_components);
cancel_components_but.addEventListener("click", cancel_components);
}
storage.add_change_listener(handle_change);
}
function handle_change(change)
{
if (change.old_val === undefined) {
add_li(change.prefix, change.item);
add_chbx_li(change.prefix, change.item);
add_radio_li(change.prefix, change.item);
return;
}
if (change.new_val !== undefined)
return;
let ul = ul_by_prefix[change.prefix];
if (ul.state === UL_STATE.EDITING_ENTRY &&
ul.edited_item === change.item) {
ul.state = UL_STATE.ADDING_ENTRY;
return;
}
let uls_creators = [[ul.ul, item_li_id]];
if (change.prefix !== TYPE_PREFIX.PAGE) {
uls_creators.push([chbx_components_ul, chbx_li_id]);
uls_creators.push([radio_components_ul, radio_li_id]);
}
for (let [components_ul, id_creator] of uls_creators) {
let li = by_id(id_creator(change.prefix, change.item));
components_ul.remove_child(li);
}
}
main();
})();