/* ***** BEGIN LICENSE BLOCK ***** Copyright © 2011 Center for History and New Media George Mason University, Fairfax, Virginia, USA http://zotero.org This file is part of Zotero. Zotero is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Zotero 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with Zotero. If not, see . ***** END LICENSE BLOCK ***** */ var { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm"); Services.scriptloader.loadSubScript("chrome://zotero/content/include.js", this); Services.scriptloader.loadSubScript("chrome://zotero/content/customElements.js", this); var Scaffold_Load = new function () { this.onLoad = async function () { document.addEventListener('dialogaccept', () => this.accept()); var listitem, translator, listcell, set; var listbox = document.getElementById("listbox"); listbox.addEventListener('dblclick', () => { var translatorID = document.getElementById("listbox").selectedItem.dataset.zoteroID; if (!translatorID) return; this.accept(); window.close(); }); listbox.addEventListener('keypress', (e) => { if (e.key == ' ' && e.target == listbox) { e.preventDefault(); } }); var translators = {}; // Get the matching translators var translatorProvider = window.arguments[0].translatorProvider; var url = window.arguments[0].url; var rootUrl = window.arguments[0].rootUrl; url = Zotero.Proxies.proxyToProper(url); translators["Matching Translators"] = (await translatorProvider.getWebTranslatorsForLocation(url, rootUrl))[0]; translators["Web Translators"] = (await translatorProvider.getAllForType("web")) .sort((a, b) => a.label.localeCompare(b.label)); translators["Import Translators"] = (await translatorProvider.getAllForType("import")) .sort((a, b) => a.label.localeCompare(b.label)); translators["Export Translators"] = (await translatorProvider.getAllForType("export")) .sort((a, b) => a.label.localeCompare(b.label)); translators["Search Translators"] = (await translatorProvider.getAllForType("search")) .sort((a, b) => a.label.localeCompare(b.label)); for (set in translators) { // Make a separator listitem = document.createXULElement("richlistitem"); listitem.setAttribute("disabled", true); // Need to set this to disable up/down keys selecting: listitem.style.MozUserInput = 'none'; listitem.append(set); listbox.appendChild(listitem); for (var j = 0; j < translators[set].length; j++) { translator = translators[set][j]; listitem = document.createXULElement("richlistitem"); // set search label for type-to-find functionality. This is not displayed. listitem.searchLabel = translator.label; // And the ID goes in DOM user data listitem.dataset.zoteroID = translator.translatorID; listcell = document.createXULElement("hbox"); listcell.setAttribute('flex', '1'); listcell.append(translator.label); listitem.appendChild(listcell); listbox.appendChild(listitem); } } }; this.accept = function () { var translatorID = document.getElementById("listbox").selectedItem.dataset.zoteroID; var translator = window.arguments[0].translatorProvider.get(translatorID); Zotero.debug(translatorID); window.arguments[0].dataOut = translator; }; };