mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-27 05:03:13 +00:00
Fix/self transclude (#8254)
* fix: ignore empty tiddler param when extract transcludes * test: about self transclude
This commit is contained in:
parent
d276e0aa25
commit
32cbc97a0c
@ -567,7 +567,7 @@ exports.extractTranscludes = function(parseTreeRoot) {
|
|||||||
} else {
|
} else {
|
||||||
value = parseTreeNode.attributes.$tiddler.value;
|
value = parseTreeNode.attributes.$tiddler.value;
|
||||||
}
|
}
|
||||||
if(transcludes.indexOf(value) === -1) {
|
if(transcludes.indexOf(value) === -1 && value !== undefined) {
|
||||||
transcludes.push(value);
|
transcludes.push(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ Tests the backtranscludes mechanism.
|
|||||||
/*global $tw: false */
|
/*global $tw: false */
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
describe('Backtranscludes tests', function() {
|
describe('Backtranscludes and transclude filter tests', function() {
|
||||||
describe('a tiddler with no transcludes to it', function() {
|
describe('a tiddler with no transcludes to it', function() {
|
||||||
var wiki = new $tw.Wiki();
|
var wiki = new $tw.Wiki();
|
||||||
|
|
||||||
@ -56,6 +56,26 @@ describe('Backtranscludes tests', function() {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('A data tiddler transclude will still use the tiddler as result.', function() {
|
||||||
|
var wiki = new $tw.Wiki();
|
||||||
|
|
||||||
|
wiki.addTiddler({
|
||||||
|
title: 'TestIncoming',
|
||||||
|
type: 'application/x-tiddler-dictionary',
|
||||||
|
text: 'name: value'});
|
||||||
|
|
||||||
|
wiki.addTiddler({
|
||||||
|
title: 'TestOutgoing',
|
||||||
|
text: 'A transclude to {{TestIncoming##name}}'});
|
||||||
|
|
||||||
|
it('should have a backtransclude', function() {
|
||||||
|
expect(wiki.filterTiddlers('TestIncoming +[backtranscludes[]]').join(',')).toBe('TestOutgoing');
|
||||||
|
});
|
||||||
|
it('should have a transclude', function() {
|
||||||
|
expect(wiki.filterTiddlers('TestOutgoing +[transcludes[]]').join(',')).toBe('TestIncoming');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe('A tiddler that has a transclude added to it later', function() {
|
describe('A tiddler that has a transclude added to it later', function() {
|
||||||
it('should have an additional backtransclude', function() {
|
it('should have an additional backtransclude', function() {
|
||||||
var wiki = new $tw.Wiki();
|
var wiki = new $tw.Wiki();
|
||||||
@ -143,6 +163,56 @@ describe('Backtranscludes tests', function() {
|
|||||||
expect(wiki.filterTiddlers('TestIncoming +[backtranscludes[]]').join(',')).toBe('');
|
expect(wiki.filterTiddlers('TestIncoming +[backtranscludes[]]').join(',')).toBe('');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('a tiddler with some transcludes on it in order', function() {
|
||||||
|
var wiki = new $tw.Wiki();
|
||||||
|
|
||||||
|
wiki.addTiddler({
|
||||||
|
title: 'TestOutgoing',
|
||||||
|
text: "{{New Tiddler!!created}}\n\nA transclude to {{TestIncoming}}"
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have a transclude', function() {
|
||||||
|
expect(wiki.filterTiddlers('TestOutgoing +[transcludes[]]').join(',')).toBe('New Tiddler,TestIncoming');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have a back transclude', function() {
|
||||||
|
expect(wiki.filterTiddlers('TestIncoming +[backtranscludes[]]').join(',')).toBe('TestOutgoing');
|
||||||
|
expect(wiki.filterTiddlers('[[New Tiddler]] +[backtranscludes[]]').join(',')).toBe('TestOutgoing');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('ignore self transclusion', function() {
|
||||||
|
var wiki = new $tw.Wiki();
|
||||||
|
|
||||||
|
wiki.addTiddler({
|
||||||
|
title: 'TestOutgoing',
|
||||||
|
text: "{{!!created}}\n\nA transclude to {{!!title}}"});
|
||||||
|
|
||||||
|
it('should have no transclude', function() {
|
||||||
|
expect(wiki.filterTiddlers('TestOutgoing +[transcludes[]]').join(',')).toBe('');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have no back transcludes', function() {
|
||||||
|
expect(wiki.filterTiddlers('TestOutgoing +[backtranscludes[]]').join(',')).toBe('');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('recognize soft transclusion defined by widget', function() {
|
||||||
|
var wiki = new $tw.Wiki();
|
||||||
|
|
||||||
|
wiki.addTiddler({
|
||||||
|
title: 'TestOutgoing',
|
||||||
|
text: "<$tiddler tiddler='TestIncoming'><$transclude $tiddler /></$tiddler>"});
|
||||||
|
|
||||||
|
it('should have a transclude', function() {
|
||||||
|
expect(wiki.filterTiddlers('TestOutgoing +[transcludes[]]').join(',')).toBe('TestIncoming');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have a back transclude', function() {
|
||||||
|
expect(wiki.filterTiddlers('TestIncoming +[backtranscludes[]]').join(',')).toBe('TestOutgoing');
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user