/*
    ***** 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 = 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++) {
				var 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);
				listcell = document.createXULElement("hbox");
				listcell.setAttribute('width', '130');
				listcell.append(translator.creator);
				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;
	}
}