Update importing so we don't open every imported tiddler

Instead we just display a report with links to each imported tiddler.
Should make importing much faster.
print-window-tiddler
Jermolene 2014-02-21 18:15:18 +00:00
rodzic 38ef4fa609
commit 31975e0042
1 zmienionych plików z 21 dodań i 9 usunięć

Wyświetl plik

@ -358,9 +358,6 @@ NavigatorWidget.prototype.handleNewTiddlerEvent = function(event) {
// Import JSON tiddlers // Import JSON tiddlers
NavigatorWidget.prototype.handleImportTiddlersEvent = function(event) { NavigatorWidget.prototype.handleImportTiddlersEvent = function(event) {
var self = this; var self = this;
// Get the story and history details
var storyList = this.getStoryList();
var history = [];
// Get the tiddlers // Get the tiddlers
var tiddlers = []; var tiddlers = [];
try { try {
@ -368,6 +365,7 @@ NavigatorWidget.prototype.handleImportTiddlersEvent = function(event) {
} catch(e) { } catch(e) {
} }
// Process each tiddler // Process each tiddler
var importedTiddlers = [];
$tw.utils.each(tiddlers,function(tiddlerFields) { $tw.utils.each(tiddlers,function(tiddlerFields) {
var title = tiddlerFields.title; var title = tiddlerFields.title;
// Add it to the store // Add it to the store
@ -377,14 +375,28 @@ NavigatorWidget.prototype.handleImportTiddlersEvent = function(event) {
tiddlerFields tiddlerFields
)); ));
if(imported) { if(imported) {
// Add it to the story importedTiddlers.push(title);
if(storyList.indexOf(title) === -1) {
storyList.unshift(title);
}
// And to history
history.push(title);
} }
}); });
// Get the story and history details
var storyList = this.getStoryList(),
history = [];
// Create the import report tiddler
var tiddlerFields = {
title: this.wiki.generateNewTitle("$:/temp/Import Report"),
text: "# [[" + importedTiddlers.join("]]\n# [[") + "]]\n"
};
this.wiki.addTiddler(new $tw.Tiddler(
self.wiki.getCreationFields(),
tiddlerFields,
self.wiki.getModificationFields()
));
// Add it to the story
if(storyList.indexOf(tiddlerFields.title) === -1) {
storyList.unshift(tiddlerFields.title);
}
// And to history
history.push(tiddlerFields.title);
// Save the updated story and history // Save the updated story and history
this.saveStoryList(storyList); this.saveStoryList(storyList);
this.addToHistory(history); this.addToHistory(history);