5072 lines
146 KiB
JavaScript
5072 lines
146 KiB
JavaScript
/*
|
||
***** BEGIN LICENSE BLOCK *****
|
||
|
||
Copyright © 2009 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 *****
|
||
*/
|
||
|
||
/*
|
||
* This object contains the various functions for the interface
|
||
*/
|
||
var ZoteroPane = new function()
|
||
{
|
||
var _unserialized = false;
|
||
this.collectionsView = false;
|
||
this.itemsView = false;
|
||
this.progressWindow = false;
|
||
this._listeners = {};
|
||
this.__defineGetter__('loaded', function () { return _loaded; });
|
||
var _lastSelectedItems = [];
|
||
|
||
//Privileged methods
|
||
this.destroy = destroy;
|
||
this.isShowing = isShowing;
|
||
this.isFullScreen = isFullScreen;
|
||
this.handleKeyDown = handleKeyDown;
|
||
this.handleKeyUp = handleKeyUp;
|
||
this.setHighlightedRowsCallback = setHighlightedRowsCallback;
|
||
this.handleKeyPress = handleKeyPress;
|
||
this.getSelectedCollection = getSelectedCollection;
|
||
this.getSelectedSavedSearch = getSelectedSavedSearch;
|
||
this.getSelectedItems = getSelectedItems;
|
||
this.getSortedItems = getSortedItems;
|
||
this.getSortField = getSortField;
|
||
this.getSortDirection = getSortDirection;
|
||
this.setItemsPaneMessage = setItemsPaneMessage;
|
||
this.clearItemsPaneMessage = clearItemsPaneMessage;
|
||
this.contextPopupShowing = contextPopupShowing;
|
||
this.viewSelectedAttachment = viewSelectedAttachment;
|
||
this.reportErrors = reportErrors;
|
||
this.displayErrorMessage = displayErrorMessage;
|
||
|
||
this.document = document;
|
||
|
||
const COLLECTIONS_HEIGHT = 32; // minimum height of the collections pane and toolbar
|
||
|
||
var self = this,
|
||
_loaded = false, _madeVisible = false,
|
||
titlebarcolorState, titleState, observerService,
|
||
_reloadFunctions = [], _beforeReloadFunctions = [];
|
||
|
||
/**
|
||
* Called when the window containing Zotero pane is open
|
||
*/
|
||
this.init = function () {
|
||
Zotero.debug("Initializing Zotero pane");
|
||
|
||
// For now, keep actions menu in the DOM and show it in Firefox for development
|
||
if (!Zotero.isStandalone) {
|
||
document.getElementById('zotero-tb-actions-menu-separator').hidden = false;
|
||
document.getElementById('zotero-tb-actions-menu').hidden = false;
|
||
}
|
||
|
||
// Set "Report Errors..." label via property rather than DTD entity,
|
||
// since we need to reference it in script elsewhere
|
||
document.getElementById('zotero-tb-actions-reportErrors').setAttribute('label',
|
||
Zotero.getString('errorReport.reportErrors'));
|
||
// Set key down handler
|
||
document.getElementById('appcontent').addEventListener('keydown', ZoteroPane_Local.handleKeyDown, true);
|
||
|
||
// Hide or show the PDF recognizer button
|
||
Zotero.RecognizePDF.addListener('empty', function (row) {
|
||
document.getElementById('zotero-tb-recognize').hidden = true;
|
||
});
|
||
|
||
Zotero.RecognizePDF.addListener('nonempty', function (row) {
|
||
document.getElementById('zotero-tb-recognize').hidden = false;
|
||
});
|
||
|
||
_loaded = true;
|
||
|
||
var zp = document.getElementById('zotero-pane');
|
||
Zotero.setFontSize(zp);
|
||
ZoteroPane_Local.updateLayout();
|
||
ZoteroPane_Local.updateToolbarPosition();
|
||
this.updateWindow();
|
||
window.addEventListener("resize", () => {
|
||
this.updateWindow();
|
||
this.updateToolbarPosition();
|
||
});
|
||
window.setTimeout(ZoteroPane_Local.updateToolbarPosition, 0);
|
||
|
||
Zotero.updateQuickSearchBox(document);
|
||
|
||
if (Zotero.isMac) {
|
||
//document.getElementById('zotero-tb-actions-zeroconf-update').setAttribute('hidden', false);
|
||
document.getElementById('zotero-pane-stack').setAttribute('platform', 'mac');
|
||
} else if(Zotero.isWin) {
|
||
document.getElementById('zotero-pane-stack').setAttribute('platform', 'win');
|
||
}
|
||
|
||
// Set the sync tooltip label
|
||
Components.utils.import("resource://zotero/config.js");
|
||
document.getElementById('zotero-tb-sync-label').value = Zotero.getString(
|
||
'sync.syncWith', ZOTERO_CONFIG.DOMAIN_NAME
|
||
);
|
||
|
||
if (Zotero.isStandalone) {
|
||
document.getElementById('zotero-tb-feed-add-fromPage').hidden = true;
|
||
document.getElementById('zotero-tb-feed-add-fromPage-menu').hidden = true;
|
||
}
|
||
|
||
// register an observer for Zotero reload
|
||
observerService = Components.classes["@mozilla.org/observer-service;1"]
|
||
.getService(Components.interfaces.nsIObserverService);
|
||
observerService.addObserver(_reloadObserver, "zotero-reloaded", false);
|
||
observerService.addObserver(_reloadObserver, "zotero-before-reload", false);
|
||
this.addBeforeReloadListener(function(newMode) {
|
||
if(newMode == "connector") {
|
||
ZoteroPane_Local.setItemsPaneMessage(Zotero.getString('connector.standaloneOpen'));
|
||
}
|
||
return;
|
||
});
|
||
this.addReloadListener(_loadPane);
|
||
|
||
// continue loading pane
|
||
_loadPane();
|
||
};
|
||
|
||
/**
|
||
* Called on window load or when pane has been reloaded after switching into or out of connector
|
||
* mode
|
||
*/
|
||
function _loadPane() {
|
||
if(!Zotero || !Zotero.initialized || Zotero.isConnector) return;
|
||
|
||
// Set flags for hi-res displays
|
||
Zotero.hiDPI = window.devicePixelRatio > 1;
|
||
Zotero.hiDPISuffix = Zotero.hiDPI ? "@2x" : "";
|
||
|
||
ZoteroPane_Local.setItemsPaneMessage(Zotero.getString('pane.items.loading'));
|
||
|
||
// Add a default progress window
|
||
ZoteroPane_Local.progressWindow = new Zotero.ProgressWindow({ window });
|
||
|
||
//Initialize collections view
|
||
ZoteroPane_Local.collectionsView = new Zotero.CollectionTreeView();
|
||
// Handle an error in setTree()/refresh()
|
||
ZoteroPane_Local.collectionsView.onError = function (e) {
|
||
ZoteroPane_Local.displayErrorMessage();
|
||
};
|
||
var collectionsTree = document.getElementById('zotero-collections-tree');
|
||
collectionsTree.view = ZoteroPane_Local.collectionsView;
|
||
collectionsTree.controllers.appendController(new Zotero.CollectionTreeCommandController(collectionsTree));
|
||
collectionsTree.addEventListener("mousedown", ZoteroPane_Local.onTreeMouseDown, true);
|
||
collectionsTree.addEventListener("click", ZoteroPane_Local.onTreeClick, true);
|
||
|
||
// Clear items view, so that the load registers as a new selected collection when switching
|
||
// between modes
|
||
ZoteroPane_Local.itemsView = null;
|
||
|
||
var itemsTree = document.getElementById('zotero-items-tree');
|
||
itemsTree.controllers.appendController(new Zotero.ItemTreeCommandController(itemsTree));
|
||
itemsTree.addEventListener("mousedown", ZoteroPane_Local.onTreeMouseDown, true);
|
||
itemsTree.addEventListener("click", ZoteroPane_Local.onTreeClick, true);
|
||
|
||
var menu = document.getElementById("contentAreaContextMenu");
|
||
menu.addEventListener("popupshowing", ZoteroPane_Local.contextPopupShowing, false);
|
||
|
||
var tagSelector = document.getElementById('zotero-tag-selector');
|
||
tagSelector.onchange = function () {
|
||
return ZoteroPane_Local.updateTagFilter();
|
||
};
|
||
|
||
Zotero.Keys.windowInit(document);
|
||
|
||
if (Zotero.restoreFromServer) {
|
||
Zotero.restoreFromServer = false;
|
||
|
||
setTimeout(function () {
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
var buttonFlags = (ps.BUTTON_POS_0) * (ps.BUTTON_TITLE_IS_STRING)
|
||
+ (ps.BUTTON_POS_1) * (ps.BUTTON_TITLE_CANCEL);
|
||
var index = ps.confirmEx(
|
||
null,
|
||
"Zotero Restore",
|
||
"The local Zotero database has been cleared."
|
||
+ " "
|
||
+ "Would you like to restore from the Zotero server now?",
|
||
buttonFlags,
|
||
"Sync Now",
|
||
null, null, null, {}
|
||
);
|
||
|
||
if (index == 0) {
|
||
Zotero.Sync.Server.sync({
|
||
onSuccess: function () {
|
||
Zotero.Sync.Runner.updateIcons();
|
||
|
||
ps.alert(
|
||
null,
|
||
"Restore Completed",
|
||
"The local Zotero database has been successfully restored."
|
||
);
|
||
},
|
||
|
||
onError: function (msg) {
|
||
ps.alert(
|
||
null,
|
||
"Restore Failed",
|
||
"An error occurred while restoring from the server:\n\n"
|
||
+ msg
|
||
);
|
||
|
||
Zotero.Sync.Runner.error(msg);
|
||
}
|
||
});
|
||
}
|
||
}, 1000);
|
||
}
|
||
// If the database was initialized or there are no sync credentials and
|
||
// Zotero hasn't been run before in this profile, display the start page
|
||
// -- this way the page won't be displayed when they sync their DB to
|
||
// another profile or if the DB is initialized erroneously (e.g. while
|
||
// switching data directory locations)
|
||
else if (Zotero.Prefs.get('firstRun2')) {
|
||
if (Zotero.Schema.dbInitialized || !Zotero.Sync.Server.enabled) {
|
||
setTimeout(function () {
|
||
ZoteroPane_Local.loadURI(ZOTERO_CONFIG.START_URL);
|
||
}, 400);
|
||
}
|
||
Zotero.Prefs.set('firstRun2', false);
|
||
try {
|
||
Zotero.Prefs.clear('firstRun');
|
||
}
|
||
catch (e) {}
|
||
}
|
||
|
||
if (Zotero.openPane) {
|
||
Zotero.openPane = false;
|
||
setTimeout(function () {
|
||
ZoteroPane_Local.show();
|
||
}, 0);
|
||
}
|
||
|
||
// TEMP: Clean up extra files from Mendeley imports <5.0.51
|
||
setTimeout(async function () {
|
||
var needsCleanup = await Zotero.DB.valueQueryAsync(
|
||
"SELECT COUNT(*) FROM settings WHERE setting='mImport' AND key='cleanup'"
|
||
)
|
||
if (!needsCleanup) return;
|
||
|
||
Components.utils.import("chrome://zotero/content/import/mendeley/mendeleyImport.js");
|
||
var importer = new Zotero_Import_Mendeley();
|
||
importer.deleteNonPrimaryFiles();
|
||
}, 10000)
|
||
}
|
||
|
||
|
||
/*
|
||
* Create the New Item (+) submenu with each item type
|
||
*/
|
||
this.buildItemTypeSubMenu = function () {
|
||
var moreMenu = document.getElementById('zotero-tb-add-more');
|
||
|
||
while (moreMenu.hasChildNodes()) {
|
||
moreMenu.removeChild(moreMenu.firstChild);
|
||
}
|
||
|
||
// Sort by localized name
|
||
var t = Zotero.ItemTypes.getSecondaryTypes();
|
||
var itemTypes = [];
|
||
for (var i=0; i<t.length; i++) {
|
||
itemTypes.push({
|
||
id: t[i].id,
|
||
name: t[i].name,
|
||
localized: Zotero.ItemTypes.getLocalizedString(t[i].id)
|
||
});
|
||
}
|
||
var collation = Zotero.getLocaleCollation();
|
||
itemTypes.sort(function(a, b) {
|
||
return collation.compareString(1, a.localized, b.localized);
|
||
});
|
||
|
||
for (var i = 0; i<itemTypes.length; i++) {
|
||
var menuitem = document.createElement("menuitem");
|
||
menuitem.setAttribute("label", itemTypes[i].localized);
|
||
menuitem.setAttribute("tooltiptext", "");
|
||
let type = itemTypes[i].id;
|
||
menuitem.addEventListener("command", function() { ZoteroPane_Local.newItem(type, {}, null, true).done(); }, false);
|
||
moreMenu.appendChild(menuitem);
|
||
}
|
||
}
|
||
|
||
|
||
this.updateNewItemTypes = function () {
|
||
var addMenu = document.getElementById('zotero-tb-add').firstChild;
|
||
|
||
// Remove all nodes so we can regenerate
|
||
var options = addMenu.getElementsByAttribute("class", "zotero-tb-add");
|
||
while (options.length) {
|
||
var p = options[0].parentNode;
|
||
p.removeChild(options[0]);
|
||
}
|
||
|
||
var separator = addMenu.firstChild;
|
||
|
||
// Sort by localized name
|
||
var t = Zotero.ItemTypes.getPrimaryTypes();
|
||
var itemTypes = [];
|
||
for (var i=0; i<t.length; i++) {
|
||
itemTypes.push({
|
||
id: t[i].id,
|
||
name: t[i].name,
|
||
localized: Zotero.ItemTypes.getLocalizedString(t[i].id)
|
||
});
|
||
}
|
||
var collation = Zotero.getLocaleCollation();
|
||
itemTypes.sort(function(a, b) {
|
||
return collation.compareString(1, a.localized, b.localized);
|
||
});
|
||
|
||
for (var i = 0; i<itemTypes.length; i++) {
|
||
var menuitem = document.createElement("menuitem");
|
||
menuitem.setAttribute("label", itemTypes[i].localized);
|
||
menuitem.setAttribute("tooltiptext", "");
|
||
let type = itemTypes[i].id;
|
||
menuitem.addEventListener("command", function() { ZoteroPane_Local.newItem(type, {}, null, true).done(); }, false);
|
||
menuitem.className = "zotero-tb-add";
|
||
addMenu.insertBefore(menuitem, separator);
|
||
}
|
||
}
|
||
|
||
|
||
|
||
/*
|
||
* Called when the window closes
|
||
*/
|
||
function destroy()
|
||
{
|
||
if (!Zotero || !Zotero.initialized || !_loaded) {
|
||
return;
|
||
}
|
||
|
||
if(this.isShowing()) {
|
||
this.serializePersist();
|
||
}
|
||
|
||
var tagSelector = document.getElementById('zotero-tag-selector');
|
||
tagSelector.unregister();
|
||
|
||
if(this.collectionsView) this.collectionsView.unregister();
|
||
if(this.itemsView) this.itemsView.unregister();
|
||
|
||
observerService.removeObserver(_reloadObserver, "zotero-reloaded");
|
||
}
|
||
|
||
/**
|
||
* Called before Zotero pane is to be made visible
|
||
* @return {Boolean} True if Zotero pane should be loaded, false otherwise (if an error
|
||
* occurred)
|
||
*/
|
||
this.makeVisible = Zotero.Promise.coroutine(function* () {
|
||
if (Zotero.locked) {
|
||
Zotero.showZoteroPaneProgressMeter();
|
||
}
|
||
|
||
yield Zotero.unlockPromise;
|
||
|
||
// The items pane is hidden initially to avoid showing column lines
|
||
document.getElementById('zotero-items-tree').hidden = false;
|
||
Zotero.hideZoteroPaneOverlays();
|
||
|
||
// If pane not loaded, load it or display an error message
|
||
if (!ZoteroPane_Local.loaded) {
|
||
ZoteroPane_Local.init();
|
||
}
|
||
|
||
// If Zotero could not be initialized, display an error message and return
|
||
if (!Zotero || Zotero.skipLoading) {
|
||
this.displayStartupError();
|
||
return false;
|
||
}
|
||
|
||
if(!_madeVisible) {
|
||
this.buildItemTypeSubMenu();
|
||
}
|
||
_madeVisible = true;
|
||
|
||
this.unserializePersist();
|
||
this.updateLayout();
|
||
this.updateToolbarPosition();
|
||
this.updateTagSelectorSize();
|
||
|
||
// restore saved row selection (for tab switching)
|
||
// TODO: Remove now that no tab mode?
|
||
var containerWindow = window;
|
||
if(containerWindow.zoteroSavedCollectionSelection) {
|
||
this.collectionsView.onLoad.addListener(Zotero.Promise.coroutine(function* () {
|
||
yield this.collectionsView.selectByID(containerWindow.zoteroSavedCollectionSelection);
|
||
|
||
if (containerWindow.zoteroSavedItemSelection) {
|
||
this.itemsView.onLoad.addListener(function () {
|
||
this.itemsView.rememberSelection(containerWindow.zoteroSavedItemSelection);
|
||
delete containerWindow.zoteroSavedItemSelection;
|
||
}.bind(this));
|
||
}
|
||
|
||
delete containerWindow.zoteroSavedCollectionSelection;
|
||
}.bind(this)));
|
||
}
|
||
|
||
// Focus the quicksearch on pane open
|
||
var searchBar = document.getElementById('zotero-tb-search');
|
||
setTimeout(function () {
|
||
searchBar.inputField.select();
|
||
}, 1);
|
||
|
||
//
|
||
// TEMP: Remove after people are no longer upgrading from Zotero for Firefox
|
||
//
|
||
var showFxProfileWarning = false;
|
||
var pref = 'firstRun.skipFirefoxProfileAccessCheck';
|
||
if (Zotero.fxProfileAccessError != undefined && Zotero.fxProfileAccessError) {
|
||
showFxProfileWarning = true;
|
||
}
|
||
else if (!Zotero.Prefs.get(pref)) {
|
||
showFxProfileWarning = !(yield Zotero.Profile.checkFirefoxProfileAccess());
|
||
}
|
||
if (showFxProfileWarning) {
|
||
Zotero.uiReadyPromise.delay(2000).then(function () {
|
||
var ps = Services.prompt;
|
||
var buttonFlags = ps.BUTTON_POS_0 * ps.BUTTON_TITLE_IS_STRING
|
||
+ ps.BUTTON_POS_1 * ps.BUTTON_TITLE_IS_STRING;
|
||
var text = "Zotero was unable to access your Firefox profile to check for "
|
||
+ "existing Zotero data.\n\n"
|
||
+ "If you’ve upgraded from Zotero 4.0 for Firefox and don’t see the data "
|
||
+ "you expect, it may be located elsewhere on your computer. "
|
||
+ "Click “More Information” for help restoring your previous data.\n\n"
|
||
+ "If you’re new to Zotero, you can ignore this message.";
|
||
var url = 'https://www.zotero.org/support/kb/data_missing_after_zotero_5_upgrade';
|
||
var dontShowAgain = {};
|
||
let index = ps.confirmEx(null,
|
||
Zotero.getString('general.warning'),
|
||
text,
|
||
buttonFlags,
|
||
Zotero.getString('general.moreInformation'),
|
||
"Ignore",
|
||
null,
|
||
Zotero.getString('general.dontShowAgain'),
|
||
dontShowAgain
|
||
);
|
||
if (dontShowAgain.value) {
|
||
Zotero.Prefs.set(pref, true)
|
||
}
|
||
if (index == 0) {
|
||
this.loadURI(url);
|
||
}
|
||
}.bind(this));
|
||
}
|
||
// Once we successfully find it once, don't bother checking again
|
||
else {
|
||
Zotero.Prefs.set(pref, true);
|
||
}
|
||
|
||
// Auto-sync on pane open or if new account
|
||
if (Zotero.Prefs.get('sync.autoSync') || Zotero.initAutoSync) {
|
||
yield Zotero.proxyAuthComplete;
|
||
yield Zotero.uiReadyPromise;
|
||
|
||
if (!Zotero.Sync.Runner.enabled) {
|
||
Zotero.debug('Sync not enabled -- skipping auto-sync', 4);
|
||
}
|
||
else if (Zotero.Sync.Runner.syncInProgress) {
|
||
Zotero.debug('Sync already running -- skipping auto-sync', 4);
|
||
}
|
||
else if (Zotero.Sync.Server.manualSyncRequired) {
|
||
Zotero.debug('Manual sync required -- skipping auto-sync', 4);
|
||
}
|
||
else if (showFxProfileWarning) {
|
||
Zotero.debug('Firefox profile access error -- skipping initial auto-sync', 4);
|
||
}
|
||
else {
|
||
Zotero.Sync.Runner.sync({
|
||
background: true
|
||
}).then(() => Zotero.initAutoSync = false);
|
||
}
|
||
}
|
||
|
||
// Set sync icon to spinning if there's an existing sync
|
||
//
|
||
// We don't bother setting an existing error state at open
|
||
if (Zotero.Sync.Runner.syncInProgress) {
|
||
Zotero.Sync.Runner.updateIcons('animate');
|
||
}
|
||
|
||
return true;
|
||
});
|
||
|
||
/**
|
||
* Function to be called before ZoteroPane_Local is hidden. Does not actually hide the Zotero pane.
|
||
*/
|
||
this.makeHidden = function() {
|
||
this.serializePersist();
|
||
}
|
||
|
||
function isShowing() {
|
||
var zoteroPane = document.getElementById('zotero-pane-stack');
|
||
return zoteroPane
|
||
&& zoteroPane.getAttribute('hidden') != 'true'
|
||
&& zoteroPane.getAttribute('collapsed') != 'true';
|
||
}
|
||
|
||
function isFullScreen() {
|
||
return document.getElementById('zotero-pane-stack').getAttribute('fullscreenmode') == 'true';
|
||
}
|
||
|
||
|
||
/*
|
||
* Trigger actions based on keyboard shortcuts
|
||
*/
|
||
function handleKeyDown(event, from) {
|
||
try {
|
||
// Ignore keystrokes outside of Zotero pane
|
||
if (!(event.originalTarget.ownerDocument instanceof XULDocument)) {
|
||
return;
|
||
}
|
||
}
|
||
catch (e) {
|
||
Zotero.debug(e);
|
||
}
|
||
|
||
if (Zotero.locked) {
|
||
event.preventDefault();
|
||
return;
|
||
}
|
||
|
||
if (from == 'zotero-pane') {
|
||
// Highlight collections containing selected items
|
||
//
|
||
// We use Control (17) on Windows because Alt triggers the menubar;
|
||
// otherwise we use Alt/Option (18)
|
||
if ((Zotero.isWin && event.keyCode == 17 && !event.altKey) ||
|
||
(!Zotero.isWin && event.keyCode == 18 && !event.ctrlKey)
|
||
&& !event.shiftKey && !event.metaKey) {
|
||
|
||
this.highlightTimer = Components.classes["@mozilla.org/timer;1"].
|
||
createInstance(Components.interfaces.nsITimer);
|
||
// {} implements nsITimerCallback
|
||
this.highlightTimer.initWithCallback({
|
||
notify: ZoteroPane_Local.setHighlightedRowsCallback
|
||
}, 225, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
|
||
}
|
||
// Unhighlight on key up
|
||
else if ((Zotero.isWin && event.ctrlKey) ||
|
||
(!Zotero.isWin && event.altKey)) {
|
||
if (this.highlightTimer) {
|
||
this.highlightTimer.cancel();
|
||
this.highlightTimer = null;
|
||
}
|
||
ZoteroPane_Local.collectionsView.setHighlightedRows();
|
||
}
|
||
}
|
||
}
|
||
|
||
function handleKeyUp(event) {
|
||
var from = event.originalTarget.id;
|
||
if (from == 'zotero-items-tree') {
|
||
if ((Zotero.isWin && event.keyCode == 17) ||
|
||
(!Zotero.isWin && event.keyCode == 18)) {
|
||
if (this.highlightTimer) {
|
||
this.highlightTimer.cancel();
|
||
this.highlightTimer = null;
|
||
}
|
||
ZoteroPane_Local.collectionsView.setHighlightedRows();
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/*
|
||
* Highlights collections containing selected items on Ctrl (Win) or
|
||
* Option/Alt (Mac/Linux) press
|
||
*/
|
||
function setHighlightedRowsCallback() {
|
||
var itemIDs = ZoteroPane_Local.getSelectedItems(true);
|
||
// If no items or an unreasonable number, don't try
|
||
if (!itemIDs || !itemIDs.length || itemIDs.length > 100) return;
|
||
|
||
Zotero.Promise.coroutine(function* () {
|
||
var collectionIDs = yield Zotero.Collections.getCollectionsContainingItems(itemIDs, true);
|
||
var ids = collectionIDs.map(id => "C" + id);
|
||
var userLibraryID = Zotero.Libraries.userLibraryID;
|
||
var allInPublications = Zotero.Items.get(itemIDs).every((item) => {
|
||
return item.libraryID == userLibraryID && item.inPublications;
|
||
})
|
||
if (allInPublications) {
|
||
ids.push("P" + Zotero.Libraries.userLibraryID);
|
||
}
|
||
if (ids.length) {
|
||
ZoteroPane_Local.collectionsView.setHighlightedRows(ids);
|
||
}
|
||
})();
|
||
}
|
||
|
||
|
||
function handleKeyPress(event) {
|
||
var from = event.originalTarget.id;
|
||
|
||
// Ignore keystrokes if Zotero pane is closed
|
||
var zoteroPane = document.getElementById('zotero-pane-stack');
|
||
if (zoteroPane.getAttribute('hidden') == 'true' ||
|
||
zoteroPane.getAttribute('collapsed') == 'true') {
|
||
return;
|
||
}
|
||
|
||
if (Zotero.locked) {
|
||
event.preventDefault();
|
||
return;
|
||
}
|
||
|
||
var key = String.fromCharCode(event.which);
|
||
if (key) {
|
||
var command = Zotero.Keys.getCommand(key);
|
||
}
|
||
|
||
if (from == 'zotero-collections-tree') {
|
||
if ((event.keyCode == event.DOM_VK_BACK_SPACE && Zotero.isMac) ||
|
||
event.keyCode == event.DOM_VK_DELETE) {
|
||
var deleteItems = event.metaKey || (!Zotero.isMac && event.shiftKey);
|
||
ZoteroPane_Local.deleteSelectedCollection(deleteItems);
|
||
event.preventDefault();
|
||
return;
|
||
}
|
||
}
|
||
else if (from == 'zotero-items-tree') {
|
||
// Focus TinyMCE explicitly on tab key, since the normal focusing doesn't work right
|
||
if (!event.shiftKey && event.keyCode == event.DOM_VK_TAB) {
|
||
var deck = document.getElementById('zotero-item-pane-content');
|
||
if (deck.selectedPanel.id == 'zotero-view-note') {
|
||
document.getElementById('zotero-note-editor').focus();
|
||
event.preventDefault();
|
||
return;
|
||
}
|
||
}
|
||
else if ((event.keyCode == event.DOM_VK_BACK_SPACE && Zotero.isMac) ||
|
||
event.keyCode == event.DOM_VK_DELETE) {
|
||
// If Cmd/Shift delete, use forced mode, which does different
|
||
// things depending on the context
|
||
var force = event.metaKey || (!Zotero.isMac && event.shiftKey);
|
||
ZoteroPane_Local.deleteSelectedItems(force);
|
||
event.preventDefault();
|
||
return;
|
||
}
|
||
else if (event.keyCode == event.DOM_VK_RETURN) {
|
||
var items = this.itemsView.getSelectedItems();
|
||
// Don't do anything if more than 20 items selected
|
||
if (!items.length || items.length > 20) {
|
||
return;
|
||
}
|
||
ZoteroPane_Local.viewItems(items, event);
|
||
// These don't seem to do anything. Instead we override
|
||
// the tree binding's _handleEnter method in itemTreeView.js.
|
||
//event.preventDefault();
|
||
//event.stopPropagation();
|
||
return;
|
||
}
|
||
else if (command == 'toggleRead') {
|
||
// Toggle read/unread
|
||
let row = this.collectionsView.getRow(this.collectionsView.selection.currentIndex);
|
||
if (!row || !row.isFeed()) return;
|
||
this.toggleSelectedItemsRead();
|
||
if (itemReadPromise) {
|
||
itemReadPromise.cancel();
|
||
itemReadPromise = null;
|
||
}
|
||
return;
|
||
}
|
||
}
|
||
|
||
// Ignore modifiers other than Ctrl-Shift/Cmd-Shift
|
||
if (!((Zotero.isMac ? event.metaKey : event.ctrlKey) && event.shiftKey)) {
|
||
return;
|
||
}
|
||
|
||
if (!key) {
|
||
Zotero.debug('No key');
|
||
return;
|
||
}
|
||
|
||
if (!command) {
|
||
return;
|
||
}
|
||
|
||
Zotero.debug('Keyboard shortcut: ' + command);
|
||
|
||
// Errors don't seem to make it out otherwise
|
||
try {
|
||
switch (command) {
|
||
case 'openZotero':
|
||
try {
|
||
// Ignore Cmd-Shift-Z keystroke in text areas
|
||
if (Zotero.isMac && key == 'Z' &&
|
||
(event.originalTarget.localName == 'input'
|
||
|| event.originalTarget.localName == 'textarea')) {
|
||
try {
|
||
var isSearchBar = event.originalTarget.parentNode.parentNode.id == 'zotero-tb-search';
|
||
}
|
||
catch (e) {
|
||
Zotero.debug(e, 1);
|
||
Components.utils.reportError(e);
|
||
}
|
||
if (!isSearchBar) {
|
||
Zotero.debug('Ignoring keystroke in text field');
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
catch (e) {
|
||
Zotero.debug(e);
|
||
}
|
||
if (window.ZoteroOverlay) window.ZoteroOverlay.toggleDisplay()
|
||
break;
|
||
case 'library':
|
||
document.getElementById('zotero-collections-tree').focus();
|
||
break;
|
||
case 'quicksearch':
|
||
document.getElementById('zotero-tb-search').select();
|
||
break;
|
||
case 'newItem':
|
||
Zotero.Promise.coroutine(function* () {
|
||
// Default to most recent item type from here or the
|
||
// New Type menu
|
||
var mru = Zotero.Prefs.get('newItemTypeMRU');
|
||
// Or fall back to 'book'
|
||
var typeID = mru ? mru.split(',')[0] : 2;
|
||
yield ZoteroPane_Local.newItem(typeID);
|
||
let itemBox = document.getElementById('zotero-editpane-item-box');
|
||
var menu = itemBox.itemTypeMenu;
|
||
var self = this;
|
||
var handleTypeChange = function () {
|
||
self.addItemTypeToNewItemTypeMRU(this.itemTypeMenu.value);
|
||
itemBox.removeHandler('itemtypechange', handleTypeChange);
|
||
};
|
||
// Only update the MRU when the menu is opened for the
|
||
// keyboard shortcut, not on subsequent opens
|
||
var removeTypeChangeHandler = function () {
|
||
itemBox.removeHandler('itemtypechange', handleTypeChange);
|
||
itemBox.itemTypeMenu.firstChild.removeEventListener('popuphiding', removeTypeChangeHandler);
|
||
// Focus the title field after menu closes
|
||
itemBox.focusFirstField();
|
||
};
|
||
itemBox.addHandler('itemtypechange', handleTypeChange);
|
||
itemBox.itemTypeMenu.firstChild.addEventListener('popuphiding', removeTypeChangeHandler);
|
||
|
||
menu.focus();
|
||
document.getElementById('zotero-editpane-item-box').itemTypeMenu.menupopup.openPopup(menu, "before_start", 0, 0);
|
||
})();
|
||
break;
|
||
case 'newNote':
|
||
// If a regular item is selected, use that as the parent.
|
||
// If a child item is selected, use its parent as the parent.
|
||
// Otherwise create a standalone note.
|
||
var parentKey = false;
|
||
var items = ZoteroPane_Local.getSelectedItems();
|
||
if (items.length == 1) {
|
||
if (items[0].isRegularItem()) {
|
||
parentKey = items[0].key;
|
||
}
|
||
else {
|
||
parentKey = items[0].parentItemKey;
|
||
}
|
||
}
|
||
// Use key that's not the modifier as the popup toggle
|
||
ZoteroPane_Local.newNote(event.altKey, parentKey);
|
||
break;
|
||
case 'toggleTagSelector':
|
||
ZoteroPane_Local.toggleTagSelector();
|
||
break;
|
||
case 'sync':
|
||
Zotero.Sync.Runner.sync();
|
||
break;
|
||
case 'saveToZotero':
|
||
var collectionTreeRow = this.collectionsView.selectedTreeRow;
|
||
if (collectionTreeRow.isFeed()) {
|
||
ZoteroItemPane.translateSelectedItems();
|
||
} else {
|
||
Zotero.debug(command + ' does not do anything in non-feed views')
|
||
}
|
||
break;
|
||
case 'toggleAllRead':
|
||
var collectionTreeRow = this.collectionsView.selectedTreeRow;
|
||
if (collectionTreeRow.isFeed()) {
|
||
this.markFeedRead();
|
||
}
|
||
break;
|
||
|
||
// Handled by <key>s in standalone.js, pointing to <command>s in zoteroPane.xul,
|
||
// which are enabled or disabled by this.updateQuickCopyCommands(), called by
|
||
// this.itemSelected()
|
||
case 'copySelectedItemCitationsToClipboard':
|
||
case 'copySelectedItemsToClipboard':
|
||
return;
|
||
|
||
default:
|
||
throw ('Command "' + command + '" not found in ZoteroPane_Local.handleKeyDown()');
|
||
}
|
||
}
|
||
catch (e) {
|
||
Zotero.debug(e, 1);
|
||
Components.utils.reportError(e);
|
||
}
|
||
|
||
event.preventDefault();
|
||
}
|
||
|
||
|
||
/*
|
||
* Create a new item
|
||
*
|
||
* _data_ is an optional object with field:value for itemData
|
||
*/
|
||
this.newItem = Zotero.Promise.coroutine(function* (typeID, data, row, manual)
|
||
{
|
||
if ((row === undefined || row === null) && this.collectionsView.selection) {
|
||
row = this.collectionsView.selection.currentIndex;
|
||
|
||
// Make sure currently selected view is editable
|
||
if (!this.canEdit(row)) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
}
|
||
|
||
yield ZoteroItemPane.blurOpenField();
|
||
|
||
if (row !== undefined && row !== null) {
|
||
var collectionTreeRow = this.collectionsView.getRow(row);
|
||
var libraryID = collectionTreeRow.ref.libraryID;
|
||
}
|
||
else {
|
||
var libraryID = Zotero.Libraries.userLibraryID;
|
||
var collectionTreeRow = null;
|
||
}
|
||
|
||
let itemID;
|
||
yield Zotero.DB.executeTransaction(function* () {
|
||
var item = new Zotero.Item(typeID);
|
||
item.libraryID = libraryID;
|
||
for (var i in data) {
|
||
item.setField(i, data[i]);
|
||
}
|
||
itemID = yield item.save();
|
||
|
||
if (collectionTreeRow && collectionTreeRow.isCollection()) {
|
||
yield collectionTreeRow.ref.addItem(itemID);
|
||
}
|
||
});
|
||
|
||
//set to Info tab
|
||
document.getElementById('zotero-view-item').selectedIndex = 0;
|
||
|
||
if (manual) {
|
||
// Update most-recently-used list for New Item menu
|
||
this.addItemTypeToNewItemTypeMRU(typeID);
|
||
|
||
// Focus the title field
|
||
document.getElementById('zotero-editpane-item-box').focusFirstField();
|
||
}
|
||
|
||
return Zotero.Items.getAsync(itemID);
|
||
});
|
||
|
||
|
||
this.addItemTypeToNewItemTypeMRU = function (itemTypeID) {
|
||
var mru = Zotero.Prefs.get('newItemTypeMRU');
|
||
if (mru) {
|
||
var mru = mru.split(',');
|
||
var pos = mru.indexOf(itemTypeID + '');
|
||
if (pos != -1) {
|
||
mru.splice(pos, 1);
|
||
}
|
||
mru.unshift(itemTypeID);
|
||
}
|
||
else {
|
||
var mru = [itemTypeID + ''];
|
||
}
|
||
Zotero.Prefs.set('newItemTypeMRU', mru.slice(0, 5).join(','));
|
||
}
|
||
|
||
|
||
this.newCollection = Zotero.Promise.coroutine(function* (parentKey) {
|
||
if (!this.canEditLibrary()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var libraryID = this.getSelectedLibraryID();
|
||
|
||
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
var untitled = yield Zotero.DB.getNextName(
|
||
libraryID,
|
||
'collections',
|
||
'collectionName',
|
||
Zotero.getString('pane.collections.untitled')
|
||
);
|
||
|
||
var newName = { value: untitled };
|
||
var result = promptService.prompt(window,
|
||
Zotero.getString('pane.collections.newCollection'),
|
||
Zotero.getString('pane.collections.name'), newName, "", {});
|
||
|
||
if (!result)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (!newName.value)
|
||
{
|
||
newName.value = untitled;
|
||
}
|
||
|
||
var collection = new Zotero.Collection;
|
||
collection.libraryID = libraryID;
|
||
collection.name = newName.value;
|
||
collection.parentKey = parentKey;
|
||
return collection.saveTx();
|
||
});
|
||
|
||
this.importFeedsFromOPML = Zotero.Promise.coroutine(function* (event) {
|
||
var nsIFilePicker = Components.interfaces.nsIFilePicker;
|
||
while (true) {
|
||
var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
|
||
fp.init(window, Zotero.getString('fileInterface.importOPML'), nsIFilePicker.modeOpen);
|
||
fp.appendFilter(Zotero.getString('fileInterface.OPMLFeedFilter'), '*.opml; *.xml');
|
||
fp.appendFilters(nsIFilePicker.filterAll);
|
||
if (fp.show() == nsIFilePicker.returnOK) {
|
||
var contents = yield Zotero.File.getContentsAsync(fp.file.path);
|
||
var success = yield Zotero.Feeds.importFromOPML(contents);
|
||
if (success) {
|
||
return true;
|
||
}
|
||
// Try again
|
||
Zotero.alert(window, Zotero.getString('general.error'), Zotero.getString('fileInterface.unsupportedFormat'));
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
});
|
||
|
||
this.newFeedFromPage = Zotero.Promise.coroutine(function* (event) {
|
||
let data = {unsaved: true};
|
||
if (event) {
|
||
data.url = event.target.getAttribute('feed');
|
||
} else {
|
||
data.url = gBrowser.selectedBrowser.feeds[0].href;
|
||
}
|
||
window.openDialog('chrome://zotero/content/feedSettings.xul',
|
||
null, 'centerscreen, modal', data);
|
||
if (!data.cancelled) {
|
||
let feed = new Zotero.Feed();
|
||
feed.url = data.url;
|
||
feed.name = data.title;
|
||
feed.refreshInterval = data.ttl;
|
||
feed.cleanupReadAfter = data.cleanupReadAfter;
|
||
feed.cleanupUnreadAfter = data.cleanupUnreadAfter;
|
||
yield feed.saveTx();
|
||
yield feed.updateFeed();
|
||
}
|
||
});
|
||
|
||
this.newFeedFromURL = Zotero.Promise.coroutine(function* () {
|
||
let data = {};
|
||
window.openDialog('chrome://zotero/content/feedSettings.xul',
|
||
null, 'centerscreen, modal', data);
|
||
if (!data.cancelled) {
|
||
let feed = new Zotero.Feed();
|
||
feed.url = data.url;
|
||
feed.name = data.title;
|
||
feed.refreshInterval = data.ttl;
|
||
feed.cleanupReadAfter = data.cleanupReadAfter;
|
||
feed.cleanupUnreadAfter = data.cleanupUnreadAfter;
|
||
yield feed.saveTx();
|
||
yield feed.updateFeed();
|
||
}
|
||
});
|
||
|
||
this.newGroup = function () {
|
||
this.loadURI(Zotero.Groups.addGroupURL);
|
||
}
|
||
|
||
|
||
this.newSearch = Zotero.Promise.coroutine(function* () {
|
||
if (Zotero.DB.inTransaction()) {
|
||
yield Zotero.DB.waitForTransaction();
|
||
}
|
||
|
||
var s = new Zotero.Search();
|
||
s.libraryID = this.getSelectedLibraryID();
|
||
s.addCondition('title', 'contains', '');
|
||
|
||
var untitled = Zotero.getString('pane.collections.untitled');
|
||
untitled = yield Zotero.DB.getNextName(
|
||
s.libraryID,
|
||
'savedSearches',
|
||
'savedSearchName',
|
||
Zotero.getString('pane.collections.untitled')
|
||
);
|
||
var io = {dataIn: {search: s, name: untitled}, dataOut: null};
|
||
window.openDialog('chrome://zotero/content/searchDialog.xul','','chrome,modal',io);
|
||
if (!io.dataOut) {
|
||
return false;
|
||
}
|
||
s.fromJSON(io.dataOut.json);
|
||
yield s.saveTx();
|
||
return s.id;
|
||
});
|
||
|
||
|
||
this.setVirtual = Zotero.Promise.coroutine(function* (libraryID, type, show) {
|
||
switch (type) {
|
||
case 'duplicates':
|
||
var treeViewID = 'D' + libraryID;
|
||
break;
|
||
|
||
case 'unfiled':
|
||
var treeViewID = 'U' + libraryID;
|
||
break;
|
||
|
||
default:
|
||
throw new Error("Invalid virtual collection type '" + type + "'");
|
||
}
|
||
|
||
Zotero.Utilities.Internal.setVirtualCollectionStateForLibrary(libraryID, type, show);
|
||
|
||
var cv = this.collectionsView;
|
||
|
||
var promise = cv.waitForSelect();
|
||
var selectedRow = cv.selection.currentIndex;
|
||
|
||
yield cv.refresh();
|
||
|
||
// Select new row
|
||
if (show) {
|
||
yield this.collectionsView.selectByID(treeViewID);
|
||
}
|
||
// Select next appropriate row after removal
|
||
else {
|
||
this.collectionsView.selectAfterRowRemoval(selectedRow);
|
||
}
|
||
|
||
this.collectionsView.selection.selectEventsSuppressed = false;
|
||
|
||
return promise;
|
||
});
|
||
|
||
|
||
this.openLookupWindow = Zotero.Promise.coroutine(function* () {
|
||
if (Zotero.DB.inTransaction()) {
|
||
yield Zotero.DB.waitForTransaction();
|
||
}
|
||
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
window.openDialog('chrome://zotero/content/lookup.xul', 'zotero-lookup', 'chrome,modal');
|
||
});
|
||
|
||
|
||
this.openAdvancedSearchWindow = function () {
|
||
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
||
.getService(Components.interfaces.nsIWindowMediator);
|
||
var enumerator = wm.getEnumerator('zotero:search');
|
||
while (enumerator.hasMoreElements()) {
|
||
var win = enumerator.getNext();
|
||
}
|
||
|
||
if (win) {
|
||
win.focus();
|
||
return;
|
||
}
|
||
|
||
var s = new Zotero.Search();
|
||
s.libraryID = this.getSelectedLibraryID();
|
||
s.addCondition('title', 'contains', '');
|
||
|
||
var io = {dataIn: {search: s}, dataOut: null};
|
||
window.openDialog('chrome://zotero/content/advancedSearch.xul', '', 'chrome,dialog=no,centerscreen', io);
|
||
};
|
||
|
||
|
||
this.toggleTagSelector = Zotero.Promise.coroutine(function* () {
|
||
var tagSelector = document.getElementById('zotero-tag-selector');
|
||
|
||
var showing = tagSelector.getAttribute('collapsed') == 'true';
|
||
tagSelector.setAttribute('collapsed', !showing);
|
||
this.updateTagSelectorSize();
|
||
|
||
// If showing, set scope to items in current view
|
||
// and focus filter textbox
|
||
if (showing) {
|
||
yield this.setTagScope();
|
||
tagSelector.focusTextbox();
|
||
}
|
||
// If hiding, clear selection
|
||
else {
|
||
tagSelector.uninit();
|
||
}
|
||
});
|
||
|
||
|
||
this.updateTagSelectorSize = function () {
|
||
//Zotero.debug('Updating tag selector size');
|
||
var zoteroPane = document.getElementById('zotero-pane-stack');
|
||
var splitter = document.getElementById('zotero-tags-splitter');
|
||
var tagSelector = document.getElementById('zotero-tag-selector');
|
||
|
||
// Nothing should be bigger than appcontent's height
|
||
var max = document.getElementById('appcontent').boxObject.height
|
||
- splitter.boxObject.height;
|
||
|
||
// Shrink tag selector to appcontent's height
|
||
var maxTS = max - COLLECTIONS_HEIGHT;
|
||
if (parseInt(tagSelector.getAttribute("height")) > maxTS) {
|
||
//Zotero.debug("Limiting tag selector height to appcontent");
|
||
tagSelector.setAttribute('height', maxTS);
|
||
}
|
||
|
||
var height = tagSelector.boxObject.height;
|
||
|
||
|
||
/*Zotero.debug("tagSelector.boxObject.height: " + tagSelector.boxObject.height);
|
||
Zotero.debug("tagSelector.getAttribute('height'): " + tagSelector.getAttribute('height'));
|
||
Zotero.debug("zoteroPane.boxObject.height: " + zoteroPane.boxObject.height);
|
||
Zotero.debug("zoteroPane.getAttribute('height'): " + zoteroPane.getAttribute('height'));*/
|
||
|
||
|
||
// Don't let the Z-pane jump back down to its previous height
|
||
// (if shrinking or hiding the tag selector let it clear the min-height)
|
||
if (zoteroPane.getAttribute('height') < zoteroPane.boxObject.height) {
|
||
//Zotero.debug("Setting Zotero pane height attribute to " + zoteroPane.boxObject.height);
|
||
zoteroPane.setAttribute('height', zoteroPane.boxObject.height);
|
||
}
|
||
|
||
if (tagSelector.getAttribute('collapsed') == 'true') {
|
||
// 32px is the default Z pane min-height in overlay.css
|
||
height = 32;
|
||
}
|
||
else {
|
||
// tS.boxObject.height doesn't exist at startup, so get from attribute
|
||
if (!height) {
|
||
height = parseInt(tagSelector.getAttribute('height'));
|
||
}
|
||
// 121px seems to be enough room for the toolbar and collections
|
||
// tree at minimum height
|
||
height = height + COLLECTIONS_HEIGHT;
|
||
}
|
||
|
||
//Zotero.debug('Setting Zotero pane minheight to ' + height);
|
||
zoteroPane.setAttribute('minheight', height);
|
||
|
||
if (this.isShowing() && !this.isFullScreen()) {
|
||
zoteroPane.setAttribute('savedHeight', zoteroPane.boxObject.height);
|
||
}
|
||
|
||
// Fix bug whereby resizing the Z pane downward after resizing
|
||
// the tag selector up and then down sometimes caused the Z pane to
|
||
// stay at a fixed size and get pushed below the bottom
|
||
tagSelector.height++;
|
||
tagSelector.height--;
|
||
}
|
||
|
||
|
||
function getTagSelection() {
|
||
var tagSelector = document.getElementById('zotero-tag-selector');
|
||
return tagSelector.selection ? tagSelector.selection : new Set();
|
||
}
|
||
|
||
|
||
this.clearTagSelection = function () {
|
||
document.getElementById('zotero-tag-selector').deselectAll();
|
||
}
|
||
|
||
|
||
/*
|
||
* Sets the tag filter on the items view
|
||
*/
|
||
this.updateTagFilter = Zotero.Promise.coroutine(function* () {
|
||
if (this.itemsView) {
|
||
yield this.itemsView.setFilter('tags', getTagSelection());
|
||
}
|
||
});
|
||
|
||
|
||
this.tagSelectorShown = function () {
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
if (!collectionTreeRow) return;
|
||
var tagSelector = document.getElementById('zotero-tag-selector');
|
||
return !tagSelector.getAttribute('collapsed')
|
||
|| tagSelector.getAttribute('collapsed') == 'false';
|
||
};
|
||
|
||
|
||
/*
|
||
* Set the tags scope to the items in the current view
|
||
*
|
||
* Passed to the items tree to trigger on changes
|
||
*/
|
||
this.setTagScope = Zotero.Promise.coroutine(function* () {
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
var tagSelector = document.getElementById('zotero-tag-selector');
|
||
if (this.tagSelectorShown()) {
|
||
Zotero.debug('Updating tag selector with current tags');
|
||
if (collectionTreeRow.editable) {
|
||
tagSelector.mode = 'edit';
|
||
}
|
||
else {
|
||
tagSelector.mode = 'view';
|
||
}
|
||
tagSelector.collectionTreeRow = collectionTreeRow;
|
||
tagSelector.updateScope = () => this.setTagScope();
|
||
tagSelector.libraryID = collectionTreeRow.ref.libraryID;
|
||
tagSelector.scope = yield collectionTreeRow.getChildTags();
|
||
}
|
||
});
|
||
|
||
|
||
this.onCollectionSelected = function () {
|
||
return Zotero.spawn(function* () {
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
if (!collectionTreeRow) {
|
||
return;
|
||
}
|
||
|
||
if (this.itemsView && this.itemsView.collectionTreeRow.id == collectionTreeRow.id) {
|
||
Zotero.debug("Collection selection hasn't changed");
|
||
|
||
// Update toolbar, in case editability has changed
|
||
this._updateToolbarIconsForRow(collectionTreeRow);
|
||
return;
|
||
}
|
||
|
||
if (this.itemsView) {
|
||
// Wait for existing items view to finish loading before unloading it
|
||
//
|
||
// TODO: Cancel loading
|
||
let promise = this.itemsView.waitForLoad();
|
||
if (promise.isPending()) {
|
||
Zotero.debug("Waiting for items view " + this.itemsView.id + " to finish loading");
|
||
yield promise;
|
||
}
|
||
|
||
this.itemsView.unregister();
|
||
document.getElementById('zotero-items-tree').view = this.itemsView = null;
|
||
}
|
||
|
||
if (this.collectionsView.selection.count != 1) {
|
||
return;
|
||
}
|
||
|
||
// Clear quick search and tag selector when switching views
|
||
document.getElementById('zotero-tb-search').value = "";
|
||
|
||
// XBL functions might not yet be available
|
||
var tagSelector = document.getElementById('zotero-tag-selector');
|
||
if (tagSelector.deselectAll) {
|
||
tagSelector.deselectAll();
|
||
}
|
||
|
||
// Not necessary with seltype="cell", which calls nsITreeView::isSelectable()
|
||
/*if (collectionTreeRow.isSeparator()) {
|
||
document.getElementById('zotero-items-tree').view = this.itemsView = null;
|
||
return;
|
||
}*/
|
||
|
||
collectionTreeRow.setSearch('');
|
||
collectionTreeRow.setTags(getTagSelection());
|
||
|
||
this._updateToolbarIconsForRow(collectionTreeRow);
|
||
|
||
this.itemsView = new Zotero.ItemTreeView(collectionTreeRow);
|
||
if (collectionTreeRow.isPublications()) {
|
||
this.itemsView.collapseAll = true;
|
||
}
|
||
this.itemsView.onError = function () {
|
||
// Don't reload last folder, in case that's the problem
|
||
Zotero.Prefs.clear('lastViewedFolder');
|
||
ZoteroPane_Local.displayErrorMessage();
|
||
};
|
||
this.itemsView.onRefresh.addListener(() => this.setTagScope());
|
||
if (this.tagSelectorShown()) {
|
||
let tagSelector = document.getElementById('zotero-tag-selector')
|
||
let handler = function () {
|
||
tagSelector.removeEventListener('refresh', handler);
|
||
Zotero.uiIsReady();
|
||
};
|
||
tagSelector.addEventListener('refresh', handler);
|
||
}
|
||
else {
|
||
this.itemsView.onLoad.addListener(() => Zotero.uiIsReady());
|
||
}
|
||
|
||
// If item data not yet loaded for library, load it now.
|
||
// Other data types are loaded at startup
|
||
var library = Zotero.Libraries.get(collectionTreeRow.ref.libraryID);
|
||
if (!library.getDataLoaded('item')) {
|
||
Zotero.debug("Waiting for items to load for library " + library.libraryID);
|
||
ZoteroPane_Local.setItemsPaneMessage(Zotero.getString('pane.items.loading'));
|
||
yield library.waitForDataLoad('item');
|
||
}
|
||
|
||
document.getElementById('zotero-items-tree').view = this.itemsView;
|
||
|
||
try {
|
||
let tree = document.getElementById('zotero-items-tree');
|
||
let treecols = document.getElementById('zotero-items-columns-header');
|
||
let treecolpicker = treecols.boxObject.firstChild.nextSibling;
|
||
let menupopup = treecolpicker.boxObject.firstChild.nextSibling;
|
||
// Add events to treecolpicker to update menu before showing/hiding
|
||
let attr = menupopup.getAttribute('onpopupshowing');
|
||
if (attr.indexOf('Zotero') == -1) {
|
||
menupopup.setAttribute('onpopupshowing', 'ZoteroPane.itemsView.onColumnPickerShowing(event); '
|
||
// Keep whatever else is there
|
||
+ attr);
|
||
menupopup.setAttribute('onpopuphidden', 'ZoteroPane.itemsView.onColumnPickerHidden(event); '
|
||
// Keep whatever else is there
|
||
+ menupopup.getAttribute('onpopuphidden'));
|
||
}
|
||
|
||
// Items view column visibility for different groups
|
||
let prevViewGroup = tree.getAttribute('current-view-group');
|
||
let curViewGroup = collectionTreeRow.visibilityGroup;
|
||
tree.setAttribute('current-view-group', curViewGroup);
|
||
if (curViewGroup != prevViewGroup) {
|
||
let cols = Array.from(treecols.getElementsByTagName('treecol'));
|
||
let settings = JSON.parse(Zotero.Prefs.get('itemsView.columnVisibility') || '{}');
|
||
if (prevViewGroup) {
|
||
// Store previous view settings
|
||
let setting = {};
|
||
for (let col of cols) {
|
||
let colType = col.id.substring('zotero-items-column-'.length);
|
||
setting[colType] = col.getAttribute('hidden') == 'true' ? 0 : 1
|
||
}
|
||
settings[prevViewGroup] = setting;
|
||
Zotero.Prefs.set('itemsView.columnVisibility', JSON.stringify(settings));
|
||
}
|
||
|
||
// Recover current view settings
|
||
if (settings[curViewGroup]) {
|
||
for (let col of cols) {
|
||
let colType = col.id.substring('zotero-items-column-'.length);
|
||
col.setAttribute('hidden', !settings[curViewGroup][colType]);
|
||
}
|
||
} else {
|
||
cols.forEach((col) => {
|
||
col.setAttribute('hidden', !(col.hasAttribute('default-in') &&
|
||
col.getAttribute('default-in').split(' ').indexOf(curViewGroup) != -1)
|
||
)
|
||
})
|
||
}
|
||
}
|
||
}
|
||
catch (e) {
|
||
Zotero.debug(e);
|
||
}
|
||
|
||
Zotero.Prefs.set('lastViewedFolder', collectionTreeRow.id);
|
||
}, this)
|
||
.finally(function () {
|
||
return this.collectionsView.runListeners('select');
|
||
}.bind(this));
|
||
};
|
||
|
||
|
||
/**
|
||
* Enable or disable toolbar icons and menu options as necessary
|
||
*/
|
||
this._updateToolbarIconsForRow = function (collectionTreeRow) {
|
||
const disableIfNoEdit = [
|
||
"cmd_zotero_newCollection",
|
||
"cmd_zotero_newSavedSearch",
|
||
"zotero-tb-add",
|
||
"cmd_zotero_newItemFromCurrentPage",
|
||
"zotero-tb-lookup",
|
||
"cmd_zotero_newStandaloneNote",
|
||
"zotero-tb-note-add",
|
||
"zotero-tb-attachment-add"
|
||
];
|
||
for (let i = 0; i < disableIfNoEdit.length; i++) {
|
||
let command = disableIfNoEdit[i];
|
||
let el = document.getElementById(command);
|
||
|
||
// If a trash is selected, new collection depends on the
|
||
// editability of the library
|
||
if (collectionTreeRow.isTrash() && command == 'cmd_zotero_newCollection') {
|
||
var overrideEditable = Zotero.Libraries.get(collectionTreeRow.ref.libraryID).editable;
|
||
}
|
||
else {
|
||
var overrideEditable = false;
|
||
}
|
||
|
||
// Don't allow normal buttons in My Publications, because things need to
|
||
// be dragged and go through the wizard
|
||
let forceDisable = collectionTreeRow.isPublications() && command != 'zotero-tb-note-add';
|
||
|
||
if ((collectionTreeRow.editable || overrideEditable) && !forceDisable) {
|
||
if(el.hasAttribute("disabled")) el.removeAttribute("disabled");
|
||
} else {
|
||
el.setAttribute("disabled", "true");
|
||
}
|
||
}
|
||
};
|
||
|
||
|
||
this.getCollectionTreeRow = function () {
|
||
if (!this.collectionsView || !this.collectionsView.selection.count) {
|
||
return false;
|
||
}
|
||
return this.collectionsView.getRow(this.collectionsView.selection.currentIndex);
|
||
}
|
||
|
||
|
||
/**
|
||
* @return {Promise<Boolean>} - Promise that resolves to true if an item was selected,
|
||
* or false if not (used for tests, though there could possibly
|
||
* be a better test for whether the item pane changed)
|
||
*/
|
||
this.itemSelected = function (event) {
|
||
return Zotero.Promise.coroutine(function* () {
|
||
// Don't select item until items list has loaded
|
||
//
|
||
// This avoids an error if New Item is used while the pane is first loading.
|
||
var promise = this.itemsView.waitForLoad();
|
||
if (promise.isPending()) {
|
||
yield promise;
|
||
}
|
||
|
||
if (!this.itemsView || !this.itemsView.selection) {
|
||
Zotero.debug("Items view not available in itemSelected", 2);
|
||
return false;
|
||
}
|
||
|
||
var selectedItems = this.itemsView.getSelectedItems();
|
||
|
||
// Display buttons at top of item pane depending on context. This needs to run even if the
|
||
// selection hasn't changed, because the selected items might have been modified.
|
||
this.updateItemPaneButtons(selectedItems);
|
||
|
||
this.updateQuickCopyCommands(selectedItems);
|
||
|
||
// Check if selection has actually changed. The onselect event that calls this
|
||
// can be called in various situations where the selection didn't actually change,
|
||
// such as whenever selectEventsSuppressed is set to false.
|
||
var ids = selectedItems.map(item => item.id);
|
||
ids.sort();
|
||
if (ids.length && Zotero.Utilities.arrayEquals(_lastSelectedItems, ids)) {
|
||
return false;
|
||
}
|
||
_lastSelectedItems = ids;
|
||
|
||
var tabs = document.getElementById('zotero-view-tabbox');
|
||
|
||
// save note when switching from a note
|
||
if(document.getElementById('zotero-item-pane-content').selectedIndex == 2) {
|
||
// TODO: only try to save when selected item is different
|
||
yield document.getElementById('zotero-note-editor').save();
|
||
}
|
||
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
// I don't think this happens in normal usage, but it can happen during tests
|
||
if (!collectionTreeRow) {
|
||
return false;
|
||
}
|
||
|
||
// Single item selected
|
||
if (selectedItems.length == 1) {
|
||
var item = selectedItems[0];
|
||
|
||
if (item.isNote()) {
|
||
ZoteroItemPane.onNoteSelected(item, this.collectionsView.editable);
|
||
}
|
||
|
||
else if (item.isAttachment()) {
|
||
var attachmentBox = document.getElementById('zotero-attachment-box');
|
||
attachmentBox.mode = this.collectionsView.editable ? 'edit' : 'view';
|
||
attachmentBox.item = item;
|
||
|
||
document.getElementById('zotero-item-pane-content').selectedIndex = 3;
|
||
}
|
||
|
||
// Regular item
|
||
else {
|
||
var isCommons = collectionTreeRow.isBucket();
|
||
|
||
document.getElementById('zotero-item-pane-content').selectedIndex = 1;
|
||
var tabBox = document.getElementById('zotero-view-tabbox');
|
||
|
||
// Reset tab when viewing a feed item, which only has the info tab
|
||
if (item.isFeedItem) {
|
||
tabBox.selectedIndex = 0;
|
||
}
|
||
|
||
var pane = tabBox.selectedIndex;
|
||
tabBox.firstChild.hidden = isCommons;
|
||
|
||
var button = document.getElementById('zotero-item-show-original');
|
||
if (isCommons) {
|
||
button.hidden = false;
|
||
button.disabled = !this.getOriginalItem();
|
||
}
|
||
else {
|
||
button.hidden = true;
|
||
}
|
||
|
||
if (this.collectionsView.editable) {
|
||
yield ZoteroItemPane.viewItem(item, null, pane);
|
||
tabs.selectedIndex = document.getElementById('zotero-view-item').selectedIndex;
|
||
}
|
||
else {
|
||
yield ZoteroItemPane.viewItem(item, 'view', pane);
|
||
tabs.selectedIndex = document.getElementById('zotero-view-item').selectedIndex;
|
||
}
|
||
|
||
if (item.isFeedItem) {
|
||
// Too slow for now
|
||
// if (!item.isTranslated) {
|
||
// item.translate();
|
||
// }
|
||
this.updateReadLabel();
|
||
this.startItemReadTimeout(item.id);
|
||
}
|
||
}
|
||
}
|
||
// Zero or multiple items selected
|
||
else {
|
||
if (collectionTreeRow.isFeed()) {
|
||
this.updateReadLabel();
|
||
}
|
||
|
||
let count = selectedItems.length;
|
||
|
||
// Display duplicates merge interface in item pane
|
||
if (collectionTreeRow.isDuplicates()) {
|
||
if (!collectionTreeRow.editable) {
|
||
if (count) {
|
||
var msg = Zotero.getString('pane.item.duplicates.writeAccessRequired');
|
||
}
|
||
else {
|
||
var msg = Zotero.getString('pane.item.selected.zero');
|
||
}
|
||
this.setItemPaneMessage(msg);
|
||
}
|
||
else if (count) {
|
||
document.getElementById('zotero-item-pane-content').selectedIndex = 4;
|
||
|
||
// Load duplicates UI code
|
||
if (typeof Zotero_Duplicates_Pane == 'undefined') {
|
||
Zotero.debug("Loading duplicatesMerge.js");
|
||
Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
|
||
.getService(Components.interfaces.mozIJSSubScriptLoader)
|
||
.loadSubScript("chrome://zotero/content/duplicatesMerge.js");
|
||
}
|
||
|
||
// On a Select All of more than a few items, display a row
|
||
// count instead of the usual item type mismatch error
|
||
var displayNumItemsOnTypeError = count > 5 && count == this.itemsView.rowCount;
|
||
|
||
// Initialize the merge pane with the selected items
|
||
Zotero_Duplicates_Pane.setItems(selectedItems, displayNumItemsOnTypeError);
|
||
}
|
||
else {
|
||
var msg = Zotero.getString('pane.item.duplicates.selectToMerge');
|
||
this.setItemPaneMessage(msg);
|
||
}
|
||
}
|
||
// Display label in the middle of the item pane
|
||
else {
|
||
if (count) {
|
||
var msg = Zotero.getString('pane.item.selected.multiple', count);
|
||
}
|
||
else {
|
||
var rowCount = this.itemsView.rowCount;
|
||
var str = 'pane.item.unselected.';
|
||
switch (rowCount){
|
||
case 0:
|
||
str += 'zero';
|
||
break;
|
||
case 1:
|
||
str += 'singular';
|
||
break;
|
||
default:
|
||
str += 'plural';
|
||
break;
|
||
}
|
||
var msg = Zotero.getString(str, [rowCount]);
|
||
}
|
||
|
||
this.setItemPaneMessage(msg);
|
||
|
||
return false;
|
||
}
|
||
}
|
||
|
||
return true;
|
||
}.bind(this))()
|
||
.catch(function (e) {
|
||
this.displayErrorMessage();
|
||
throw e;
|
||
}.bind(this))
|
||
.finally(function () {
|
||
return this.itemsView.runListeners('select');
|
||
}.bind(this));
|
||
}
|
||
|
||
|
||
/**
|
||
* Display buttons at top of item pane depending on context
|
||
*
|
||
* @param {Zotero.Item[]}
|
||
*/
|
||
this.updateItemPaneButtons = function (selectedItems) {
|
||
if (!selectedItems.length) {
|
||
document.querySelectorAll('.zotero-item-pane-top-buttons').forEach(x => x.hidden = true);
|
||
return;
|
||
}
|
||
|
||
// My Publications buttons
|
||
var isPublications = this.getCollectionTreeRow().isPublications();
|
||
// Show in My Publications view if selected items are all notes or non-linked-file attachments
|
||
var showMyPublicationsButtons = isPublications
|
||
&& selectedItems.every((item) => {
|
||
return item.isNote()
|
||
|| (item.isAttachment()
|
||
&& item.attachmentLinkMode != Zotero.Attachments.LINK_MODE_LINKED_FILE);
|
||
});
|
||
var myPublicationsButtons = document.getElementById('zotero-item-pane-top-buttons-my-publications');
|
||
myPublicationsButtons.hidden = !showMyPublicationsButtons;
|
||
if (showMyPublicationsButtons) {
|
||
let button = myPublicationsButtons.firstChild;
|
||
let hiddenItemsSelected = selectedItems.some(item => !item.inPublications);
|
||
let str, onclick;
|
||
if (hiddenItemsSelected) {
|
||
str = 'showInMyPublications';
|
||
onclick = () => Zotero.Items.addToPublications(selectedItems);
|
||
}
|
||
else {
|
||
str = 'hideFromMyPublications';
|
||
onclick = () => Zotero.Items.removeFromPublications(selectedItems);
|
||
}
|
||
button.label = Zotero.getString('pane.item.' + str);
|
||
button.onclick = onclick;
|
||
}
|
||
|
||
// Trash button
|
||
let nonDeletedItemsSelected = selectedItems.some(item => !item.deleted);
|
||
document.getElementById('zotero-item-pane-top-buttons-trash').hidden
|
||
= !this.getCollectionTreeRow().isTrash() || nonDeletedItemsSelected;
|
||
|
||
// Feed buttons
|
||
document.getElementById('zotero-item-pane-top-buttons-feed').hidden
|
||
= !this.getCollectionTreeRow().isFeed()
|
||
};
|
||
|
||
|
||
/**
|
||
* @return {Promise}
|
||
*/
|
||
this.updateNoteButtonMenu = function () {
|
||
var items = ZoteroPane_Local.getSelectedItems();
|
||
var cmd = document.getElementById('cmd_zotero_newChildNote');
|
||
cmd.setAttribute("disabled", !this.canEdit() ||
|
||
!(items.length == 1 && (items[0].isRegularItem() || !items[0].isTopLevelItem())));
|
||
}
|
||
|
||
|
||
this.updateAttachmentButtonMenu = function (popup) {
|
||
var items = ZoteroPane_Local.getSelectedItems();
|
||
|
||
var disabled = !this.canEdit() || !(items.length == 1 && items[0].isRegularItem());
|
||
|
||
if (disabled) {
|
||
for (let node of popup.childNodes) {
|
||
node.disabled = true;
|
||
}
|
||
return;
|
||
}
|
||
|
||
var collectionTreeRow = this.collectionsView.selectedTreeRow;
|
||
var canEditFiles = this.canEditFiles();
|
||
|
||
var prefix = "menuitem-iconic zotero-menuitem-attachments-";
|
||
|
||
for (var i=0; i<popup.childNodes.length; i++) {
|
||
var node = popup.childNodes[i];
|
||
var className = node.className.replace('standalone-no-display', '').trim();
|
||
|
||
switch (className) {
|
||
case prefix + 'link':
|
||
node.disabled = collectionTreeRow.isWithinGroup();
|
||
break;
|
||
|
||
case prefix + 'snapshot':
|
||
case prefix + 'file':
|
||
node.disabled = !canEditFiles;
|
||
break;
|
||
|
||
case prefix + 'web-link':
|
||
node.disabled = false;
|
||
break;
|
||
|
||
default:
|
||
throw ("Invalid class name '" + className + "' in ZoteroPane_Local.updateAttachmentButtonMenu()");
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* Update the <command> elements that control the shortcut keys and the enabled state of the
|
||
* "Copy Citation"/"Copy Bibliography"/"Copy as" menu options. When disabled, the shortcuts are
|
||
* still caught in handleKeyPress so that we can show an alert about not having references selected.
|
||
*/
|
||
this.updateQuickCopyCommands = function (selectedItems) {
|
||
var format = Zotero.QuickCopy.getFormatFromURL(Zotero.QuickCopy.lastActiveURL);
|
||
format = Zotero.QuickCopy.unserializeSetting(format);
|
||
if (format.mode == 'bibliography') {
|
||
var canCopy = selectedItems.some(item => item.isRegularItem());
|
||
}
|
||
else {
|
||
var canCopy = true;
|
||
}
|
||
document.getElementById('cmd_zotero_copyCitation').setAttribute('disabled', !canCopy);
|
||
document.getElementById('cmd_zotero_copyBibliography').setAttribute('disabled', !canCopy);
|
||
};
|
||
|
||
|
||
/**
|
||
* @return {Promise}
|
||
*/
|
||
this.reindexItem = Zotero.Promise.coroutine(function* () {
|
||
var items = this.getSelectedItems();
|
||
if (!items) {
|
||
return;
|
||
}
|
||
|
||
var itemIDs = [];
|
||
|
||
for (var i=0; i<items.length; i++) {
|
||
itemIDs.push(items[i].id);
|
||
}
|
||
|
||
yield Zotero.Fulltext.indexItems(itemIDs, true);
|
||
yield document.getElementById('zotero-attachment-box').updateItemIndexedState();
|
||
});
|
||
|
||
|
||
/**
|
||
* @return {Promise<Zotero.Item>} - The new Zotero.Item
|
||
*/
|
||
this.duplicateSelectedItem = Zotero.Promise.coroutine(function* () {
|
||
var self = this;
|
||
if (!self.canEdit()) {
|
||
self.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var item = self.getSelectedItems()[0];
|
||
var newItem;
|
||
|
||
yield Zotero.DB.executeTransaction(function* () {
|
||
newItem = item.clone();
|
||
// If in a collection, add new item to it
|
||
if (self.collectionsView.selectedTreeRow.isCollection() && newItem.isTopLevelItem()) {
|
||
newItem.setCollections([self.collectionsView.selectedTreeRow.ref.id]);
|
||
}
|
||
yield newItem.save();
|
||
for (let relItemKey of item.relatedItems) {
|
||
try {
|
||
let relItem = yield Zotero.Items.getByLibraryAndKeyAsync(item.libraryID, relItemKey);
|
||
if (relItem.addRelatedItem(newItem)) {
|
||
yield relItem.save({
|
||
skipDateModifiedUpdate: true
|
||
});
|
||
}
|
||
}
|
||
catch (e) {
|
||
Zotero.logError(e);
|
||
}
|
||
}
|
||
});
|
||
|
||
yield self.selectItem(newItem.id);
|
||
|
||
return newItem;
|
||
});
|
||
|
||
|
||
this.deleteSelectedItem = function () {
|
||
Zotero.debug("ZoteroPane_Local.deleteSelectedItem() is deprecated -- use ZoteroPane_Local.deleteSelectedItems()");
|
||
this.deleteSelectedItems();
|
||
}
|
||
|
||
/*
|
||
* Remove, trash, or delete item(s), depending on context
|
||
*
|
||
* @param {Boolean} [force=false] Trash or delete even if in a collection or search,
|
||
* or trash without prompt in library
|
||
* @param {Boolean} [fromMenu=false] If triggered from context menu, which always prompts for deletes
|
||
*/
|
||
this.deleteSelectedItems = function (force, fromMenu) {
|
||
if (!this.itemsView || !this.itemsView.selection.count) {
|
||
return;
|
||
}
|
||
var collectionTreeRow = this.collectionsView.selectedTreeRow;
|
||
|
||
if (!collectionTreeRow.isTrash() && !collectionTreeRow.isBucket() && !this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var toTrash = {
|
||
title: Zotero.getString('pane.items.trash.title'),
|
||
text: Zotero.getString(
|
||
'pane.items.trash' + (this.itemsView.selection.count > 1 ? '.multiple' : '')
|
||
)
|
||
};
|
||
var toDelete = {
|
||
title: Zotero.getString('pane.items.delete.title'),
|
||
text: Zotero.getString(
|
||
'pane.items.delete' + (this.itemsView.selection.count > 1 ? '.multiple' : '')
|
||
)
|
||
};
|
||
var toRemove = {
|
||
title: Zotero.getString('pane.items.remove.title'),
|
||
text: Zotero.getString(
|
||
'pane.items.remove' + (this.itemsView.selection.count > 1 ? '.multiple' : '')
|
||
)
|
||
};
|
||
|
||
if (collectionTreeRow.isPublications()) {
|
||
let toRemoveFromPublications = {
|
||
title: Zotero.getString('pane.items.removeFromPublications.title'),
|
||
text: Zotero.getString(
|
||
'pane.items.removeFromPublications' + (this.itemsView.selection.count > 1 ? '.multiple' : '')
|
||
)
|
||
};
|
||
var prompt = force ? toTrash : toRemoveFromPublications;
|
||
}
|
||
else if (collectionTreeRow.isLibrary(true)) {
|
||
// In library, don't prompt if meta key was pressed
|
||
var prompt = (force && !fromMenu) ? false : toTrash;
|
||
}
|
||
else if (collectionTreeRow.isCollection()) {
|
||
|
||
// Ignore unmodified action if only child items are selected
|
||
if (!force && this.itemsView.getSelectedItems().every(item => !item.isTopLevelItem())) {
|
||
return;
|
||
}
|
||
|
||
var prompt = force ? toTrash : toRemove;
|
||
}
|
||
else if (collectionTreeRow.isSearch() || collectionTreeRow.isUnfiled() || collectionTreeRow.isDuplicates()) {
|
||
if (!force) {
|
||
return;
|
||
}
|
||
var prompt = toTrash;
|
||
}
|
||
// Do nothing in trash view if any non-deleted items are selected
|
||
else if (collectionTreeRow.isTrash()) {
|
||
var start = {};
|
||
var end = {};
|
||
for (var i=0, len=this.itemsView.selection.getRangeCount(); i<len; i++) {
|
||
this.itemsView.selection.getRangeAt(i, start, end);
|
||
for (var j=start.value; j<=end.value; j++) {
|
||
if (!this.itemsView.getRow(j).ref.deleted) {
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
var prompt = toDelete;
|
||
}
|
||
else if (collectionTreeRow.isBucket()) {
|
||
var prompt = toDelete;
|
||
}
|
||
// Do nothing in share views
|
||
else if (collectionTreeRow.isShare()) {
|
||
return;
|
||
}
|
||
|
||
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
if (!prompt || promptService.confirm(window, prompt.title, prompt.text)) {
|
||
this.itemsView.deleteSelection(force);
|
||
}
|
||
}
|
||
|
||
|
||
this.mergeSelectedItems = function () {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
document.getElementById('zotero-item-pane-content').selectedIndex = 4;
|
||
|
||
if (typeof Zotero_Duplicates_Pane == 'undefined') {
|
||
Zotero.debug("Loading duplicatesMerge.js");
|
||
Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
|
||
.getService(Components.interfaces.mozIJSSubScriptLoader)
|
||
.loadSubScript("chrome://zotero/content/duplicatesMerge.js");
|
||
}
|
||
|
||
// Initialize the merge pane with the selected items
|
||
Zotero_Duplicates_Pane.setItems(this.getSelectedItems());
|
||
}
|
||
|
||
|
||
this.deleteSelectedCollection = function (deleteItems) {
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
|
||
// Don't allow deleting libraries
|
||
if (collectionTreeRow.isLibrary(true) && !collectionTreeRow.isFeed()) {
|
||
return;
|
||
}
|
||
|
||
// Remove virtual duplicates collection
|
||
if (collectionTreeRow.isDuplicates()) {
|
||
this.setVirtual(collectionTreeRow.ref.libraryID, 'duplicates', false);
|
||
return;
|
||
}
|
||
// Remove virtual unfiled collection
|
||
else if (collectionTreeRow.isUnfiled()) {
|
||
this.setVirtual(collectionTreeRow.ref.libraryID, 'unfiled', false);
|
||
return;
|
||
}
|
||
|
||
if (!this.canEdit() && !collectionTreeRow.isFeed()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
buttonFlags = ps.BUTTON_POS_0 * ps.BUTTON_TITLE_IS_STRING
|
||
+ ps.BUTTON_POS_1 * ps.BUTTON_TITLE_CANCEL;
|
||
if (this.collectionsView.selection.count == 1) {
|
||
var title, message;
|
||
// Work out the required title and message
|
||
if (collectionTreeRow.isCollection()) {
|
||
if (deleteItems) {
|
||
title = Zotero.getString('pane.collections.deleteWithItems.title');
|
||
message = Zotero.getString('pane.collections.deleteWithItems');
|
||
}
|
||
else {
|
||
title = Zotero.getString('pane.collections.delete.title');
|
||
message = Zotero.getString('pane.collections.delete')
|
||
+ "\n\n"
|
||
+ Zotero.getString('pane.collections.delete.keepItems');
|
||
}
|
||
}
|
||
else if (collectionTreeRow.isFeed()) {
|
||
title = Zotero.getString('pane.feed.deleteWithItems.title');
|
||
message = Zotero.getString('pane.feed.deleteWithItems');
|
||
}
|
||
else if (collectionTreeRow.isSearch()) {
|
||
title = Zotero.getString('pane.collections.deleteSearch.title');
|
||
message = Zotero.getString('pane.collections.deleteSearch');
|
||
}
|
||
|
||
// Display prompt
|
||
var index = ps.confirmEx(
|
||
null,
|
||
title,
|
||
message,
|
||
buttonFlags,
|
||
title,
|
||
"", "", "", {}
|
||
);
|
||
if (index == 0) {
|
||
return this.collectionsView.deleteSelection(deleteItems);
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
// Currently used only for Commons to find original linked item
|
||
this.getOriginalItem = function () {
|
||
var item = this.getSelectedItems()[0];
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
// TEMP: Commons buckets only
|
||
return collectionTreeRow.ref.getLocalItem(item);
|
||
}
|
||
|
||
|
||
this.showOriginalItem = function () {
|
||
var item = this.getOriginalItem();
|
||
if (!item) {
|
||
Zotero.debug("Original item not found");
|
||
return;
|
||
}
|
||
this.selectItem(item.id).done();
|
||
}
|
||
|
||
|
||
/**
|
||
* @return {Promise}
|
||
*/
|
||
this.restoreSelectedItems = Zotero.Promise.coroutine(function* () {
|
||
var items = this.getSelectedItems();
|
||
if (!items) {
|
||
return;
|
||
}
|
||
|
||
yield Zotero.DB.executeTransaction(function* () {
|
||
for (let i=0; i<items.length; i++) {
|
||
items[i].deleted = false;
|
||
yield items[i].save({
|
||
skipDateModifiedUpdate: true
|
||
});
|
||
}
|
||
}.bind(this));
|
||
});
|
||
|
||
|
||
/**
|
||
* @return {Promise}
|
||
*/
|
||
this.emptyTrash = Zotero.Promise.coroutine(function* () {
|
||
var libraryID = this.getSelectedLibraryID();
|
||
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
|
||
var result = ps.confirm(
|
||
null,
|
||
"",
|
||
Zotero.getString('pane.collections.emptyTrash') + "\n\n"
|
||
+ Zotero.getString('general.actionCannotBeUndone')
|
||
);
|
||
if (result) {
|
||
Zotero.showZoteroPaneProgressMeter(null, true);
|
||
try {
|
||
let deleted = yield Zotero.Items.emptyTrash(
|
||
libraryID,
|
||
{
|
||
onProgress: (progress, progressMax) => {
|
||
var percentage = Math.round((progress / progressMax) * 100);
|
||
Zotero.updateZoteroPaneProgressMeter(percentage);
|
||
}
|
||
}
|
||
);
|
||
}
|
||
finally {
|
||
Zotero.hideZoteroPaneOverlays();
|
||
}
|
||
yield Zotero.purgeDataObjects();
|
||
}
|
||
});
|
||
|
||
|
||
this.editSelectedCollection = Zotero.Promise.coroutine(function* () {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
if (this.collectionsView.selection.count > 0) {
|
||
var row = this.collectionsView.selectedTreeRow;
|
||
|
||
if (row.isCollection()) {
|
||
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
|
||
var newName = { value: row.getName() };
|
||
var result = promptService.prompt(window, "",
|
||
Zotero.getString('pane.collections.rename'), newName, "", {});
|
||
|
||
if (result && newName.value) {
|
||
row.ref.name = newName.value;
|
||
row.ref.saveTx();
|
||
}
|
||
}
|
||
else {
|
||
let s = row.ref.clone();
|
||
let groups = [];
|
||
// Promises don't work in the modal dialog, so get the group name here, if
|
||
// applicable, and pass it in. We only need the group that this search belongs
|
||
// to, if any, since the library drop-down is disabled for saved searches.
|
||
if (Zotero.Libraries.get(s.libraryID).libraryType == 'group') {
|
||
groups.push(Zotero.Groups.getByLibraryID(s.libraryID));
|
||
}
|
||
var io = {
|
||
dataIn: {
|
||
search: s,
|
||
name: row.getName(),
|
||
groups: groups
|
||
},
|
||
dataOut: null
|
||
};
|
||
window.openDialog('chrome://zotero/content/searchDialog.xul','','chrome,modal',io);
|
||
if (io.dataOut) {
|
||
row.ref.fromJSON(io.dataOut.json);
|
||
yield row.ref.saveTx();
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
this.toggleSelectedItemsRead = Zotero.Promise.coroutine(function* () {
|
||
yield Zotero.FeedItems.toggleReadByID(this.getSelectedItems(true));
|
||
});
|
||
|
||
this.markFeedRead = Zotero.Promise.coroutine(function* () {
|
||
if (!this.collectionsView.selection.count) return;
|
||
|
||
let feed = this.collectionsView.selectedTreeRow.ref;
|
||
let feedItemIDs = yield Zotero.FeedItems.getAll(feed.libraryID, true, false, true);
|
||
yield Zotero.FeedItems.toggleReadByID(feedItemIDs, true);
|
||
});
|
||
|
||
|
||
this.editSelectedFeed = Zotero.Promise.coroutine(function* () {
|
||
if (!this.collectionsView.selection.count) return;
|
||
|
||
let feed = this.collectionsView.selectedTreeRow.ref;
|
||
let data = {
|
||
url: feed.url,
|
||
title: feed.name,
|
||
ttl: feed.refreshInterval,
|
||
cleanupReadAfter: feed.cleanupReadAfter,
|
||
cleanupUnreadAfter: feed.cleanupUnreadAfter
|
||
};
|
||
|
||
window.openDialog('chrome://zotero/content/feedSettings.xul',
|
||
null, 'centerscreen, modal', data);
|
||
if (data.cancelled) return;
|
||
|
||
feed.name = data.title;
|
||
feed.refreshInterval = data.ttl;
|
||
feed.cleanupReadAfter = data.cleanupReadAfter;
|
||
feed.cleanupUnreadAfter = data.cleanupUnreadAfter;
|
||
yield feed.saveTx();
|
||
});
|
||
|
||
this.refreshFeed = function() {
|
||
if (!this.collectionsView.selection.count) return;
|
||
|
||
let feed = this.collectionsView.selectedTreeRow.ref;
|
||
|
||
return feed.updateFeed();
|
||
}
|
||
|
||
|
||
this.copySelectedItemsToClipboard = function (asCitations) {
|
||
var items = this.getSelectedItems();
|
||
if (!items.length) {
|
||
return;
|
||
}
|
||
|
||
var format = Zotero.QuickCopy.getFormatFromURL(Zotero.QuickCopy.lastActiveURL);
|
||
format = Zotero.QuickCopy.unserializeSetting(format);
|
||
|
||
// In bibliography mode, remove notes and attachments
|
||
if (format.mode == 'bibliography') {
|
||
items = items.filter(item => item.isRegularItem());
|
||
}
|
||
|
||
// DEBUG: We could copy notes via keyboard shortcut if we altered
|
||
// Z_F_I.copyItemsToClipboard() to use Z.QuickCopy.getContentFromItems(),
|
||
// but 1) we'd need to override that function's drag limit and 2) when I
|
||
// tried it the OS X clipboard seemed to be getting text vs. HTML wrong,
|
||
// automatically converting text/html to plaintext rather than using
|
||
// text/unicode. (That may be fixable, however.)
|
||
//
|
||
// This isn't currently shown, because the commands are disabled when not relevant, so this
|
||
// function isn't called
|
||
if (!items.length) {
|
||
let ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
ps.alert(null, "", Zotero.getString("fileInterface.noReferencesError"));
|
||
return;
|
||
}
|
||
|
||
// determine locale preference
|
||
var locale = format.locale ? format.locale : Zotero.Prefs.get('export.quickCopy.locale');
|
||
|
||
if (format.mode == 'bibliography') {
|
||
Zotero_File_Interface.copyItemsToClipboard(
|
||
items, format.id, locale, format.contentType == 'html', asCitations
|
||
);
|
||
}
|
||
else if (format.mode == 'export') {
|
||
// Copy citations doesn't work in export mode
|
||
if (asCitations) {
|
||
return;
|
||
}
|
||
else {
|
||
Zotero_File_Interface.exportItemsToClipboard(items, format.id);
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
this.clearQuicksearch = Zotero.Promise.coroutine(function* () {
|
||
var search = document.getElementById('zotero-tb-search');
|
||
if (search.value !== '') {
|
||
search.value = '';
|
||
yield this.search();
|
||
return true;
|
||
}
|
||
return false;
|
||
});
|
||
|
||
|
||
/**
|
||
* Some keys trigger an immediate search
|
||
*/
|
||
this.handleSearchKeypress = function (textbox, event) {
|
||
if (event.keyCode == event.DOM_VK_ESCAPE) {
|
||
textbox.value = '';
|
||
this.search();
|
||
}
|
||
else if (event.keyCode == event.DOM_VK_RETURN) {
|
||
this.search(true);
|
||
}
|
||
}
|
||
|
||
|
||
this.handleSearchInput = function (textbox, event) {
|
||
if (textbox.value.indexOf('"') != -1) {
|
||
this.setItemsPaneMessage(Zotero.getString('advancedSearchMode'));
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @return {Promise}
|
||
*/
|
||
this.search = Zotero.Promise.coroutine(function* (runAdvanced) {
|
||
if (!this.itemsView) {
|
||
return;
|
||
}
|
||
var search = document.getElementById('zotero-tb-search');
|
||
if (!runAdvanced && search.value.indexOf('"') != -1) {
|
||
return;
|
||
}
|
||
var spinner = document.getElementById('zotero-tb-search-spinner');
|
||
spinner.style.display = 'inline';
|
||
var searchVal = search.value;
|
||
yield this.itemsView.setFilter('search', searchVal);
|
||
spinner.style.display = 'none';
|
||
if (runAdvanced) {
|
||
this.clearItemsPaneMessage();
|
||
}
|
||
});
|
||
|
||
|
||
this.selectItem = Zotero.Promise.coroutine(function* (itemID, inLibraryRoot, expand) {
|
||
if (!itemID) {
|
||
return false;
|
||
}
|
||
|
||
var item = yield Zotero.Items.getAsync(itemID);
|
||
if (!item) {
|
||
return false;
|
||
}
|
||
|
||
// Restore window if it's in the dock
|
||
if (window.windowState == Components.interfaces.nsIDOMChromeWindow.STATE_MINIMIZED) {
|
||
window.restore();
|
||
}
|
||
|
||
if (!this.collectionsView) {
|
||
throw new Error("Collections view not loaded");
|
||
}
|
||
|
||
var found = yield this.collectionsView.selectItem(itemID, inLibraryRoot, expand);
|
||
|
||
// Focus the items pane
|
||
if (found) {
|
||
document.getElementById('zotero-items-tree').focus();
|
||
}
|
||
|
||
// open Zotero pane
|
||
this.show();
|
||
});
|
||
|
||
|
||
this.getSelectedLibraryID = function () {
|
||
return this.collectionsView.getSelectedLibraryID();
|
||
}
|
||
|
||
|
||
function getSelectedCollection(asID) {
|
||
return this.collectionsView ? this.collectionsView.getSelectedCollection(asID) : false;
|
||
}
|
||
|
||
|
||
function getSelectedSavedSearch(asID)
|
||
{
|
||
if (this.collectionsView.selection.count > 0 && this.collectionsView.selection.currentIndex != -1) {
|
||
var collection = this.collectionsView.getRow(this.collectionsView.selection.currentIndex);
|
||
if (collection && collection.isSearch()) {
|
||
return asID ? collection.ref.id : collection.ref;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
|
||
/*
|
||
* Return an array of Item objects for selected items
|
||
*
|
||
* If asIDs is true, return an array of itemIDs instead
|
||
*/
|
||
function getSelectedItems(asIDs)
|
||
{
|
||
if (!this.itemsView) {
|
||
return [];
|
||
}
|
||
|
||
return this.itemsView.getSelectedItems(asIDs);
|
||
}
|
||
|
||
|
||
this.getSelectedGroup = function (asID) {
|
||
if (this.collectionsView.selection
|
||
&& this.collectionsView.selection.count > 0
|
||
&& this.collectionsView.selection.currentIndex != -1) {
|
||
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
if (collectionTreeRow && collectionTreeRow.isGroup()) {
|
||
return asID ? collectionTreeRow.ref.id : collectionTreeRow.ref;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
|
||
/*
|
||
* Returns an array of Zotero.Item objects of visible items in current sort order
|
||
*
|
||
* If asIDs is true, return an array of itemIDs instead
|
||
*/
|
||
function getSortedItems(asIDs) {
|
||
if (!this.itemsView) {
|
||
return [];
|
||
}
|
||
|
||
return this.itemsView.getSortedItems(asIDs);
|
||
}
|
||
|
||
|
||
function getSortField() {
|
||
if (!this.itemsView) {
|
||
return false;
|
||
}
|
||
|
||
return this.itemsView.getSortField();
|
||
}
|
||
|
||
|
||
function getSortDirection() {
|
||
if (!this.itemsView) {
|
||
return false;
|
||
}
|
||
|
||
return this.itemsView.getSortDirection();
|
||
}
|
||
|
||
|
||
/**
|
||
* Show context menu once it's ready
|
||
*/
|
||
this.onCollectionsContextMenuOpen = async function (event) {
|
||
await ZoteroPane.buildCollectionContextMenu();
|
||
document.getElementById('zotero-collectionmenu').openPopup(
|
||
null, null, event.clientX + 1, event.clientY + 1, true, false, event
|
||
);
|
||
};
|
||
|
||
|
||
/**
|
||
* Show context menu once it's ready
|
||
*/
|
||
this.onItemsContextMenuOpen = async function (event) {
|
||
await ZoteroPane.buildItemContextMenu()
|
||
document.getElementById('zotero-itemmenu').openPopup(
|
||
null, null, event.clientX + 1, event.clientY + 1, true, false, event
|
||
);
|
||
};
|
||
|
||
|
||
this.onCollectionContextMenuSelect = function (event) {
|
||
event.stopPropagation();
|
||
var o = _collectionContextMenuOptions.find(o => o.id == event.target.id)
|
||
if (o.oncommand) {
|
||
o.oncommand();
|
||
}
|
||
};
|
||
|
||
|
||
// menuitem configuration
|
||
//
|
||
// This has to be kept in sync with zotero-collectionmenu in zoteroPane.xul. We could do this
|
||
// entirely in JS, but various localized strings are only in zotero.dtd, and they're used in
|
||
// standalone.xul as well, so for now they have to remain as XML entities.
|
||
var _collectionContextMenuOptions = [
|
||
{
|
||
id: "sync",
|
||
label: Zotero.getString('sync.sync'),
|
||
oncommand: () => {
|
||
Zotero.Sync.Runner.sync({
|
||
libraries: [this.getSelectedLibraryID()],
|
||
});
|
||
}
|
||
},
|
||
{
|
||
id: "sep1",
|
||
},
|
||
{
|
||
id: "newCollection",
|
||
command: "cmd_zotero_newCollection"
|
||
},
|
||
{
|
||
id: "newSavedSearch",
|
||
command: "cmd_zotero_newSavedSearch"
|
||
},
|
||
{
|
||
id: "newSubcollection",
|
||
oncommand: () => {
|
||
this.newCollection(this.getSelectedCollection().key);
|
||
}
|
||
},
|
||
{
|
||
id: "refreshFeed",
|
||
oncommand: () => this.refreshFeed()
|
||
},
|
||
{
|
||
id: "sep2",
|
||
},
|
||
{
|
||
id: "showDuplicates",
|
||
oncommand: () => {
|
||
this.setVirtual(this.getSelectedLibraryID(), 'duplicates', true);
|
||
}
|
||
},
|
||
{
|
||
id: "showUnfiled",
|
||
oncommand: () => {
|
||
this.setVirtual(this.getSelectedLibraryID(), 'unfiled', true);
|
||
}
|
||
},
|
||
{
|
||
id: "editSelectedCollection",
|
||
oncommand: () => this.editSelectedCollection()
|
||
},
|
||
{
|
||
id: "markReadFeed",
|
||
oncommand: () => this.markFeedRead()
|
||
},
|
||
{
|
||
id: "editSelectedFeed",
|
||
oncommand: () => this.editSelectedFeed()
|
||
},
|
||
{
|
||
id: "deleteCollection",
|
||
oncommand: () => this.deleteSelectedCollection()
|
||
},
|
||
{
|
||
id: "deleteCollectionAndItems",
|
||
oncommand: () => this.deleteSelectedCollection(true)
|
||
},
|
||
{
|
||
id: "sep3",
|
||
},
|
||
{
|
||
id: "exportCollection",
|
||
oncommand: () => Zotero_File_Interface.exportCollection()
|
||
},
|
||
{
|
||
id: "createBibCollection",
|
||
oncommand: () => Zotero_File_Interface.bibliographyFromCollection()
|
||
},
|
||
{
|
||
id: "exportFile",
|
||
oncommand: () => Zotero_File_Interface.exportFile()
|
||
},
|
||
{
|
||
id: "loadReport",
|
||
oncommand: event => Zotero_Report_Interface.loadCollectionReport(event)
|
||
},
|
||
{
|
||
id: "emptyTrash",
|
||
oncommand: () => this.emptyTrash()
|
||
},
|
||
{
|
||
id: "removeLibrary",
|
||
label: Zotero.getString('pane.collections.menu.remove.library'),
|
||
oncommand: () => {
|
||
let library = Zotero.Libraries.get(this.getSelectedLibraryID());
|
||
let ps = Services.prompt;
|
||
let buttonFlags = (ps.BUTTON_POS_0) * (ps.BUTTON_TITLE_IS_STRING)
|
||
+ (ps.BUTTON_POS_1) * (ps.BUTTON_TITLE_CANCEL);
|
||
let index = ps.confirmEx(
|
||
null,
|
||
Zotero.getString('pane.collections.removeLibrary'),
|
||
Zotero.getString('pane.collections.removeLibrary.text', library.name),
|
||
buttonFlags,
|
||
Zotero.getString('general.remove'),
|
||
null,
|
||
null, null, {}
|
||
);
|
||
if (index == 0) {
|
||
library.eraseTx();
|
||
}
|
||
}
|
||
},
|
||
];
|
||
|
||
this.buildCollectionContextMenu = async function () {
|
||
var libraryID = this.getSelectedLibraryID();
|
||
var options = _collectionContextMenuOptions;
|
||
|
||
var collectionTreeRow = this.collectionsView.selectedTreeRow;
|
||
// This can happen if selection is changing during delayed second call below
|
||
if (!collectionTreeRow) {
|
||
return;
|
||
}
|
||
|
||
// If the items view isn't initialized, this was a right-click on a different collection
|
||
// and the new collection's items are still loading, so continue menu after loading is
|
||
// done. This causes some menu items (e.g., export/createBib/loadReport) to appear gray
|
||
// in the menu at first and then turn black once there are items
|
||
if (!collectionTreeRow.isHeader() && !this.itemsView.initialized) {
|
||
await new Promise((resolve) => {
|
||
this.itemsView.onLoad.addListener(() => {
|
||
resolve();
|
||
});
|
||
});
|
||
}
|
||
|
||
// Set attributes on the menu from the configuration object
|
||
var menu = document.getElementById('zotero-collectionmenu');
|
||
var m = {};
|
||
for (let i = 0; i < options.length; i++) {
|
||
let option = options[i];
|
||
let menuitem = menu.childNodes[i];
|
||
m[option.id] = menuitem;
|
||
|
||
menuitem.id = option.id;
|
||
if (!menuitem.classList.contains('menuitem-iconic')) {
|
||
menuitem.classList.add('menuitem-iconic');
|
||
}
|
||
if (option.label) {
|
||
menuitem.setAttribute('label', option.label);
|
||
}
|
||
if (option.command) {
|
||
menuitem.setAttribute('command', option.command);
|
||
}
|
||
}
|
||
|
||
// By default things are hidden and visible, so we only need to record
|
||
// when things are visible and when they're visible but disabled
|
||
var show = [], disable = [];
|
||
|
||
if (collectionTreeRow.isCollection()) {
|
||
show = [
|
||
'newSubcollection',
|
||
'sep2',
|
||
'editSelectedCollection',
|
||
'deleteCollection',
|
||
'deleteCollectionAndItems',
|
||
'sep3',
|
||
'exportCollection',
|
||
'createBibCollection',
|
||
'loadReport'
|
||
];
|
||
|
||
if (!this.itemsView.rowCount) {
|
||
disable = ['createBibCollection', 'loadReport'];
|
||
|
||
// If no items in subcollections either, disable export
|
||
if (!(await collectionTreeRow.ref.getDescendents(false, 'item', false).length)) {
|
||
disable.push('exportCollection');
|
||
}
|
||
}
|
||
|
||
// Adjust labels
|
||
m.editSelectedCollection.setAttribute('label', Zotero.getString('pane.collections.menu.rename.collection'));
|
||
m.deleteCollection.setAttribute('label', Zotero.getString('pane.collections.menu.delete.collection'));
|
||
m.deleteCollectionAndItems.setAttribute('label', Zotero.getString('pane.collections.menu.delete.collectionAndItems'));
|
||
m.exportCollection.setAttribute('label', Zotero.getString('pane.collections.menu.export.collection'));
|
||
m.createBibCollection.setAttribute('label', Zotero.getString('pane.collections.menu.createBib.collection'));
|
||
m.loadReport.setAttribute('label', Zotero.getString('pane.collections.menu.generateReport.collection'));
|
||
}
|
||
else if (collectionTreeRow.isFeed()) {
|
||
show = [
|
||
'refreshFeed',
|
||
'sep2',
|
||
'markReadFeed',
|
||
'editSelectedFeed',
|
||
'deleteCollectionAndItems'
|
||
];
|
||
|
||
if (collectionTreeRow.ref.unreadCount == 0) {
|
||
disable = ['markReadFeed'];
|
||
}
|
||
|
||
// Adjust labels
|
||
m.deleteCollectionAndItems.setAttribute('label', Zotero.getString('pane.collections.menu.delete.feedAndItems'));
|
||
}
|
||
else if (collectionTreeRow.isSearch()) {
|
||
show = [
|
||
'editSelectedCollection',
|
||
'deleteCollection',
|
||
'sep3',
|
||
'exportCollection',
|
||
'createBibCollection',
|
||
'loadReport'
|
||
];
|
||
|
||
m.deleteCollection.setAttribute('label', Zotero.getString('pane.collections.menu.delete.savedSearch'));
|
||
|
||
if (!this.itemsView.rowCount) {
|
||
disable.push('exportCollection', 'createBibCollection', 'loadReport');
|
||
}
|
||
|
||
// Adjust labels
|
||
m.editSelectedCollection.setAttribute('label', Zotero.getString('pane.collections.menu.edit.savedSearch'));
|
||
m.exportCollection.setAttribute('label', Zotero.getString('pane.collections.menu.export.savedSearch'));
|
||
m.createBibCollection.setAttribute('label', Zotero.getString('pane.collections.menu.createBib.savedSearch'));
|
||
m.loadReport.setAttribute('label', Zotero.getString('pane.collections.menu.generateReport.savedSearch'));
|
||
}
|
||
else if (collectionTreeRow.isTrash()) {
|
||
show = ['emptyTrash'];
|
||
}
|
||
else if (collectionTreeRow.isDuplicates() || collectionTreeRow.isUnfiled()) {
|
||
show = ['deleteCollection'];
|
||
|
||
m.deleteCollection.setAttribute('label', Zotero.getString('general.hide'));
|
||
}
|
||
else if (collectionTreeRow.isHeader()) {
|
||
}
|
||
else if (collectionTreeRow.isPublications()) {
|
||
show = [
|
||
'exportFile'
|
||
];
|
||
}
|
||
// Library
|
||
else {
|
||
let library = Zotero.Libraries.get(libraryID);
|
||
show = [];
|
||
if (!library.archived) {
|
||
show.push(
|
||
'sync',
|
||
'sep1',
|
||
'newCollection',
|
||
'newSavedSearch'
|
||
);
|
||
}
|
||
// Only show "Show Duplicates" and "Show Unfiled Items" if rows are hidden
|
||
let duplicates = Zotero.Utilities.Internal.getVirtualCollectionStateForLibrary(
|
||
libraryID, 'duplicates'
|
||
);
|
||
let unfiled = Zotero.Utilities.Internal.getVirtualCollectionStateForLibrary(
|
||
libraryID, 'unfiled'
|
||
);
|
||
if (!duplicates || !unfiled) {
|
||
if (!library.archived) {
|
||
show.push('sep2');
|
||
}
|
||
if (!duplicates) {
|
||
show.push('showDuplicates');
|
||
}
|
||
if (!unfiled) {
|
||
show.push('showUnfiled');
|
||
}
|
||
}
|
||
if (!library.archived) {
|
||
show.push('sep3');
|
||
}
|
||
show.push(
|
||
'exportFile'
|
||
);
|
||
if (library.archived) {
|
||
show.push('removeLibrary');
|
||
}
|
||
}
|
||
|
||
// Disable some actions if user doesn't have write access
|
||
//
|
||
// Some actions are disabled via their commands in onCollectionSelected()
|
||
if (collectionTreeRow.isWithinGroup() && !collectionTreeRow.editable && !collectionTreeRow.isDuplicates() && !collectionTreeRow.isUnfiled()) {
|
||
disable.push(
|
||
'newSubcollection',
|
||
'editSelectedCollection',
|
||
'deleteCollection',
|
||
'deleteCollectionAndItems'
|
||
);
|
||
}
|
||
|
||
// If within non-editable group or trash it empty, disable Empty Trash
|
||
if (collectionTreeRow.isTrash()) {
|
||
if ((collectionTreeRow.isWithinGroup() && !collectionTreeRow.isWithinEditableGroup()) || !this.itemsView.rowCount) {
|
||
disable.push('emptyTrash');
|
||
}
|
||
}
|
||
|
||
// Hide and enable all actions by default (so if they're shown they're enabled)
|
||
for (let i in m) {
|
||
m[i].setAttribute('hidden', true);
|
||
m[i].setAttribute('disabled', false);
|
||
}
|
||
|
||
for (let id of show) {
|
||
m[id].setAttribute('hidden', false);
|
||
}
|
||
|
||
for (let id of disable) {
|
||
m[id].setAttribute('disabled', true);
|
||
}
|
||
};
|
||
|
||
|
||
this.buildItemContextMenu = Zotero.Promise.coroutine(function* () {
|
||
var options = [
|
||
'showInLibrary',
|
||
'sep1',
|
||
'addNote',
|
||
'addAttachments',
|
||
'sep2',
|
||
'toggleRead',
|
||
'duplicateItem',
|
||
'removeItems',
|
||
'restoreToLibrary',
|
||
'moveToTrash',
|
||
'deleteFromLibrary',
|
||
'mergeItems',
|
||
'sep3',
|
||
'exportItems',
|
||
'createBib',
|
||
'loadReport',
|
||
'sep4',
|
||
'recognizePDF',
|
||
'unrecognize',
|
||
'reportMetadata',
|
||
'createParent',
|
||
'renameAttachments',
|
||
'reindexItem'
|
||
];
|
||
|
||
var m = {};
|
||
for (let i = 0; i < options.length; i++) {
|
||
m[options[i]] = i;
|
||
}
|
||
|
||
var menu = document.getElementById('zotero-itemmenu');
|
||
|
||
// remove old locate menu items
|
||
while(menu.firstChild && menu.firstChild.getAttribute("zotero-locate")) {
|
||
menu.removeChild(menu.firstChild);
|
||
}
|
||
|
||
var disable = [], show = [], multiple = '';
|
||
|
||
if (!this.itemsView) {
|
||
return;
|
||
}
|
||
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
var isTrash = collectionTreeRow.isTrash();
|
||
|
||
if (isTrash) {
|
||
show.push(m.deleteFromLibrary);
|
||
show.push(m.restoreToLibrary);
|
||
}
|
||
else if (!collectionTreeRow.isFeed()) {
|
||
show.push(m.moveToTrash);
|
||
}
|
||
|
||
if(!collectionTreeRow.isFeed()) {
|
||
show.push(m.sep3, m.exportItems, m.createBib, m.loadReport);
|
||
}
|
||
|
||
var items = this.getSelectedItems();
|
||
|
||
if (items.length > 0) {
|
||
// Multiple items selected
|
||
if (items.length > 1) {
|
||
var multiple = '.multiple';
|
||
|
||
var canMerge = true, canIndex = true, canRecognize = true, canUnrecognize = true, canRename = true;
|
||
var canMarkRead = collectionTreeRow.isFeed();
|
||
var markUnread = true;
|
||
|
||
for (let i = 0; i < items.length; i++) {
|
||
let item = items[i];
|
||
if (canMerge && !item.isRegularItem() || item.isFeedItem || collectionTreeRow.isDuplicates()) {
|
||
canMerge = false;
|
||
}
|
||
|
||
if (canIndex && !(yield Zotero.Fulltext.canReindex(item))) {
|
||
canIndex = false;
|
||
}
|
||
|
||
if (canRecognize && !Zotero.RecognizePDF.canRecognize(item)) {
|
||
canRecognize = false;
|
||
}
|
||
|
||
if (canUnrecognize && !Zotero.RecognizePDF.canUnrecognize(item)) {
|
||
canUnrecognize = false;
|
||
}
|
||
|
||
// Show rename option only if all items are child attachments
|
||
if (canRename && (!item.isAttachment() || item.isTopLevelItem() || item.attachmentLinkMode == Zotero.Attachments.LINK_MODE_LINKED_URL)) {
|
||
canRename = false;
|
||
}
|
||
|
||
if(canMarkRead && markUnread && !item.isRead) {
|
||
markUnread = false;
|
||
}
|
||
}
|
||
|
||
if (canMerge) {
|
||
show.push(m.mergeItems);
|
||
}
|
||
|
||
if (canIndex) {
|
||
show.push(m.reindexItem);
|
||
}
|
||
|
||
if (canRecognize) {
|
||
show.push(m.recognizePDF);
|
||
}
|
||
|
||
if (canUnrecognize) {
|
||
show.push(m.unrecognize);
|
||
}
|
||
|
||
if (canMarkRead) {
|
||
show.push(m.toggleRead);
|
||
if (markUnread) {
|
||
menu.childNodes[m.toggleRead].setAttribute('label', Zotero.getString('pane.item.markAsUnread'));
|
||
} else {
|
||
menu.childNodes[m.toggleRead].setAttribute('label', Zotero.getString('pane.item.markAsRead'));
|
||
}
|
||
}
|
||
|
||
var canCreateParent = true;
|
||
for (let i = 0; i < items.length; i++) {
|
||
let item = items[i];
|
||
if (!item.isTopLevelItem() || !item.isAttachment() || item.isFeedItem) {
|
||
canCreateParent = false;
|
||
break;
|
||
}
|
||
}
|
||
if (canCreateParent) {
|
||
show.push(m.createParent);
|
||
}
|
||
|
||
if (canRename) {
|
||
show.push(m.renameAttachments);
|
||
}
|
||
|
||
// Add in attachment separator
|
||
if (canCreateParent || canRecognize || canUnrecognize || canRename || canIndex) {
|
||
show.push(m.sep4);
|
||
}
|
||
|
||
// Block certain actions on files if no access and at least one item
|
||
// is an imported attachment
|
||
if (!collectionTreeRow.filesEditable) {
|
||
var hasImportedAttachment = false;
|
||
for (var i=0; i<items.length; i++) {
|
||
var item = items[i];
|
||
if (item.isImportedAttachment()) {
|
||
hasImportedAttachment = true;
|
||
break;
|
||
}
|
||
}
|
||
if (hasImportedAttachment) {
|
||
disable.push(m.moveToTrash, m.createParent, m.renameAttachments);
|
||
}
|
||
}
|
||
}
|
||
|
||
// Single item selected
|
||
else
|
||
{
|
||
let item = items[0];
|
||
menu.setAttribute('itemID', item.id);
|
||
menu.setAttribute('itemKey', item.key);
|
||
|
||
if (!isTrash) {
|
||
// Show in Library
|
||
if (!collectionTreeRow.isLibrary(true)) {
|
||
show.push(m.showInLibrary, m.sep1);
|
||
}
|
||
|
||
if (item.isRegularItem() && !item.isFeedItem) {
|
||
show.push(m.addNote, m.addAttachments, m.sep2);
|
||
}
|
||
|
||
if (Zotero.RecognizePDF.canUnrecognize(item)) {
|
||
show.push(m.sep4, m.unrecognize, m.reportMetadata);
|
||
}
|
||
|
||
if (item.isAttachment()) {
|
||
var showSep4 = false;
|
||
|
||
if (Zotero.RecognizePDF.canRecognize(item)) {
|
||
show.push(m.recognizePDF);
|
||
showSep4 = true;
|
||
}
|
||
|
||
// Allow parent item creation for standalone attachments
|
||
if (item.isTopLevelItem()) {
|
||
show.push(m.createParent);
|
||
showSep4 = true;
|
||
}
|
||
|
||
// Attachment rename option
|
||
if (!item.isTopLevelItem() && item.attachmentLinkMode != Zotero.Attachments.LINK_MODE_LINKED_URL) {
|
||
show.push(m.renameAttachments);
|
||
showSep4 = true;
|
||
}
|
||
|
||
// If not linked URL, show reindex line
|
||
if (yield Zotero.Fulltext.canReindex(item)) {
|
||
show.push(m.reindexItem);
|
||
showSep4 = true;
|
||
}
|
||
|
||
if (showSep4) {
|
||
show.push(m.sep4);
|
||
}
|
||
}
|
||
else if (item.isFeedItem) {
|
||
show.push(m.toggleRead);
|
||
if (item.isRead) {
|
||
menu.childNodes[m.toggleRead].setAttribute('label', Zotero.getString('pane.item.markAsUnread'));
|
||
} else {
|
||
menu.childNodes[m.toggleRead].setAttribute('label', Zotero.getString('pane.item.markAsRead'));
|
||
}
|
||
}
|
||
else if (!collectionTreeRow.isPublications()) {
|
||
show.push(m.duplicateItem);
|
||
}
|
||
}
|
||
|
||
// Update attachment submenu
|
||
var popup = document.getElementById('zotero-add-attachment-popup')
|
||
this.updateAttachmentButtonMenu(popup);
|
||
|
||
// Block certain actions on files if no access
|
||
if (item.isImportedAttachment() && !collectionTreeRow.filesEditable) {
|
||
[m.moveToTrash, m.createParent, m.renameAttachments].forEach(function (x) {
|
||
disable.push(x);
|
||
});
|
||
}
|
||
}
|
||
}
|
||
// No items selected
|
||
else
|
||
{
|
||
// Show in Library
|
||
if (!collectionTreeRow.isLibrary()) {
|
||
show.push(m.showInLibrary, m.sep1);
|
||
}
|
||
|
||
disable.push(m.showInLibrary, m.duplicateItem, m.removeItems,
|
||
m.moveToTrash, m.deleteFromLibrary, m.exportItems, m.createBib, m.loadReport);
|
||
}
|
||
|
||
if ((!collectionTreeRow.editable || collectionTreeRow.isPublications()) && !collectionTreeRow.isFeed()) {
|
||
for (let i in m) {
|
||
// Still allow some options for non-editable views
|
||
switch (i) {
|
||
case 'showInLibrary':
|
||
case 'exportItems':
|
||
case 'createBib':
|
||
case 'loadReport':
|
||
case 'toggleRead':
|
||
continue;
|
||
}
|
||
if (isTrash) {
|
||
switch (i) {
|
||
case 'restoreToLibrary':
|
||
case 'deleteFromLibrary':
|
||
continue;
|
||
}
|
||
}
|
||
else if (collectionTreeRow.isPublications()) {
|
||
switch (i) {
|
||
case 'addNote':
|
||
case 'removeItems':
|
||
case 'moveToTrash':
|
||
continue;
|
||
}
|
||
}
|
||
disable.push(m[i]);
|
||
}
|
||
}
|
||
|
||
// Remove from collection
|
||
if (collectionTreeRow.isCollection() && items.every(item => item.isTopLevelItem())) {
|
||
menu.childNodes[m.removeItems].setAttribute('label', Zotero.getString('pane.items.menu.remove' + multiple));
|
||
show.push(m.removeItems);
|
||
}
|
||
else if (collectionTreeRow.isPublications()) {
|
||
menu.childNodes[m.removeItems].setAttribute('label', Zotero.getString('pane.items.menu.removeFromPublications' + multiple));
|
||
show.push(m.removeItems);
|
||
}
|
||
|
||
// Set labels, plural if necessary
|
||
menu.childNodes[m.moveToTrash].setAttribute('label', Zotero.getString('pane.items.menu.moveToTrash' + multiple));
|
||
menu.childNodes[m.deleteFromLibrary].setAttribute('label', Zotero.getString('pane.items.menu.delete' + multiple));
|
||
menu.childNodes[m.exportItems].setAttribute('label', Zotero.getString('pane.items.menu.export' + multiple));
|
||
menu.childNodes[m.createBib].setAttribute('label', Zotero.getString('pane.items.menu.createBib' + multiple));
|
||
menu.childNodes[m.loadReport].setAttribute('label', Zotero.getString('pane.items.menu.generateReport' + multiple));
|
||
menu.childNodes[m.createParent].setAttribute('label', Zotero.getString('pane.items.menu.createParent' + multiple));
|
||
menu.childNodes[m.recognizePDF].setAttribute('label', Zotero.getString('pane.items.menu.recognizePDF' + multiple));
|
||
menu.childNodes[m.renameAttachments].setAttribute('label', Zotero.getString('pane.items.menu.renameAttachments' + multiple));
|
||
menu.childNodes[m.reindexItem].setAttribute('label', Zotero.getString('pane.items.menu.reindexItem' + multiple));
|
||
|
||
// Hide and enable all actions by default (so if they're shown they're enabled)
|
||
for (let i in m) {
|
||
let pos = m[i];
|
||
menu.childNodes[pos].setAttribute('hidden', true);
|
||
menu.childNodes[pos].setAttribute('disabled', false);
|
||
}
|
||
|
||
for (var i in disable)
|
||
{
|
||
menu.childNodes[disable[i]].setAttribute('disabled', true);
|
||
}
|
||
|
||
for (var i in show)
|
||
{
|
||
menu.childNodes[show[i]].setAttribute('hidden', false);
|
||
}
|
||
|
||
// add locate menu options
|
||
yield Zotero_LocateMenu.buildContextMenu(menu, true);
|
||
});
|
||
|
||
|
||
this.onTreeMouseDown = function (event) {
|
||
var t = event.originalTarget;
|
||
var tree = t.parentNode;
|
||
|
||
// Ignore click on column headers
|
||
if (!tree.treeBoxObject) {
|
||
return;
|
||
}
|
||
|
||
var row = {}, col = {}, obj = {};
|
||
tree.treeBoxObject.getCellAt(event.clientX, event.clientY, row, col, obj);
|
||
if (row.value == -1) {
|
||
return;
|
||
}
|
||
|
||
if (tree.id == 'zotero-collections-tree') {
|
||
let collectionTreeRow = ZoteroPane_Local.collectionsView.getRow(row.value);
|
||
|
||
// Prevent the tree's select event from being called for a click
|
||
// on a library sync error icon
|
||
if (collectionTreeRow.isLibrary(true)) {
|
||
if (col.value.id == 'zotero-collections-sync-status-column') {
|
||
var errors = Zotero.Sync.Runner.getErrors(collectionTreeRow.ref.libraryID);
|
||
if (errors) {
|
||
event.stopPropagation();
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else if (tree.id == 'zotero-items-tree') {
|
||
let collectionTreeRow = ZoteroPane_Local.getCollectionTreeRow();
|
||
|
||
// Automatically select all equivalent items when clicking on an item
|
||
// in duplicates view
|
||
if (collectionTreeRow.isDuplicates()) {
|
||
// Trigger only on primary-button single clicks without modifiers
|
||
// (so that items can still be selected and deselected manually)
|
||
if (!event || event.detail != 1 || event.button != 0 || event.metaKey
|
||
|| event.shiftKey || event.altKey || event.ctrlKey) {
|
||
return;
|
||
}
|
||
|
||
var t = event.originalTarget;
|
||
|
||
if (t.localName != 'treechildren') {
|
||
return;
|
||
}
|
||
|
||
var tree = t.parentNode;
|
||
|
||
var row = {}, col = {}, obj = {};
|
||
tree.treeBoxObject.getCellAt(event.clientX, event.clientY, row, col, obj);
|
||
|
||
// obj.value == 'cell'/'text'/'image'/'twisty'
|
||
if (!obj.value) {
|
||
return;
|
||
}
|
||
|
||
// Duplicated in itemTreeView.js::notify()
|
||
var itemID = ZoteroPane_Local.itemsView.getRow(row.value).ref.id;
|
||
var setItemIDs = collectionTreeRow.ref.getSetItemsByItemID(itemID);
|
||
ZoteroPane_Local.itemsView.selectItems(setItemIDs);
|
||
|
||
// Prevent the tree's select event from being called here,
|
||
// since it's triggered by the multi-select
|
||
event.stopPropagation();
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
// Adapted from: http://www.xulplanet.com/references/elemref/ref_tree.html#cmnote-9
|
||
this.onTreeClick = function (event) {
|
||
var t = event.originalTarget;
|
||
|
||
if (t.localName != 'treechildren') {
|
||
return;
|
||
}
|
||
|
||
var tree = t.parentNode;
|
||
|
||
var row = {}, col = {}, obj = {};
|
||
tree.treeBoxObject.getCellAt(event.clientX, event.clientY, row, col, obj);
|
||
|
||
// We care only about primary-button double and triple clicks
|
||
if (!event || (event.detail != 2 && event.detail != 3) || event.button != 0) {
|
||
if (row.value == -1) {
|
||
return;
|
||
}
|
||
|
||
if (tree.id == 'zotero-collections-tree') {
|
||
let collectionTreeRow = ZoteroPane_Local.collectionsView.getRow(row.value);
|
||
|
||
// Show the error panel when clicking a library-specific
|
||
// sync error icon
|
||
if (collectionTreeRow.isLibrary(true)) {
|
||
if (col.value.id == 'zotero-collections-sync-status-column') {
|
||
var errors = Zotero.Sync.Runner.getErrors(collectionTreeRow.ref.libraryID);
|
||
if (!errors) {
|
||
return;
|
||
}
|
||
|
||
var panel = Zotero.Sync.Runner.updateErrorPanel(window.document, errors);
|
||
|
||
var anchor = document.getElementById('zotero-collections-tree-shim');
|
||
|
||
var x = {}, y = {}, width = {}, height = {};
|
||
tree.treeBoxObject.getCoordsForCellItem(row.value, col.value, 'image', x, y, width, height);
|
||
|
||
x = x.value + Math.round(width.value / 2);
|
||
y = y.value + height.value + 3;
|
||
|
||
panel.openPopup(anchor, "after_start", x, y, false, false);
|
||
}
|
||
return;
|
||
}
|
||
}
|
||
|
||
// The Mozilla tree binding fires select() in mousedown(),
|
||
// but if when it gets to click() the selection differs from
|
||
// what it expects (say, because multiple items had been
|
||
// selected during mousedown(), as is the case in duplicates mode),
|
||
// it fires select() again. We prevent that here.
|
||
else if (tree.id == 'zotero-items-tree') {
|
||
let collectionTreeRow = ZoteroPane_Local.getCollectionTreeRow();
|
||
if (collectionTreeRow.isDuplicates()) {
|
||
if (event.button != 0 || event.metaKey || event.shiftKey
|
||
|| event.altKey || event.ctrlKey) {
|
||
return;
|
||
}
|
||
|
||
if (obj.value == 'twisty') {
|
||
return;
|
||
}
|
||
|
||
event.stopPropagation();
|
||
event.preventDefault();
|
||
}
|
||
}
|
||
|
||
return;
|
||
}
|
||
|
||
var collectionTreeRow = ZoteroPane_Local.getCollectionTreeRow();
|
||
|
||
// Ignore double-clicks in duplicates view on everything except attachments
|
||
if (collectionTreeRow.isDuplicates()) {
|
||
var items = ZoteroPane_Local.getSelectedItems();
|
||
if (items.length != 1 || !items[0].isAttachment()) {
|
||
event.stopPropagation();
|
||
event.preventDefault();
|
||
return;
|
||
}
|
||
}
|
||
|
||
// obj.value == 'cell'/'text'/'image'
|
||
if (!obj.value) {
|
||
return;
|
||
}
|
||
|
||
if (tree.id == 'zotero-collections-tree') {
|
||
// Ignore triple clicks for collections
|
||
if (event.detail != 2) {
|
||
return;
|
||
}
|
||
|
||
if (collectionTreeRow.isLibrary()) {
|
||
var uri = Zotero.URI.getCurrentUserLibraryURI();
|
||
if (uri) {
|
||
ZoteroPane_Local.loadURI(uri);
|
||
event.stopPropagation();
|
||
}
|
||
return;
|
||
}
|
||
|
||
if (collectionTreeRow.isSearch()) {
|
||
ZoteroPane_Local.editSelectedCollection();
|
||
return;
|
||
}
|
||
|
||
if (collectionTreeRow.isGroup()) {
|
||
var uri = Zotero.URI.getGroupURI(collectionTreeRow.ref, true);
|
||
ZoteroPane_Local.loadURI(uri);
|
||
event.stopPropagation();
|
||
return;
|
||
}
|
||
|
||
// Ignore double-clicks on Unfiled Items source row
|
||
if (collectionTreeRow.isUnfiled()) {
|
||
return;
|
||
}
|
||
|
||
if (collectionTreeRow.isHeader()) {
|
||
if (collectionTreeRow.ref.id == 'group-libraries-header') {
|
||
var uri = Zotero.URI.getGroupsURL();
|
||
ZoteroPane_Local.loadURI(uri);
|
||
event.stopPropagation();
|
||
}
|
||
return;
|
||
}
|
||
|
||
if (collectionTreeRow.isBucket()) {
|
||
ZoteroPane_Local.loadURI(collectionTreeRow.ref.uri);
|
||
event.stopPropagation();
|
||
}
|
||
}
|
||
else if (tree.id == 'zotero-items-tree') {
|
||
var viewOnDoubleClick = Zotero.Prefs.get('viewOnDoubleClick');
|
||
if (viewOnDoubleClick) {
|
||
// Expand/collapse on triple-click, though the double-click
|
||
// will still trigger
|
||
if (event.detail == 3) {
|
||
tree.view.toggleOpenState(tree.view.selection.currentIndex);
|
||
return;
|
||
}
|
||
|
||
// Don't expand/collapse on double-click
|
||
event.stopPropagation();
|
||
}
|
||
|
||
if (tree.view && tree.view.selection.currentIndex > -1) {
|
||
var item = ZoteroPane_Local.getSelectedItems()[0];
|
||
if (item) {
|
||
if (!viewOnDoubleClick && item.isRegularItem()) {
|
||
return;
|
||
}
|
||
ZoteroPane_Local.viewItems([item], event);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
this.openPreferences = function (paneID, action) {
|
||
Zotero.warn("ZoteroPane.openPreferences() is deprecated"
|
||
+ " -- use Zotero.Utilities.Internal.openPreferences() instead");
|
||
Zotero.Utilities.Internal.openPreferences(paneID, { action });
|
||
}
|
||
|
||
|
||
/*
|
||
* Loads a URL following the standard modifier key behavior
|
||
* (e.g. meta-click == new background tab, meta-shift-click == new front tab,
|
||
* shift-click == new window, no modifier == frontmost tab
|
||
*/
|
||
this.loadURI = function (uris, event) {
|
||
if(typeof uris === "string") {
|
||
uris = [uris];
|
||
}
|
||
|
||
for (let i = 0; i < uris.length; i++) {
|
||
let uri = uris[i];
|
||
// Ignore javascript: and data: URIs
|
||
if (uri.match(/^(javascript|data):/)) {
|
||
return;
|
||
}
|
||
|
||
if (Zotero.isStandalone) {
|
||
if(uri.match(/^https?/)) {
|
||
this.launchURL(uri);
|
||
continue;
|
||
}
|
||
|
||
// Handle no-content zotero: URLs (e.g., zotero://select) without opening viewer
|
||
if (uri.startsWith('zotero:')) {
|
||
let nsIURI = Services.io.newURI(uri, null, null);
|
||
let handler = Components.classes["@mozilla.org/network/protocol;1?name=zotero"]
|
||
.getService();
|
||
let extension = handler.wrappedJSObject.getExtension(nsIURI);
|
||
if (extension.noContent) {
|
||
extension.doAction(nsIURI);
|
||
return;
|
||
}
|
||
}
|
||
|
||
Zotero.openInViewer(uri);
|
||
return;
|
||
}
|
||
|
||
// Open in new tab
|
||
var openInNewTab = event && (event.metaKey || (!Zotero.isMac && event.ctrlKey));
|
||
if (event && event.shiftKey && !openInNewTab) {
|
||
window.open(uri, "zotero-loaded-page",
|
||
"menubar=yes,location=yes,toolbar=yes,personalbar=yes,resizable=yes,scrollbars=yes,status=yes");
|
||
}
|
||
else if (openInNewTab || !window.loadURI || uris.length > 1) {
|
||
// if no gBrowser, find it
|
||
if(!gBrowser) {
|
||
let browserWindow = Services.wm.getMostRecentWindow("navigator:browser");
|
||
var gBrowser = browserWindow.gBrowser;
|
||
}
|
||
|
||
// load in a new tab
|
||
var tab = gBrowser.addTab(uri);
|
||
var browser = gBrowser.getBrowserForTab(tab);
|
||
|
||
if (event && event.shiftKey || !openInNewTab) {
|
||
// if shift key is down, or we are opening in a new tab because there is no loadURI,
|
||
// select new tab
|
||
gBrowser.selectedTab = tab;
|
||
}
|
||
}
|
||
else {
|
||
window.loadURI(uri);
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
function setItemsPaneMessage(content, lock) {
|
||
var elem = document.getElementById('zotero-items-pane-message-box');
|
||
|
||
if (elem.getAttribute('locked') == 'true') {
|
||
return;
|
||
}
|
||
|
||
elem.textContent = '';
|
||
if (typeof content == 'string') {
|
||
let contentParts = content.split("\n\n");
|
||
for (let part of contentParts) {
|
||
var desc = document.createElement('description');
|
||
desc.appendChild(document.createTextNode(part));
|
||
elem.appendChild(desc);
|
||
}
|
||
}
|
||
else {
|
||
elem.appendChild(content);
|
||
}
|
||
|
||
// Make message permanent
|
||
if (lock) {
|
||
elem.setAttribute('locked', true);
|
||
}
|
||
|
||
document.getElementById('zotero-items-pane-content').selectedIndex = 1;
|
||
}
|
||
|
||
|
||
function clearItemsPaneMessage() {
|
||
// If message box is locked, don't clear
|
||
var box = document.getElementById('zotero-items-pane-message-box');
|
||
if (box.getAttribute('locked') == 'true') {
|
||
return;
|
||
}
|
||
|
||
document.getElementById('zotero-items-pane-content').selectedIndex = 0;
|
||
}
|
||
|
||
|
||
this.setItemPaneMessage = function (content) {
|
||
document.getElementById('zotero-item-pane-content').selectedIndex = 0;
|
||
|
||
var elem = document.getElementById('zotero-item-pane-message-box');
|
||
elem.textContent = '';
|
||
if (typeof content == 'string') {
|
||
let contentParts = content.split("\n\n");
|
||
for (let part of contentParts) {
|
||
let desc = document.createElement('description');
|
||
desc.appendChild(document.createTextNode(part));
|
||
elem.appendChild(desc);
|
||
}
|
||
}
|
||
else {
|
||
elem.appendChild(content);
|
||
}
|
||
}
|
||
|
||
|
||
// Updates browser context menu options
|
||
function contextPopupShowing()
|
||
{
|
||
if (!Zotero.Prefs.get('browserContentContextMenu')) {
|
||
return;
|
||
}
|
||
|
||
var menuitem = document.getElementById("zotero-context-add-to-current-note");
|
||
if (menuitem){
|
||
var items = ZoteroPane_Local.getSelectedItems();
|
||
if (ZoteroPane_Local.itemsView.selection && ZoteroPane_Local.itemsView.selection.count==1
|
||
&& items[0] && items[0].isNote()
|
||
&& window.gContextMenu.isTextSelected)
|
||
{
|
||
menuitem.hidden = false;
|
||
}
|
||
else
|
||
{
|
||
menuitem.hidden = true;
|
||
}
|
||
}
|
||
|
||
var menuitem = document.getElementById("zotero-context-add-to-new-note");
|
||
if (menuitem){
|
||
if (window.gContextMenu.isTextSelected)
|
||
{
|
||
menuitem.hidden = false;
|
||
}
|
||
else
|
||
{
|
||
menuitem.hidden = true;
|
||
}
|
||
}
|
||
|
||
var menuitem = document.getElementById("zotero-context-save-link-as-item");
|
||
if (menuitem) {
|
||
if (window.gContextMenu.onLink) {
|
||
menuitem.hidden = false;
|
||
}
|
||
else {
|
||
menuitem.hidden = true;
|
||
}
|
||
}
|
||
|
||
var menuitem = document.getElementById("zotero-context-save-image-as-item");
|
||
if (menuitem) {
|
||
// Not using window.gContextMenu.hasBGImage -- if the user wants it,
|
||
// they can use the Firefox option to view and then import from there
|
||
if (window.gContextMenu.onImage) {
|
||
menuitem.hidden = false;
|
||
}
|
||
else {
|
||
menuitem.hidden = true;
|
||
}
|
||
}
|
||
|
||
// If Zotero is locked or library is read-only, disable menu items
|
||
var menu = document.getElementById('zotero-content-area-context-menu');
|
||
var disabled = Zotero.locked;
|
||
if (!disabled && self.collectionsView.selection && self.collectionsView.selection.count) {
|
||
var collectionTreeRow = self.collectionsView.selectedTreeRow;
|
||
disabled = !collectionTreeRow.editable;
|
||
}
|
||
for (let menuitem of menu.firstChild.childNodes) {
|
||
menuitem.disabled = disabled;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @return {Promise<Integer|null|false>} - The id of the new note in non-popup mode, null in
|
||
* popup mode (where a note isn't created immediately), or false if library isn't editable
|
||
*/
|
||
this.newNote = Zotero.Promise.coroutine(function* (popup, parentKey, text, citeURI) {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return false;
|
||
}
|
||
|
||
if (popup) {
|
||
// TODO: _text_
|
||
var c = this.getSelectedCollection();
|
||
if (c) {
|
||
this.openNoteWindow(null, c.id, parentKey);
|
||
}
|
||
else {
|
||
this.openNoteWindow(null, null, parentKey);
|
||
}
|
||
return null;
|
||
}
|
||
|
||
if (!text) {
|
||
text = '';
|
||
}
|
||
text = text.trim();
|
||
|
||
if (text) {
|
||
text = '<blockquote'
|
||
+ (citeURI ? ' cite="' + citeURI + '"' : '')
|
||
+ '>' + Zotero.Utilities.text2html(text) + "</blockquote>";
|
||
}
|
||
|
||
var item = new Zotero.Item('note');
|
||
item.libraryID = this.getSelectedLibraryID();
|
||
item.setNote(text);
|
||
if (parentKey) {
|
||
item.parentKey = parentKey;
|
||
}
|
||
else if (this.collectionsView.selectedTreeRow.isCollection()) {
|
||
item.addToCollection(this.collectionsView.selectedTreeRow.ref.id);
|
||
}
|
||
var itemID = yield item.saveTx();
|
||
|
||
yield this.selectItem(itemID);
|
||
|
||
document.getElementById('zotero-note-editor').focus();
|
||
|
||
return itemID;
|
||
});
|
||
|
||
|
||
/**
|
||
* Creates a child note for the selected item or the selected item's parent
|
||
*
|
||
* @return {Promise}
|
||
*/
|
||
this.newChildNote = function (popup) {
|
||
var selected = this.getSelectedItems()[0];
|
||
var parentKey = selected.parentItemKey;
|
||
parentKey = parentKey ? parentKey : selected.key;
|
||
this.newNote(popup, parentKey);
|
||
}
|
||
|
||
|
||
this.addSelectedTextToCurrentNote = Zotero.Promise.coroutine(function* () {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var text = event.currentTarget.ownerDocument.popupNode.ownerDocument.defaultView.getSelection().toString();
|
||
var uri = event.currentTarget.ownerDocument.popupNode.ownerDocument.location.href;
|
||
|
||
if (!text) {
|
||
return false;
|
||
}
|
||
|
||
text = text.trim();
|
||
|
||
if (!text.length) {
|
||
return false;
|
||
}
|
||
|
||
text = '<blockquote' + (uri ? ' cite="' + uri + '"' : '') + '>'
|
||
+ Zotero.Utilities.text2html(text) + "</blockquote>";
|
||
|
||
var items = this.getSelectedItems();
|
||
|
||
if (this.itemsView.selection.count == 1 && items[0] && items[0].isNote()) {
|
||
var note = items[0].getNote()
|
||
|
||
items[0].setNote(note + text);
|
||
yield items[0].saveTx();
|
||
|
||
var noteElem = document.getElementById('zotero-note-editor')
|
||
noteElem.focus();
|
||
return true;
|
||
}
|
||
|
||
return false;
|
||
});
|
||
|
||
|
||
this.createItemAndNoteFromSelectedText = Zotero.Promise.coroutine(function* (event) {
|
||
var str = event.currentTarget.ownerDocument.popupNode.ownerDocument.defaultView.getSelection().toString();
|
||
var uri = event.currentTarget.ownerDocument.popupNode.ownerDocument.location.href;
|
||
var item = yield ZoteroPane.addItemFromPage();
|
||
if (item) {
|
||
return ZoteroPane.newNote(false, item.key, str, uri)
|
||
}
|
||
});
|
||
|
||
|
||
|
||
this.openNoteWindow = function (itemID, col, parentKey) {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var name = null;
|
||
|
||
if (itemID) {
|
||
let w = this.findNoteWindow(itemID);
|
||
if (w) {
|
||
w.focus();
|
||
return;
|
||
}
|
||
|
||
// Create a name for this window so we can focus it later
|
||
//
|
||
// Collection is only used on new notes, so we don't need to
|
||
// include it in the name
|
||
name = 'zotero-note-' + itemID;
|
||
}
|
||
|
||
var io = { itemID: itemID, collectionID: col, parentItemKey: parentKey };
|
||
window.openDialog('chrome://zotero/content/note.xul', name, 'chrome,resizable,centerscreen,dialog=false', io);
|
||
}
|
||
|
||
|
||
this.findNoteWindow = function (itemID) {
|
||
var name = 'zotero-note-' + itemID;
|
||
var wm = Services.wm;
|
||
var e = wm.getEnumerator('zotero:note');
|
||
while (e.hasMoreElements()) {
|
||
var w = e.getNext();
|
||
if (w.name == name) {
|
||
return w;
|
||
}
|
||
}
|
||
};
|
||
|
||
|
||
this.onNoteWindowClosed = async function (itemID, noteText) {
|
||
var item = Zotero.Items.get(itemID);
|
||
item.setNote(noteText);
|
||
await item.saveTx();
|
||
|
||
// If note is still selected, show the editor again when the note window closes
|
||
var selectedItems = this.getSelectedItems(true);
|
||
if (selectedItems.length == 1 && itemID == selectedItems[0]) {
|
||
ZoteroItemPane.onNoteSelected(item, this.collectionsView.editable);
|
||
}
|
||
};
|
||
|
||
|
||
this.addAttachmentFromURI = Zotero.Promise.method(function (link, itemID) {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var io = {};
|
||
window.openDialog('chrome://zotero/content/attachLink.xul',
|
||
'zotero-attach-uri-dialog', 'centerscreen, modal', io);
|
||
if (!io.out) return;
|
||
return Zotero.Attachments.linkFromURL({
|
||
url: io.out.link,
|
||
parentItemID: itemID,
|
||
title: io.out.title
|
||
});
|
||
});
|
||
|
||
|
||
this.addAttachmentFromDialog = Zotero.Promise.coroutine(function* (link, parentItemID) {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var collectionTreeRow = this.getCollectionTreeRow();
|
||
if (link) {
|
||
if (collectionTreeRow.isWithinGroup()) {
|
||
Zotero.alert(null, "", "Linked files cannot be added to group libraries.");
|
||
return;
|
||
}
|
||
else if (collectionTreeRow.isPublications()) {
|
||
Zotero.alert(
|
||
null,
|
||
Zotero.getString('general.error'),
|
||
Zotero.getString('publications.error.linkedFilesCannotBeAdded')
|
||
);
|
||
return;
|
||
}
|
||
}
|
||
|
||
// TODO: disable in menu
|
||
if (!this.canEditFiles()) {
|
||
this.displayCannotEditLibraryFilesMessage();
|
||
return;
|
||
}
|
||
|
||
var libraryID = collectionTreeRow.ref.libraryID;
|
||
|
||
var nsIFilePicker = Components.interfaces.nsIFilePicker;
|
||
var fp = Components.classes["@mozilla.org/filepicker;1"]
|
||
.createInstance(nsIFilePicker);
|
||
fp.init(window, Zotero.getString('pane.item.attachments.select'), nsIFilePicker.modeOpenMultiple);
|
||
fp.appendFilters(nsIFilePicker.filterAll);
|
||
|
||
if (fp.show() != nsIFilePicker.returnOK) {
|
||
return;
|
||
}
|
||
|
||
var enumerator = fp.files;
|
||
var files = [];
|
||
while (enumerator.hasMoreElements()) {
|
||
let file = enumerator.getNext();
|
||
file.QueryInterface(Components.interfaces.nsIFile);
|
||
files.push(file.path);
|
||
}
|
||
|
||
var addedItems = [];
|
||
var collection;
|
||
var fileBaseName;
|
||
if (parentItemID) {
|
||
// If only one item is being added, automatic renaming is enabled, and the parent item
|
||
// doesn't have any other non-HTML file attachments, rename the file.
|
||
// This should be kept in sync with itemTreeView::drop().
|
||
if (files.length == 1 && Zotero.Prefs.get('autoRenameFiles')) {
|
||
let parentItem = Zotero.Items.get(parentItemID);
|
||
if (!parentItem.numNonHTMLFileAttachments()) {
|
||
fileBaseName = yield Zotero.Attachments.getRenamedFileBaseNameIfAllowedType(
|
||
parentItem, files[0]
|
||
);
|
||
}
|
||
}
|
||
}
|
||
// If not adding to an item, add to the current collection
|
||
else {
|
||
collection = this.getSelectedCollection(true);
|
||
}
|
||
|
||
for (let file of files) {
|
||
let item;
|
||
|
||
if (link) {
|
||
// Rename linked file, with unique suffix if necessary
|
||
try {
|
||
if (fileBaseName) {
|
||
let ext = Zotero.File.getExtension(file);
|
||
let newName = yield Zotero.File.rename(
|
||
file,
|
||
fileBaseName + (ext ? '.' + ext : ''),
|
||
{
|
||
unique: true
|
||
}
|
||
);
|
||
// Update path in case the name was changed to be unique
|
||
file = OS.Path.join(OS.Path.dirname(file), newName);
|
||
}
|
||
}
|
||
catch (e) {
|
||
Zotero.logError(e);
|
||
}
|
||
|
||
item = yield Zotero.Attachments.linkFromFile({
|
||
file,
|
||
parentItemID,
|
||
collections: collection ? [collection] : undefined
|
||
});
|
||
}
|
||
else {
|
||
if (file.endsWith(".lnk")) {
|
||
let win = Services.wm.getMostRecentWindow("navigator:browser");
|
||
win.ZoteroPane.displayCannotAddShortcutMessage(file);
|
||
continue;
|
||
}
|
||
|
||
item = yield Zotero.Attachments.importFromFile({
|
||
file,
|
||
libraryID,
|
||
fileBaseName,
|
||
parentItemID,
|
||
collections: collection ? [collection] : undefined
|
||
});
|
||
}
|
||
|
||
addedItems.push(item);
|
||
}
|
||
|
||
// Automatically retrieve metadata for top-level PDFs
|
||
if (!parentItemID) {
|
||
Zotero.RecognizePDF.autoRecognizeItems(addedItems);
|
||
}
|
||
});
|
||
|
||
/**
|
||
* Shows progress dialog for a webpage/snapshot save request
|
||
*/
|
||
function _showPageSaveStatus(title) {
|
||
var progressWin = new Zotero.ProgressWindow();
|
||
progressWin.changeHeadline(Zotero.getString('ingester.scraping'));
|
||
var icon = 'chrome://zotero/skin/treeitem-webpage.png';
|
||
progressWin.addLines(title, icon)
|
||
progressWin.show();
|
||
progressWin.startCloseTimer();
|
||
}
|
||
|
||
/**
|
||
* @param {Document} doc
|
||
* @param {String|Integer} [itemType='webpage'] Item type id or name
|
||
* @param {Boolean} [saveSnapshot] Force saving or non-saving of a snapshot,
|
||
* regardless of automaticSnapshots pref
|
||
* @return {Promise<Zotero.Item>|false}
|
||
*/
|
||
this.addItemFromDocument = Zotero.Promise.coroutine(function* (doc, itemType, saveSnapshot, row) {
|
||
_showPageSaveStatus(doc.title);
|
||
|
||
// Save snapshot if explicitly enabled or automatically pref is set and not explicitly disabled
|
||
saveSnapshot = saveSnapshot || (saveSnapshot !== false && Zotero.Prefs.get('automaticSnapshots'));
|
||
|
||
// TODO: this, needless to say, is a temporary hack
|
||
if (itemType == 'temporaryPDFHack') {
|
||
itemType = null;
|
||
var isPDF = false;
|
||
if (doc.title.indexOf('application/pdf') != -1 || Zotero.Attachments.isPDFJS(doc)
|
||
|| doc.contentType == 'application/pdf') {
|
||
isPDF = true;
|
||
}
|
||
else {
|
||
var ios = Components.classes["@mozilla.org/network/io-service;1"].
|
||
getService(Components.interfaces.nsIIOService);
|
||
try {
|
||
var uri = ios.newURI(doc.location, null, null);
|
||
if (uri.fileName && uri.fileName.match(/pdf$/)) {
|
||
isPDF = true;
|
||
}
|
||
}
|
||
catch (e) {
|
||
Zotero.debug(e);
|
||
Components.utils.reportError(e);
|
||
}
|
||
}
|
||
|
||
if (isPDF && saveSnapshot) {
|
||
//
|
||
// Duplicate newItem() checks here
|
||
//
|
||
if (Zotero.DB.inTransaction()) {
|
||
yield Zotero.DB.waitForTransaction();
|
||
}
|
||
|
||
// Currently selected row
|
||
if (row === undefined && this.collectionsView && this.collectionsView.selection) {
|
||
row = this.collectionsView.selection.currentIndex;
|
||
}
|
||
|
||
if (row && !this.canEdit(row)) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return false;
|
||
}
|
||
|
||
if (row !== undefined) {
|
||
var collectionTreeRow = this.collectionsView.getRow(row);
|
||
var libraryID = collectionTreeRow.ref.libraryID;
|
||
}
|
||
else {
|
||
var libraryID = Zotero.Libraries.userLibraryID;
|
||
var collectionTreeRow = null;
|
||
}
|
||
//
|
||
//
|
||
//
|
||
|
||
if (row && !this.canEditFiles(row)) {
|
||
this.displayCannotEditLibraryFilesMessage();
|
||
return false;
|
||
}
|
||
|
||
if (collectionTreeRow && collectionTreeRow.isCollection()) {
|
||
var collectionID = collectionTreeRow.ref.id;
|
||
}
|
||
else {
|
||
var collectionID = false;
|
||
}
|
||
|
||
let item = yield Zotero.Attachments.importFromDocument({
|
||
libraryID: libraryID,
|
||
document: doc,
|
||
collections: collectionID ? [collectionID] : []
|
||
});
|
||
|
||
yield this.selectItem(item.id);
|
||
return false;
|
||
}
|
||
}
|
||
|
||
// Save web page item by default
|
||
if (!itemType) {
|
||
itemType = 'webpage';
|
||
}
|
||
var data = {
|
||
title: doc.title,
|
||
url: doc.location.href,
|
||
accessDate: "CURRENT_TIMESTAMP"
|
||
}
|
||
itemType = Zotero.ItemTypes.getID(itemType);
|
||
var item = yield this.newItem(itemType, data, row);
|
||
var filesEditable = Zotero.Libraries.get(item.libraryID).filesEditable;
|
||
|
||
if (saveSnapshot) {
|
||
var link = false;
|
||
|
||
if (link) {
|
||
yield Zotero.Attachments.linkFromDocument({
|
||
document: doc,
|
||
parentItemID: item.id
|
||
});
|
||
}
|
||
else if (filesEditable) {
|
||
yield Zotero.Attachments.importFromDocument({
|
||
document: doc,
|
||
parentItemID: item.id
|
||
});
|
||
}
|
||
}
|
||
|
||
return item;
|
||
});
|
||
|
||
|
||
/**
|
||
* @return {Zotero.Item|false} - The saved item, or false if item can't be saved
|
||
*/
|
||
this.addItemFromURL = Zotero.Promise.coroutine(function* (url, itemType, saveSnapshot, row) {
|
||
url = Zotero.Utilities.resolveIntermediateURL(url);
|
||
|
||
let [mimeType, hasNativeHandler] = yield Zotero.MIME.getMIMETypeFromURL(url);
|
||
|
||
// If native type, save using a hidden browser
|
||
if (hasNativeHandler) {
|
||
var deferred = Zotero.Promise.defer();
|
||
|
||
var processor = function (doc) {
|
||
return ZoteroPane_Local.addItemFromDocument(doc, itemType, saveSnapshot, row)
|
||
.then(function (item) {
|
||
deferred.resolve(item)
|
||
});
|
||
};
|
||
try {
|
||
yield Zotero.HTTP.processDocuments([url], processor);
|
||
} catch (e) {
|
||
Zotero.debug(e, 1);
|
||
deferred.reject(e);
|
||
}
|
||
|
||
return deferred.promise;
|
||
}
|
||
// Otherwise create placeholder item, attach attachment, and update from that
|
||
else {
|
||
// TODO: this, needless to say, is a temporary hack
|
||
if (itemType == 'temporaryPDFHack') {
|
||
itemType = null;
|
||
|
||
if (mimeType == 'application/pdf') {
|
||
//
|
||
// Duplicate newItem() checks here
|
||
//
|
||
if (Zotero.DB.inTransaction()) {
|
||
yield Zotero.DB.waitForTransaction();
|
||
}
|
||
|
||
// Currently selected row
|
||
if (row === undefined) {
|
||
row = ZoteroPane_Local.collectionsView.selection.currentIndex;
|
||
}
|
||
|
||
if (!ZoteroPane_Local.canEdit(row)) {
|
||
ZoteroPane_Local.displayCannotEditLibraryMessage();
|
||
return false;
|
||
}
|
||
|
||
if (row !== undefined) {
|
||
var collectionTreeRow = ZoteroPane_Local.collectionsView.getRow(row);
|
||
var libraryID = collectionTreeRow.ref.libraryID;
|
||
}
|
||
else {
|
||
var libraryID = Zotero.Libraries.userLibraryID;
|
||
var collectionTreeRow = null;
|
||
}
|
||
//
|
||
//
|
||
//
|
||
|
||
if (!ZoteroPane_Local.canEditFiles(row)) {
|
||
ZoteroPane_Local.displayCannotEditLibraryFilesMessage();
|
||
return false;
|
||
}
|
||
|
||
if (collectionTreeRow && collectionTreeRow.isCollection()) {
|
||
var collectionID = collectionTreeRow.ref.id;
|
||
}
|
||
else {
|
||
var collectionID = false;
|
||
}
|
||
|
||
let attachmentItem = yield Zotero.Attachments.importFromURL({
|
||
libraryID,
|
||
url,
|
||
collections: collectionID ? [collectionID] : undefined,
|
||
contentType: mimeType
|
||
});
|
||
this.selectItem(attachmentItem.id)
|
||
return attachmentItem;
|
||
}
|
||
}
|
||
|
||
if (!itemType) {
|
||
itemType = 'webpage';
|
||
}
|
||
|
||
var item = yield ZoteroPane_Local.newItem(itemType, {}, row)
|
||
var filesEditable = Zotero.Libraries.get(item.libraryID).filesEditable;
|
||
|
||
// Save snapshot if explicitly enabled or automatically pref is set and not explicitly disabled
|
||
if (saveSnapshot || (saveSnapshot !== false && Zotero.Prefs.get('automaticSnapshots'))) {
|
||
var link = false;
|
||
|
||
if (link) {
|
||
//Zotero.Attachments.linkFromURL(doc, item.id);
|
||
}
|
||
else if (filesEditable) {
|
||
var attachmentItem = yield Zotero.Attachments.importFromURL({
|
||
url,
|
||
parentItemID: item.id,
|
||
contentType: mimeType
|
||
});
|
||
if (attachmentItem) {
|
||
item.setField('title', attachmentItem.getField('title'));
|
||
item.setField('url', attachmentItem.getField('url'));
|
||
item.setField('accessDate', attachmentItem.getField('accessDate'));
|
||
yield item.saveTx();
|
||
}
|
||
}
|
||
}
|
||
|
||
return item;
|
||
}
|
||
});
|
||
|
||
|
||
/*
|
||
* Create an attachment from the current page
|
||
*
|
||
* |itemID| -- itemID of parent item
|
||
* |link| -- create web link instead of snapshot
|
||
*/
|
||
this.addAttachmentFromPage = Zotero.Promise.coroutine(function* (link, itemID) {
|
||
if (Zotero.DB.inTransaction()) {
|
||
yield Zotero.DB.waitForTransaction();
|
||
}
|
||
|
||
if (typeof itemID != 'number') {
|
||
throw new Error("itemID must be an integer");
|
||
}
|
||
|
||
var progressWin = new Zotero.ProgressWindow();
|
||
progressWin.changeHeadline(Zotero.getString('save.' + (link ? 'link' : 'attachment')));
|
||
var type = link ? 'web-link' : 'snapshot';
|
||
var icon = 'chrome://zotero/skin/treeitem-attachment-' + type + '.png';
|
||
progressWin.addLines(window.content.document.title, icon)
|
||
progressWin.show();
|
||
progressWin.startCloseTimer();
|
||
|
||
if (link) {
|
||
return Zotero.Attachments.linkFromDocument({
|
||
document: window.content.document,
|
||
parentItemID: itemID
|
||
});
|
||
}
|
||
return Zotero.Attachments.importFromDocument({
|
||
document: window.content.document,
|
||
parentItemID: itemID
|
||
});
|
||
});
|
||
|
||
|
||
this.viewItems = Zotero.Promise.coroutine(function* (items, event) {
|
||
if (items.length > 1) {
|
||
if (!event || (!event.metaKey && !event.shiftKey)) {
|
||
event = { metaKey: true, shiftKey: true };
|
||
}
|
||
}
|
||
|
||
for (let i = 0; i < items.length; i++) {
|
||
let item = items[i];
|
||
if (item.isRegularItem()) {
|
||
// Prefer local file attachments
|
||
var uri = Components.classes["@mozilla.org/network/standard-url;1"]
|
||
.createInstance(Components.interfaces.nsIURI);
|
||
let attachment = yield item.getBestAttachment();
|
||
if (attachment) {
|
||
yield this.viewAttachment(attachment.id, event);
|
||
continue;
|
||
}
|
||
|
||
// Fall back to URI field, then DOI
|
||
var uri = item.getField('url');
|
||
if (!uri) {
|
||
var doi = item.getField('DOI');
|
||
if (doi) {
|
||
// Pull out DOI, in case there's a prefix
|
||
doi = Zotero.Utilities.cleanDOI(doi);
|
||
if (doi) {
|
||
uri = "http://dx.doi.org/" + encodeURIComponent(doi);
|
||
}
|
||
}
|
||
}
|
||
|
||
// Fall back to first attachment link
|
||
if (!uri) {
|
||
let attachmentID = item.getAttachments()[0];
|
||
if (attachmentID) {
|
||
let attachment = yield Zotero.Items.getAsync(attachmentID);
|
||
if (attachment) uri = attachment.getField('url');
|
||
}
|
||
}
|
||
|
||
if (uri) {
|
||
this.loadURI(uri, event);
|
||
}
|
||
}
|
||
else if (item.isNote()) {
|
||
if (!this.collectionsView.editable) {
|
||
continue;
|
||
}
|
||
document.getElementById('zotero-view-note-button').doCommand();
|
||
}
|
||
else if (item.isAttachment()) {
|
||
yield this.viewAttachment(item.id, event);
|
||
}
|
||
}
|
||
});
|
||
|
||
|
||
this.viewAttachment = Zotero.serial(Zotero.Promise.coroutine(function* (itemIDs, event, noLocateOnMissing, forceExternalViewer) {
|
||
// If view isn't editable, don't show Locate button, since the updated
|
||
// path couldn't be sent back up
|
||
if (!this.collectionsView.editable) {
|
||
noLocateOnMissing = true;
|
||
}
|
||
|
||
if(typeof itemIDs != "object") itemIDs = [itemIDs];
|
||
|
||
// If multiple items, set up event so we open in new tab
|
||
if(itemIDs.length > 1) {
|
||
if(!event || (!event.metaKey && !event.shiftKey)) {
|
||
event = {"metaKey":true, "shiftKey":true};
|
||
}
|
||
}
|
||
|
||
for (let i = 0; i < itemIDs.length; i++) {
|
||
let itemID = itemIDs[i];
|
||
var item = yield Zotero.Items.getAsync(itemID);
|
||
if (!item.isAttachment()) {
|
||
throw new Error("Item " + itemID + " is not an attachment");
|
||
}
|
||
|
||
if (item.attachmentLinkMode == Zotero.Attachments.LINK_MODE_LINKED_URL) {
|
||
this.loadURI(item.getField('url'), event);
|
||
continue;
|
||
}
|
||
|
||
var path = yield item.getFilePathAsync();
|
||
if (path) {
|
||
let file = Zotero.File.pathToFile(path);
|
||
|
||
Zotero.debug("Opening " + path);
|
||
|
||
if(forceExternalViewer !== undefined) {
|
||
var externalViewer = forceExternalViewer;
|
||
} else {
|
||
var mimeType = yield Zotero.MIME.getMIMETypeFromFile(file);
|
||
|
||
//var mimeType = attachment.attachmentMIMEType;
|
||
// TODO: update DB with new info if changed?
|
||
|
||
var ext = Zotero.File.getExtension(file);
|
||
var externalViewer = Zotero.isStandalone || (!Zotero.MIME.hasNativeHandler(mimeType, ext) &&
|
||
(!Zotero.MIME.hasInternalHandler(mimeType, ext) || Zotero.Prefs.get('launchNonNativeFiles')));
|
||
}
|
||
|
||
if (!externalViewer) {
|
||
let url = Services.io.newFileURI(file).spec;
|
||
this.loadURI(url, event);
|
||
}
|
||
else {
|
||
Zotero.Notifier.trigger('open', 'file', itemID);
|
||
|
||
// Custom PDF handler
|
||
if (item.attachmentContentType === 'application/pdf') {
|
||
let pdfHandler = Zotero.Prefs.get("fileHandler.pdf");
|
||
if (pdfHandler) {
|
||
if (yield OS.File.exists(pdfHandler)) {
|
||
Zotero.launchFileWithApplication(file.path, pdfHandler);
|
||
continue;
|
||
}
|
||
else {
|
||
Zotero.logError(`${pdfHandler} not found -- launching file normally`);
|
||
}
|
||
}
|
||
}
|
||
|
||
Zotero.launchFile(file);
|
||
}
|
||
}
|
||
else {
|
||
if (!item.isImportedAttachment()
|
||
|| !Zotero.Sync.Storage.Local.getEnabledForLibrary(item.libraryID)) {
|
||
this.showAttachmentNotFoundDialog(itemID, noLocateOnMissing);
|
||
return;
|
||
}
|
||
|
||
try {
|
||
yield Zotero.Sync.Runner.downloadFile(item);
|
||
}
|
||
catch (e) {
|
||
// TODO: show error somewhere else
|
||
Zotero.debug(e, 1);
|
||
ZoteroPane_Local.syncAlert(e);
|
||
return;
|
||
}
|
||
|
||
if (!(yield item.getFilePathAsync())) {
|
||
ZoteroPane_Local.showAttachmentNotFoundDialog(item.id, noLocateOnMissing, true);
|
||
return;
|
||
}
|
||
|
||
// check if unchanged?
|
||
// maybe not necessary, since we'll get an error if there's an error
|
||
|
||
Zotero.Notifier.trigger('redraw', 'item', []);
|
||
// Retry after download
|
||
i--;
|
||
}
|
||
}
|
||
}));
|
||
|
||
|
||
/**
|
||
* @deprecated
|
||
*/
|
||
this.launchFile = function (file) {
|
||
Zotero.debug("ZoteroPane.launchFile() is deprecated -- use Zotero.launchFile()", 2);
|
||
Zotero.launchFile(file);
|
||
}
|
||
|
||
|
||
/**
|
||
* @deprecated
|
||
*/
|
||
this.launchURL = function (url) {
|
||
Zotero.debug("ZoteroPane.launchURL() is deprecated -- use Zotero.launchURL()", 2);
|
||
return Zotero.launchURL(url);
|
||
}
|
||
|
||
|
||
function viewSelectedAttachment(event, noLocateOnMissing)
|
||
{
|
||
if (this.itemsView && this.itemsView.selection.count == 1) {
|
||
this.viewAttachment(this.getSelectedItems(true)[0], event, noLocateOnMissing);
|
||
}
|
||
}
|
||
|
||
|
||
this.showAttachmentInFilesystem = Zotero.Promise.coroutine(function* (itemID, noLocateOnMissing) {
|
||
var attachment = yield Zotero.Items.getAsync(itemID)
|
||
if (attachment.attachmentLinkMode != Zotero.Attachments.LINK_MODE_LINKED_URL) {
|
||
var path = yield attachment.getFilePathAsync();
|
||
if (path) {
|
||
let file = Zotero.File.pathToFile(path);
|
||
try {
|
||
Zotero.debug("Revealing " + file.path);
|
||
file.reveal();
|
||
}
|
||
catch (e) {
|
||
// On platforms that don't support nsILocalFile.reveal() (e.g. Linux),
|
||
// launch the parent directory
|
||
var parent = file.parent.QueryInterface(Components.interfaces.nsILocalFile);
|
||
Zotero.launchFile(parent);
|
||
}
|
||
Zotero.Notifier.trigger('open', 'file', attachment.id);
|
||
}
|
||
else {
|
||
this.showAttachmentNotFoundDialog(attachment.id, noLocateOnMissing)
|
||
}
|
||
}
|
||
});
|
||
|
||
|
||
this.showPublicationsWizard = function (items) {
|
||
var io = {
|
||
hasFiles: false,
|
||
hasNotes: false,
|
||
hasRights: null // 'all', 'some', or 'none'
|
||
};
|
||
var allItemsHaveRights = true;
|
||
var noItemsHaveRights = true;
|
||
// Determine whether any/all items have files, notes, or Rights values
|
||
for (let i = 0; i < items.length; i++) {
|
||
let item = items[i];
|
||
|
||
// Files
|
||
if (!io.hasFiles && item.numAttachments()) {
|
||
let attachmentIDs = item.getAttachments();
|
||
io.hasFiles = Zotero.Items.get(attachmentIDs).some(
|
||
attachment => attachment.isFileAttachment()
|
||
);
|
||
}
|
||
// Notes
|
||
if (!io.hasNotes && item.numNotes()) {
|
||
io.hasNotes = true;
|
||
}
|
||
// Rights
|
||
if (item.getField('rights')) {
|
||
noItemsHaveRights = false;
|
||
}
|
||
else {
|
||
allItemsHaveRights = false;
|
||
}
|
||
}
|
||
io.hasRights = allItemsHaveRights ? 'all' : (noItemsHaveRights ? 'none' : 'some');
|
||
window.openDialog('chrome://zotero/content/publicationsDialog.xul','','chrome,modal', io);
|
||
return io.license ? io : false;
|
||
};
|
||
|
||
|
||
/**
|
||
* Test if the user can edit the currently selected view
|
||
*
|
||
* @param {Integer} [row]
|
||
*
|
||
* @return {Boolean} TRUE if user can edit, FALSE if not
|
||
*/
|
||
this.canEdit = function (row) {
|
||
// Currently selected row
|
||
if (row === undefined) {
|
||
row = this.collectionsView.selection.currentIndex;
|
||
}
|
||
|
||
var collectionTreeRow = this.collectionsView.getRow(row);
|
||
return collectionTreeRow.editable;
|
||
}
|
||
|
||
|
||
/**
|
||
* Test if the user can edit the parent library of the selected view
|
||
*
|
||
* @param {Integer} [row]
|
||
* @return {Boolean} TRUE if user can edit, FALSE if not
|
||
*/
|
||
this.canEditLibrary = function (row) {
|
||
// Currently selected row
|
||
if (row === undefined) {
|
||
row = this.collectionsView.selection.currentIndex;
|
||
}
|
||
|
||
var collectionTreeRow = this.collectionsView.getRow(row);
|
||
return Zotero.Libraries.get(collectionTreeRow.ref.libraryID).editable;
|
||
}
|
||
|
||
|
||
/**
|
||
* Test if the user can edit the currently selected library/collection
|
||
*
|
||
* @param {Integer} [row]
|
||
*
|
||
* @return {Boolean} TRUE if user can edit, FALSE if not
|
||
*/
|
||
this.canEditFiles = function (row) {
|
||
// Currently selected row
|
||
if (row === undefined) {
|
||
row = this.collectionsView.selection.currentIndex;
|
||
}
|
||
|
||
var collectionTreeRow = this.collectionsView.getRow(row);
|
||
return collectionTreeRow.filesEditable;
|
||
}
|
||
|
||
|
||
this.displayCannotEditLibraryMessage = function () {
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
ps.alert(null, "", Zotero.getString('save.error.cannotMakeChangesToCollection'));
|
||
}
|
||
|
||
|
||
this.displayCannotEditLibraryFilesMessage = function () {
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
ps.alert(null, "", Zotero.getString('save.error.cannotAddFilesToCollection'));
|
||
}
|
||
|
||
|
||
this.displayCannotAddToMyPublicationsMessage = function () {
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
ps.alert(null, "", Zotero.getString('save.error.cannotAddToMyPublications'));
|
||
}
|
||
|
||
|
||
// TODO: Figure out a functioning way to get the original path and just copy the real file
|
||
this.displayCannotAddShortcutMessage = function (path) {
|
||
Zotero.alert(
|
||
null,
|
||
Zotero.getString("general.error"),
|
||
Zotero.getString("file.error.cannotAddShortcut") + (path ? "\n\n" + path : "")
|
||
);
|
||
}
|
||
|
||
|
||
this.showAttachmentNotFoundDialog = function (itemID, noLocate, notOnServer) {
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].
|
||
createInstance(Components.interfaces.nsIPromptService);
|
||
|
||
var title = Zotero.getString('pane.item.attachments.fileNotFound.title');
|
||
var text = Zotero.getString('pane.item.attachments.fileNotFound.text1') + "\n\n"
|
||
+ Zotero.getString(
|
||
'pane.item.attachments.fileNotFound.text2' + (notOnServer ? '.notOnServer' : ''),
|
||
[ZOTERO_CONFIG.CLIENT_NAME, ZOTERO_CONFIG.DOMAIN_NAME]
|
||
);
|
||
var supportURL = Zotero.getString('pane.item.attachments.fileNotFound.supportURL');
|
||
|
||
// Don't show Locate button
|
||
if (noLocate) {
|
||
let buttonFlags = (ps.BUTTON_POS_0) * (ps.BUTTON_TITLE_OK)
|
||
+ (ps.BUTTON_POS_1) * (ps.BUTTON_TITLE_IS_STRING);
|
||
let index = ps.confirmEx(null,
|
||
title,
|
||
text,
|
||
buttonFlags,
|
||
null,
|
||
Zotero.getString('general.moreInformation'),
|
||
null, null, {}
|
||
);
|
||
if (index == 1) {
|
||
this.loadURI(supportURL, { metaKey: true, shiftKey: true });
|
||
}
|
||
return;
|
||
}
|
||
|
||
var buttonFlags = (ps.BUTTON_POS_0) * (ps.BUTTON_TITLE_IS_STRING)
|
||
+ (ps.BUTTON_POS_1) * (ps.BUTTON_TITLE_CANCEL)
|
||
+ (ps.BUTTON_POS_2) * (ps.BUTTON_TITLE_IS_STRING);
|
||
var index = ps.confirmEx(null,
|
||
title,
|
||
text,
|
||
buttonFlags,
|
||
Zotero.getString('general.locate'),
|
||
null,
|
||
Zotero.getString('general.moreInformation'), null, {}
|
||
);
|
||
|
||
if (index == 0) {
|
||
this.relinkAttachment(itemID);
|
||
}
|
||
else if (index == 2) {
|
||
this.loadURI(supportURL, { metaKey: true, shiftKey: true });
|
||
}
|
||
}
|
||
|
||
|
||
this.syncAlert = function (e) {
|
||
e = Zotero.Sync.Runner.parseError(e);
|
||
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
var buttonFlags = ps.BUTTON_POS_0 * ps.BUTTON_TITLE_OK
|
||
+ ps.BUTTON_POS_1 * ps.BUTTON_TITLE_IS_STRING;
|
||
|
||
// Warning
|
||
if (e.errorType == 'warning') {
|
||
var title = Zotero.getString('general.warning');
|
||
|
||
// If secondary button not specified, just use an alert
|
||
if (e.buttonText) {
|
||
var buttonText = e.buttonText;
|
||
}
|
||
else {
|
||
ps.alert(null, title, e.message);
|
||
return;
|
||
}
|
||
|
||
var index = ps.confirmEx(
|
||
null,
|
||
title,
|
||
e.message,
|
||
buttonFlags,
|
||
"",
|
||
buttonText,
|
||
"", null, {}
|
||
);
|
||
|
||
if (index == 1) {
|
||
setTimeout(function () { buttonCallback(); }, 1);
|
||
}
|
||
}
|
||
// Error
|
||
else if (e.errorType == 'error') {
|
||
var title = Zotero.getString('general.error');
|
||
|
||
// If secondary button is explicitly null, just use an alert
|
||
if (buttonText === null) {
|
||
ps.alert(null, title, e.message);
|
||
return;
|
||
}
|
||
|
||
if (typeof buttonText == 'undefined') {
|
||
var buttonText = Zotero.getString('errorReport.reportError');
|
||
var buttonCallback = function () {
|
||
ZoteroPane.reportErrors();
|
||
};
|
||
}
|
||
else {
|
||
var buttonText = e.buttonText;
|
||
var buttonCallback = e.buttonCallback;
|
||
}
|
||
|
||
var index = ps.confirmEx(
|
||
null,
|
||
title,
|
||
e.message,
|
||
buttonFlags,
|
||
"",
|
||
buttonText,
|
||
"", null, {}
|
||
);
|
||
|
||
if (index == 1) {
|
||
setTimeout(function () { buttonCallback(); }, 1);
|
||
}
|
||
}
|
||
// Upgrade
|
||
else if (e.errorType == 'upgrade') {
|
||
ps.alert(null, "", e.message);
|
||
}
|
||
};
|
||
|
||
|
||
this.recognizeSelected = function() {
|
||
Zotero.RecognizePDF.recognizeItems(ZoteroPane.getSelectedItems());
|
||
Zotero_RecognizePDF_Dialog.open();
|
||
};
|
||
|
||
|
||
this.unrecognizeSelected = async function () {
|
||
var items = ZoteroPane.getSelectedItems();
|
||
for (let item of items) {
|
||
await Zotero.RecognizePDF.unrecognize(item);
|
||
}
|
||
};
|
||
|
||
|
||
this.reportMetadataForSelected = async function () {
|
||
let items = ZoteroPane.getSelectedItems();
|
||
if(!items.length) return;
|
||
|
||
let input = {value: ''};
|
||
Services.prompt.prompt(
|
||
null,
|
||
Zotero.getString('recognizePDF.reportMetadata'),
|
||
Zotero.getString('general.describeProblem'),
|
||
input, null, {}
|
||
);
|
||
|
||
try {
|
||
await Zotero.RecognizePDF.report(items[0], input.value);
|
||
Zotero.alert(
|
||
window,
|
||
Zotero.getString('general.submitted'),
|
||
Zotero.getString('general.thanksForHelpingImprove', Zotero.clientName)
|
||
);
|
||
}
|
||
catch (e) {
|
||
Zotero.logError(e);
|
||
Zotero.alert(
|
||
window,
|
||
Zotero.getString('general.error'),
|
||
Zotero.getString('general.invalidResponseServer')
|
||
);
|
||
}
|
||
};
|
||
|
||
|
||
this.createParentItemsFromSelected = Zotero.Promise.coroutine(function* () {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var items = this.getSelectedItems();
|
||
for (var i=0; i<items.length; i++) {
|
||
var item = items[i];
|
||
if (!item.isTopLevelItem() || item.isRegularItem()) {
|
||
throw('Item ' + itemID + ' is not a top-level attachment or note in ZoteroPane_Local.createParentItemsFromSelected()');
|
||
}
|
||
|
||
yield Zotero.DB.executeTransaction(function* () {
|
||
// TODO: remove once there are no top-level web attachments
|
||
if (item.isWebAttachment()) {
|
||
var parent = new Zotero.Item('webpage');
|
||
}
|
||
else {
|
||
var parent = new Zotero.Item('document');
|
||
}
|
||
parent.libraryID = item.libraryID;
|
||
parent.setField('title', item.getField('title'));
|
||
if (item.isWebAttachment()) {
|
||
parent.setField('accessDate', item.getField('accessDate'));
|
||
parent.setField('url', item.getField('url'));
|
||
}
|
||
var itemID = yield parent.save();
|
||
item.parentID = itemID;
|
||
yield item.save();
|
||
});
|
||
}
|
||
});
|
||
|
||
|
||
this.renameSelectedAttachmentsFromParents = Zotero.Promise.coroutine(function* () {
|
||
// TEMP: fix
|
||
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var items = this.getSelectedItems();
|
||
|
||
for (var i=0; i<items.length; i++) {
|
||
var item = items[i];
|
||
|
||
if (!item.isAttachment() || item.isTopLevelItem() || item.attachmentLinkMode == Zotero.Attachments.LINK_MODE_LINKED_URL) {
|
||
throw('Item ' + itemID + ' is not a child file attachment in ZoteroPane_Local.renameAttachmentFromParent()');
|
||
}
|
||
|
||
var file = item.getFile();
|
||
if (!file) {
|
||
continue;
|
||
}
|
||
|
||
let parentItemID = item.parentItemID;
|
||
let parentItem = yield Zotero.Items.getAsync(parentItemID);
|
||
var newName = Zotero.Attachments.getFileBaseNameFromItem(parentItem);
|
||
|
||
var ext = file.leafName.match(/\.[^\.]+$/);
|
||
if (ext) {
|
||
newName = newName + ext;
|
||
}
|
||
|
||
var renamed = yield item.renameAttachmentFile(newName, false, true);
|
||
if (renamed !== true) {
|
||
Zotero.debug("Could not rename file (" + renamed + ")");
|
||
continue;
|
||
}
|
||
|
||
item.setField('title', newName);
|
||
yield item.saveTx();
|
||
}
|
||
|
||
return true;
|
||
});
|
||
|
||
|
||
this.relinkAttachment = Zotero.Promise.coroutine(function* (itemID) {
|
||
if (!this.canEdit()) {
|
||
this.displayCannotEditLibraryMessage();
|
||
return;
|
||
}
|
||
|
||
var item = Zotero.Items.get(itemID);
|
||
if (!item) {
|
||
throw new Error('Item ' + itemID + ' not found in ZoteroPane_Local.relinkAttachment()');
|
||
}
|
||
|
||
while (true) {
|
||
var nsIFilePicker = Components.interfaces.nsIFilePicker;
|
||
var fp = Components.classes["@mozilla.org/filepicker;1"]
|
||
.createInstance(nsIFilePicker);
|
||
fp.init(window, Zotero.getString('pane.item.attachments.select'), nsIFilePicker.modeOpen);
|
||
|
||
var file = item.getFilePath();
|
||
if (!file) {
|
||
Zotero.debug("Invalid path", 2);
|
||
break;
|
||
}
|
||
|
||
var dir = yield Zotero.File.getClosestDirectory(file);
|
||
if (dir) {
|
||
fp.displayDirectory = Zotero.File.pathToFile(dir);
|
||
}
|
||
|
||
fp.appendFilters(Components.interfaces.nsIFilePicker.filterAll);
|
||
|
||
if (fp.show() == nsIFilePicker.returnOK) {
|
||
let file = fp.file;
|
||
file.QueryInterface(Components.interfaces.nsILocalFile);
|
||
|
||
// Disallow hidden files
|
||
// TODO: Display a message
|
||
if (file.leafName.startsWith('.')) {
|
||
continue;
|
||
}
|
||
|
||
// Disallow Windows shortcuts
|
||
if (file.leafName.endsWith(".lnk")) {
|
||
this.displayCannotAddShortcutMessage(file.path);
|
||
continue;
|
||
}
|
||
|
||
yield item.relinkAttachmentFile(file.path);
|
||
break;
|
||
}
|
||
|
||
break;
|
||
}
|
||
});
|
||
|
||
|
||
this.updateReadLabel = function () {
|
||
var items = this.getSelectedItems();
|
||
var isUnread = false;
|
||
for (let item of items) {
|
||
if (!item.isRead) {
|
||
isUnread = true;
|
||
break;
|
||
}
|
||
}
|
||
ZoteroItemPane.setReadLabel(!isUnread);
|
||
};
|
||
|
||
|
||
var itemReadPromise;
|
||
this.startItemReadTimeout = function (feedItemID) {
|
||
if (itemReadPromise) {
|
||
itemReadPromise.cancel();
|
||
}
|
||
|
||
const FEED_READ_TIMEOUT = 1000;
|
||
|
||
itemReadPromise = Zotero.Promise.delay(FEED_READ_TIMEOUT)
|
||
.then(async function () {
|
||
itemReadPromise = null;
|
||
|
||
// Check to make sure we're still on the same item
|
||
var items = this.getSelectedItems();
|
||
if (items.length != 1 || items[0].id != feedItemID) {
|
||
Zotero.debug(items.length);
|
||
Zotero.debug(items[0].id);
|
||
Zotero.debug(feedItemID);
|
||
|
||
return;
|
||
}
|
||
var feedItem = items[0];
|
||
if (!(feedItem instanceof Zotero.FeedItem)) {
|
||
throw new Zotero.Promise.CancellationError('Not a FeedItem');
|
||
}
|
||
if (feedItem.isRead) {
|
||
return;
|
||
}
|
||
|
||
await feedItem.toggleRead(true);
|
||
ZoteroItemPane.setReadLabel(true);
|
||
}.bind(this))
|
||
.catch(function (e) {
|
||
if (e instanceof Zotero.Promise.CancellationError) {
|
||
Zotero.debug(e.message);
|
||
return;
|
||
}
|
||
Zotero.logError(e);
|
||
});
|
||
}
|
||
|
||
|
||
function reportErrors() {
|
||
var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
|
||
.getService(Components.interfaces.nsIWindowWatcher);
|
||
var data = {
|
||
msg: Zotero.getString('errorReport.followingReportWillBeSubmitted'),
|
||
errorData: Zotero.getErrors(true),
|
||
askForSteps: true
|
||
};
|
||
var io = { wrappedJSObject: { Zotero: Zotero, data: data } };
|
||
var win = ww.openWindow(null, "chrome://zotero/content/errorReport.xul",
|
||
"zotero-error-report", "chrome,centerscreen,modal", io);
|
||
}
|
||
|
||
/*
|
||
* Display an error message saying that an error has occurred and Firefox
|
||
* needs to be restarted.
|
||
*
|
||
* If |popup| is TRUE, display in popup progress window; otherwise, display
|
||
* as items pane message
|
||
*/
|
||
function displayErrorMessage(popup) {
|
||
var reportErrorsStr = Zotero.getString('errorReport.reportErrors');
|
||
var reportInstructions =
|
||
Zotero.getString('errorReport.reportInstructions', reportErrorsStr)
|
||
|
||
// Display as popup progress window
|
||
if (popup) {
|
||
var pw = new Zotero.ProgressWindow();
|
||
pw.changeHeadline(Zotero.getString('general.errorHasOccurred'));
|
||
var msg = Zotero.getString('general.pleaseRestart', Zotero.appName) + ' '
|
||
+ reportInstructions;
|
||
pw.addDescription(msg);
|
||
pw.show();
|
||
pw.startCloseTimer(8000);
|
||
}
|
||
// Display as items pane message
|
||
else {
|
||
var msg = Zotero.getString('general.errorHasOccurred') + ' '
|
||
+ Zotero.getString('general.pleaseRestart', Zotero.appName) + '\n\n'
|
||
+ reportInstructions;
|
||
self.setItemsPaneMessage(msg, true);
|
||
}
|
||
Zotero.debug(msg, 1);
|
||
}
|
||
|
||
this.displayStartupError = function(asPaneMessage) {
|
||
if (Zotero) {
|
||
var errMsg = Zotero.startupError;
|
||
var errFunc = Zotero.startupErrorHandler;
|
||
}
|
||
|
||
var stringBundleService = Components.classes["@mozilla.org/intl/stringbundle;1"]
|
||
.getService(Components.interfaces.nsIStringBundleService);
|
||
var src = 'chrome://zotero/locale/zotero.properties';
|
||
var stringBundle = stringBundleService.createBundle(src);
|
||
|
||
var title = stringBundle.GetStringFromName('general.error');
|
||
if (!errMsg) {
|
||
var errMsg = stringBundle.GetStringFromName('startupError');
|
||
}
|
||
|
||
if (errFunc) {
|
||
errFunc();
|
||
}
|
||
else {
|
||
// TODO: Add a better error page/window here with reporting
|
||
// instructions
|
||
// window.loadURI('chrome://zotero/content/error.xul');
|
||
//if(asPaneMessage) {
|
||
// ZoteroPane_Local.setItemsPaneMessage(errMsg, true);
|
||
//} else {
|
||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||
.getService(Components.interfaces.nsIPromptService);
|
||
ps.alert(null, title, errMsg);
|
||
//}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Sets the layout to either a three-vertical-pane layout and a layout where itemsPane is above itemPane
|
||
*/
|
||
this.updateLayout = function() {
|
||
var layoutSwitcher = document.getElementById("zotero-layout-switcher");
|
||
var itemsSplitter = document.getElementById("zotero-items-splitter");
|
||
|
||
if(Zotero.Prefs.get("layout") === "stacked") { // itemsPane above itemPane
|
||
layoutSwitcher.setAttribute("orient", "vertical");
|
||
itemsSplitter.setAttribute("orient", "vertical");
|
||
} else { // three-vertical-pane
|
||
layoutSwitcher.setAttribute("orient", "horizontal");
|
||
itemsSplitter.setAttribute("orient", "horizontal");
|
||
}
|
||
|
||
this.updateToolbarPosition();
|
||
}
|
||
/**
|
||
* Shows the Zotero pane, making it visible if it is not and switching to the appropriate tab
|
||
* if necessary.
|
||
*/
|
||
this.show = function() {
|
||
if(window.ZoteroOverlay) {
|
||
if (!this.isShowing()) {
|
||
ZoteroOverlay.toggleDisplay();
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Unserializes zotero-persist elements from preferences
|
||
*/
|
||
this.unserializePersist = function () {
|
||
_unserialized = true;
|
||
var serializedValues = Zotero.Prefs.get("pane.persist");
|
||
if(!serializedValues) return;
|
||
serializedValues = JSON.parse(serializedValues);
|
||
for(var id in serializedValues) {
|
||
var el = document.getElementById(id);
|
||
if(!el) return;
|
||
var elValues = serializedValues[id];
|
||
for(var attr in elValues) {
|
||
// TEMP: For now, ignore persisted collapsed state for item pane splitter
|
||
if (el.id == 'zotero-items-splitter' && attr == 'state') continue;
|
||
// And don't restore to min-width if splitter was collapsed
|
||
if (el.id == 'zotero-item-pane' && attr == 'width' && elValues[attr] == 250
|
||
&& 'zotero-items-splitter' in serializedValues
|
||
&& serializedValues['zotero-items-splitter'].state == 'collapsed') {
|
||
continue;
|
||
}
|
||
el.setAttribute(attr, elValues[attr]);
|
||
}
|
||
}
|
||
|
||
if(this.itemsView) {
|
||
// may not yet be initialized
|
||
try {
|
||
this.itemsView.sort();
|
||
} catch(e) {};
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Serializes zotero-persist elements to preferences
|
||
*/
|
||
this.serializePersist = function() {
|
||
if(!_unserialized) return;
|
||
var serializedValues = {};
|
||
for (let el of document.getElementsByAttribute("zotero-persist", "*")) {
|
||
if(!el.getAttribute) continue;
|
||
var id = el.getAttribute("id");
|
||
if(!id) continue;
|
||
var elValues = {};
|
||
for (let attr of el.getAttribute("zotero-persist").split(/[\s,]+/)) {
|
||
if (el.hasAttribute(attr)) {
|
||
elValues[attr] = el.getAttribute(attr);
|
||
}
|
||
}
|
||
serializedValues[id] = elValues;
|
||
}
|
||
Zotero.Prefs.set("pane.persist", JSON.stringify(serializedValues));
|
||
}
|
||
|
||
|
||
this.updateWindow = function () {
|
||
var zoteroPane = document.getElementById('zotero-pane');
|
||
// Must match value in overlay.css
|
||
var breakpoint = 1000;
|
||
var className = `width-${breakpoint}`;
|
||
if (window.innerWidth >= breakpoint) {
|
||
zoteroPane.classList.add(className);
|
||
}
|
||
else {
|
||
zoteroPane.classList.remove(className);
|
||
}
|
||
};
|
||
|
||
|
||
/**
|
||
* Moves around the toolbar when the user moves around the pane
|
||
*/
|
||
this.updateToolbarPosition = function() {
|
||
var paneStack = document.getElementById("zotero-pane-stack");
|
||
if(paneStack.hidden) return;
|
||
|
||
var stackedLayout = Zotero.Prefs.get("layout") === "stacked";
|
||
|
||
var collectionsPane = document.getElementById("zotero-collections-pane");
|
||
var collectionsToolbar = document.getElementById("zotero-collections-toolbar");
|
||
var itemsPane = document.getElementById("zotero-items-pane");
|
||
var itemsToolbar = document.getElementById("zotero-items-toolbar");
|
||
var itemPane = document.getElementById("zotero-item-pane");
|
||
var itemToolbar = document.getElementById("zotero-item-toolbar");
|
||
|
||
collectionsToolbar.style.width = collectionsPane.boxObject.width + 'px';
|
||
|
||
if (stackedLayout || itemPane.collapsed) {
|
||
// The itemsToolbar and itemToolbar share the same space, and it seems best to use some flex attribute from right (because there might be other icons appearing or vanishing).
|
||
itemsToolbar.setAttribute("flex", "1");
|
||
itemToolbar.setAttribute("flex", "0");
|
||
} else {
|
||
var itemsToolbarWidth = itemsPane.boxObject.width;
|
||
|
||
if (collectionsPane.collapsed) {
|
||
itemsToolbarWidth -= collectionsToolbar.boxObject.width;
|
||
}
|
||
// Not sure why this is necessary, but it keeps the search bar from overflowing into the
|
||
// right-hand pane
|
||
else {
|
||
itemsToolbarWidth -= 8;
|
||
}
|
||
|
||
itemsToolbar.style.width = itemsToolbarWidth + "px";
|
||
itemsToolbar.setAttribute("flex", "0");
|
||
itemToolbar.setAttribute("flex", "1");
|
||
}
|
||
|
||
// Allow item pane to shrink to available height in stacked mode, but don't expand to be too
|
||
// wide when there's no persisted width in non-stacked mode
|
||
itemPane.setAttribute("flex", stackedLayout ? 1 : 0);
|
||
}
|
||
|
||
/**
|
||
* Opens the about dialog
|
||
*/
|
||
this.openAboutDialog = function() {
|
||
window.openDialog('chrome://zotero/content/about.xul', 'about', 'chrome');
|
||
}
|
||
|
||
/**
|
||
* Adds or removes a function to be called when Zotero is reloaded by switching into or out of
|
||
* the connector
|
||
*/
|
||
this.addReloadListener = function(/** @param {Function} **/func) {
|
||
if(_reloadFunctions.indexOf(func) === -1) _reloadFunctions.push(func);
|
||
}
|
||
|
||
/**
|
||
* Adds or removes a function to be called just before Zotero is reloaded by switching into or
|
||
* out of the connector
|
||
*/
|
||
this.addBeforeReloadListener = function(/** @param {Function} **/func) {
|
||
if(_beforeReloadFunctions.indexOf(func) === -1) _beforeReloadFunctions.push(func);
|
||
}
|
||
|
||
/**
|
||
* Implements nsIObserver for Zotero reload
|
||
*/
|
||
var _reloadObserver = {
|
||
/**
|
||
* Called when Zotero is reloaded (i.e., if it is switched into or out of connector mode)
|
||
*/
|
||
"observe":function(aSubject, aTopic, aData) {
|
||
if(aTopic == "zotero-reloaded") {
|
||
Zotero.debug("Reloading Zotero pane");
|
||
for (let func of _reloadFunctions) func(aData);
|
||
} else if(aTopic == "zotero-before-reload") {
|
||
Zotero.debug("Zotero pane caught before-reload event");
|
||
for (let func of _beforeReloadFunctions) func(aData);
|
||
}
|
||
}
|
||
};
|
||
}
|
||
|
||
/**
|
||
* Keep track of which ZoteroPane was local (since ZoteroPane object might get swapped out for a
|
||
* tab's ZoteroPane)
|
||
*/
|
||
var ZoteroPane_Local = ZoteroPane;
|