zotero/chrome/content/scaffold/load.js
2022-03-02 22:36:04 -05:00

88 lines
3.4 KiB
JavaScript

/*
***** 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 <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
var Scaffold_Load = new function() {
this.onLoad = Zotero.Promise.coroutine(function* () {
var listitem, translator, listcell, set;
var listbox = document.getElementById("listbox");
listbox.addEventListener('dblclick', () => {
var translatorID = document.getElementById("listbox").selectedItem.getUserData("zotero-id");
if (!translatorID) return;
this.accept();
window.close();
});
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"] = (yield translatorProvider.getWebTranslatorsForLocation(url, rootUrl))[0];
translators["Web Translators"] = (yield translatorProvider.getAllForType("web"))
.sort((a, b) => a.label.localeCompare(b.label));
translators["Import Translators"] = (yield translatorProvider.getAllForType("import"))
.sort((a, b) => a.label.localeCompare(b.label));
translators["Export Translators"] = (yield translatorProvider.getAllForType("export"))
.sort((a, b) => a.label.localeCompare(b.label));
translators["Search Translators"] = (yield translatorProvider.getAllForType("search"))
.sort((a, b) => a.label.localeCompare(b.label));
for (set in translators) {
// Make a separator
listitem = document.createElement("listitem");
listitem.setAttribute("disabled", true);
listitem.setAttribute("label", set);
listbox.appendChild(listitem);
for (var j=0; j<translators[set].length; j++) {
var translator = translators[set][j];
listitem = document.createElement("listitem");
// set label for type-to-find functionality. This is not displayed.
listitem.setAttribute("label", translator.label);
// And the ID goes in DOM user data
listitem.setUserData("zotero-id", translator.translatorID, null);
listcell = document.createElement("listcell");
listcell.setAttribute("label", translator.label);
listitem.appendChild(listcell);
listcell = document.createElement("listcell");
listcell.setAttribute("label", translator.creator);
listitem.appendChild(listcell);
listbox.appendChild(listitem);
}
}
});
this.accept = function () {
var translatorID = document.getElementById("listbox").selectedItem.getUserData("zotero-id");
var translator = window.arguments[0].translatorProvider.get(translatorID);
Zotero.debug(translatorID);
window.arguments[0].dataOut = translator;
}
}