mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
Fixed handling of shadow tiddlers
This commit is contained in:
parent
351e5b3e1f
commit
2c3f96557f
20
js/Recipe.js
20
js/Recipe.js
@ -117,7 +117,8 @@ Recipe.prototype.chooseTiddlers = function(recipe) {
|
||||
if(recipeLine instanceof Array) {
|
||||
this.chooseTiddlers(recipeLine);
|
||||
} else {
|
||||
var markerArray = this.markers[recipeLine.marker];
|
||||
var store = recipeLine.marker === "shadow" ? this.store.shadows : this.store,
|
||||
markerArray = this.markers[recipeLine.marker];
|
||||
if(markerArray === undefined) {
|
||||
this.markers[recipeLine.marker] = [];
|
||||
markerArray = this.markers[recipeLine.marker];
|
||||
@ -132,8 +133,8 @@ Recipe.prototype.chooseTiddlers = function(recipe) {
|
||||
}
|
||||
if(!found) {
|
||||
markerArray.push(recipeLine.tiddlers[t].title);
|
||||
}
|
||||
this.store.addTiddler(new Tiddler(recipeLine.tiddlers[t]));
|
||||
}
|
||||
store.addTiddler(new Tiddler(recipeLine.tiddlers[t]));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -269,19 +270,10 @@ Recipe.tiddlerOutputter = {
|
||||
}
|
||||
},
|
||||
shadow: function(out,tiddlers) {
|
||||
// Shadows are output as a <DIV> with the the ".shadow" suffix removed from the title
|
||||
for(var t=0; t<tiddlers.length; t++) {
|
||||
var title = tiddlers[t],
|
||||
tid = this.store.getTiddler(title),
|
||||
tweakedTiddler;
|
||||
if(title.indexOf(".shadow") === title.length - 7) {
|
||||
tweakedTiddler = new Tiddler(tid,{
|
||||
title: title.substr(0, title.length-7)
|
||||
});
|
||||
} else {
|
||||
tweakedTiddler = tid;
|
||||
}
|
||||
out.push(tiddlerOutput.outputTiddlerDiv(tweakedTiddler));
|
||||
tid = this.store.shadows.getTiddler(title);
|
||||
out.push(tiddlerOutput.outputTiddlerDiv(tid));
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -3,8 +3,9 @@
|
||||
|
||||
var Tiddler = require("./Tiddler.js").Tiddler;
|
||||
|
||||
var TiddlyWiki = function() {
|
||||
var TiddlyWiki = function TiddlyWiki(shadowStore) {
|
||||
this.tiddlers = {};
|
||||
this.shadows = shadowStore === undefined ? new TiddlyWiki(null) : shadowStore;
|
||||
};
|
||||
|
||||
TiddlyWiki.prototype.clear = function() {
|
||||
|
Loading…
Reference in New Issue
Block a user