mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 18:16:18 +00:00
83 lines
2.4 KiB
JavaScript
83 lines
2.4 KiB
JavaScript
/*\
|
|
title: $:/core/modules/macros/transclude.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
|
|
Transclude macro
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.info = {
|
|
name: "transclude",
|
|
dependentAll: true, // Nodes containing <<transclude>> macro are dependent on every tiddler
|
|
params: {
|
|
filter: {byPos: 0, type: "filter"},
|
|
title: {byPos: 1, type: "tiddler"},
|
|
templateTitle: {byName: true, type: "text"},
|
|
templateText: {byName: true, type: "text"},
|
|
emptyMessage: {byName: true, type: "text"}
|
|
}
|
|
};
|
|
|
|
exports.executeMacro = function() {
|
|
var titles,templateTiddler,templateText,t,title,templateParseTree,
|
|
nodes,node,c,
|
|
parents = this.parents.slice(0);
|
|
parents.push(this.tiddlerTitle);
|
|
// Get the tiddlers we're transcluding
|
|
if(this.hasParameter("filter")) {
|
|
titles = this.wiki.filterTiddlers(this.params.filter,this.tiddlerTitle);
|
|
} else if(this.hasParameter("title")) {
|
|
titles = [this.params.title];
|
|
} else {
|
|
titles = [this.tiddlerTitle];
|
|
}
|
|
// Get the template
|
|
if(this.hasParameter("templateText")) {
|
|
// Parse the template
|
|
templateParseTree = this.wiki.parseText("text/x-tiddlywiki",this.params.templateText);
|
|
} else {
|
|
if(this.hasParameter("templateTitle")) {
|
|
// Check for recursion
|
|
if(parents.indexOf(this.params.templateTitle) !== -1) {
|
|
return $tw.Tree.errorNode("Tiddler recursion error in <<transclude>> macro");
|
|
}
|
|
parents.push(this.params.templateTitle);
|
|
templateParseTree = this.wiki.parseTiddler(this.params.templateTitle);
|
|
} else {
|
|
templateParseTree = this.wiki.parseText("text/x-tiddlywiki","<<view text wikified>>");
|
|
}
|
|
}
|
|
// Use the empty message if the list is empty
|
|
if(titles.length === 0 && this.hasParameter("emptyMessage")) {
|
|
nodes = this.wiki.parseText("text/x-tiddlywiki",this.params.emptyMessage).tree;
|
|
for(c=0; c<nodes.length; c++) {
|
|
nodes[c].execute(this.parents,this.tiddlerTitle);
|
|
}
|
|
} else {
|
|
// Render the tiddlers through the template
|
|
nodes = [];
|
|
for(t=0; t<titles.length; t++) {
|
|
title = titles[t];
|
|
for(c=0; c<templateParseTree.tree.length; c++) {
|
|
node = templateParseTree.tree[c].clone();
|
|
node.execute(parents,title);
|
|
nodes.push(node);
|
|
}
|
|
}
|
|
}
|
|
// Return
|
|
var attributes = {"class": ["tw-transclusion"]};
|
|
if(this.classes) {
|
|
$tw.utils.pushTop(attributes["class"],this.classes);
|
|
}
|
|
return $tw.Tree.Element("div",attributes,nodes);
|
|
};
|
|
|
|
})();
|