Add session.getItems in preparation for document collections

This commit is contained in:
Adomas Venčkauskas 2017-10-16 14:05:23 +03:00
parent f8f403eca4
commit 2ad0dc00da
2 changed files with 18 additions and 13 deletions

View file

@ -303,7 +303,7 @@ Zotero.Cite = {
session = Zotero.Integration.sessions[sessionID], session = Zotero.Integration.sessions[sessionID],
item; item;
if(session) { if(session) {
item = session.embeddedZoteroItems[id.substr(slashIndex+1)]; item = session.embeddedItems[id.substr(slashIndex+1)];
} }
if(!item) { if(!item) {

View file

@ -231,6 +231,8 @@ Zotero.Integration = new function() {
// TODO: this is pretty awful // TODO: this is pretty awful
session.fields = new Zotero.Integration.Fields(session, document); session.fields = new Zotero.Integration.Fields(session, document);
session._doc = document; session._doc = document;
// TODO: figure this out
// Zotero.Notifier.trigger('delete', 'collection', 'document');
yield (new Zotero.Integration.Interface(application, document, session))[command](); yield (new Zotero.Integration.Interface(application, document, session))[command]();
document.setDocumentData(session.data.serialize()); document.setDocumentData(session.data.serialize());
} }
@ -304,8 +306,7 @@ Zotero.Integration = new function() {
inProgress = inProgress =
Zotero.Integration.currentDoc = Zotero.Integration.currentDoc =
Zotero.Integration.currentWindow = Zotero.Integration.currentWindow = false;
Zotero.Integration.currentSession = false;
} }
}); });
}; };
@ -906,6 +907,8 @@ Zotero.Integration.Fields.prototype._processFields = Zotero.Promise.coroutine(fu
this._session.bibliography = new Zotero.Integration.Bibliography(this._bibliographyFields[0]); this._session.bibliography = new Zotero.Integration.Bibliography(this._bibliographyFields[0]);
yield this._session.bibliography.loadItemData(); yield this._session.bibliography.loadItemData();
} }
// TODO: figure this out
// Zotero.Notifier.trigger('add', 'collection', 'document');
}); });
/** /**
@ -1271,10 +1274,8 @@ Zotero.Integration.CitationEditInterface.prototype = {
* Keeps track of all session-specific variables * Keeps track of all session-specific variables
*/ */
Zotero.Integration.Session = function(doc, app) { Zotero.Integration.Session = function(doc, app) {
// holds items not in document that should be in bibliography
this.embeddedItems = {}; this.embeddedItems = {};
this.embeddedZoteroItems = {}; this.embeddedItemsByURI = {};
this.embeddedZoteroItemsByURI = {};
this.resetRequest(doc); this.resetRequest(doc);
this.primaryFieldType = app.primaryFieldType; this.primaryFieldType = app.primaryFieldType;
this.secondaryFieldType = app.secondaryFieldType; this.secondaryFieldType = app.secondaryFieldType;
@ -1619,6 +1620,11 @@ Zotero.Integration.Session.prototype.writeDelayedCitation = Zotero.Promise.corou
}); });
Zotero.Integration.Session.prototype.getItems = function() {
return Zotero.Cite.getItem(Object.keys(this.citationsByItemID));
}
/** /**
* Edits integration bibliography * Edits integration bibliography
* @param {Zotero.Integration.Bibliography} bibliography * @param {Zotero.Integration.Bibliography} bibliography
@ -1903,8 +1909,8 @@ Zotero.Integration.URIMap.prototype.getZoteroItemForURIs = Zotero.Promise.corout
var uri = uris[i]; var uri = uris[i];
// First try embedded URI // First try embedded URI
if(this.session.embeddedZoteroItemsByURI[uri]) { if(this.session.embeddedItemsByURI[uri]) {
embeddedItem = this.session.embeddedZoteroItemsByURI[uri]; embeddedItem = this.session.embeddedItemsByURI[uri];
} }
// Next try getting URI directly // Next try getting URI directly
@ -2316,17 +2322,16 @@ Zotero.Integration.Citation = class {
// assign a random string as an item ID // assign a random string as an item ID
var anonymousID = Zotero.randomString(); var anonymousID = Zotero.randomString();
var globalID = itemData.id = citationItem.id = Zotero.Integration.currentSession.data.sessionID+"/"+anonymousID; var globalID = itemData.id = citationItem.id = Zotero.Integration.currentSession.data.sessionID+"/"+anonymousID;
Zotero.Integration.currentSession.embeddedItems[anonymousID] = itemData;
// assign a Zotero item // assign a Zotero item
var surrogateItem = Zotero.Integration.currentSession.embeddedZoteroItems[anonymousID] = new Zotero.Item(); var surrogateItem = Zotero.Integration.currentSession.embeddedItems[anonymousID] = new Zotero.Item();
Zotero.Utilities.itemFromCSLJSON(surrogateItem, itemData); Zotero.Utilities.itemFromCSLJSON(surrogateItem, itemData);
surrogateItem.cslItemID = globalID; surrogateItem.cslItemID = globalID;
surrogateItem.cslURIs = citationItem.uris; surrogateItem.cslURIs = citationItem.uris;
surrogateItem.cslItemData = itemData; surrogateItem.cslItemData = itemData;
for(var j=0, m=citationItem.uris.length; j<m; j++) { for(var j=0, m=citationItem.uris.length; j<m; j++) {
Zotero.Integration.currentSession.embeddedZoteroItemsByURI[citationItem.uris[j]] = surrogateItem; Zotero.Integration.currentSession.embeddedItemsByURI[citationItem.uris[j]] = surrogateItem;
} }
} else if (promptToReselect) { } else if (promptToReselect) {
zoteroItem = yield this.handleMissingItem(i); zoteroItem = yield this.handleMissingItem(i);
@ -2583,7 +2588,7 @@ Zotero.Integration.Bibliography = class {
citeproc.updateUncitedItems(Array.from(this.uncitedItemIDs.values())); citeproc.updateUncitedItems(Array.from(this.uncitedItemIDs.values()));
citeproc.setOutputFormat("rtf"); citeproc.setOutputFormat("rtf");
let bibliography = citeproc.makeBibliography(); let bibliography = citeproc.makeBibliography();
Zotero.Cite.removeFromBibliography(bibliography, this.omittedItemIDs); Zotero.Cite.removeFromBibliography(bibliography, this.omittedItemIDs);
for (let i in bibliography[0].entry_ids) { for (let i in bibliography[0].entry_ids) {
if (bibliography[0].entry_ids[i].length != 1) continue; if (bibliography[0].entry_ids[i].length != 1) continue;