2022-04-24 20:24:38 +00:00
|
|
|
/*\
|
|
|
|
title: $:/core/modules/widgets/parameters.js
|
|
|
|
type: application/javascript
|
|
|
|
module-type: widget
|
|
|
|
|
|
|
|
Widget for definition of transclusion parameters
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var Widget = require("$:/core/modules/widgets/widget.js").widget,
|
2022-04-30 09:00:38 +00:00
|
|
|
TranscludeWidget = require("$:/core/modules/widgets/transclude.js").transclude;
|
2022-04-24 20:24:38 +00:00
|
|
|
|
|
|
|
var ParametersWidget = function(parseTreeNode,options) {
|
|
|
|
// Initialise
|
|
|
|
this.initialise(parseTreeNode,options);
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Inherit from the base widget class
|
|
|
|
*/
|
|
|
|
ParametersWidget.prototype = Object.create(Widget.prototype);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Render this widget into the DOM
|
|
|
|
*/
|
|
|
|
ParametersWidget.prototype.render = function(parent,nextSibling) {
|
|
|
|
// Call the constructor
|
|
|
|
Widget.call(this);
|
|
|
|
this.parentDomNode = parent;
|
|
|
|
this.computeAttributes();
|
|
|
|
this.execute();
|
|
|
|
this.renderChildren(parent,nextSibling);
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Compute the internal state of the widget
|
|
|
|
*/
|
|
|
|
ParametersWidget.prototype.execute = function() {
|
|
|
|
var self = this;
|
|
|
|
// Find the parent transclusion
|
|
|
|
var transclusionWidget = this.parentWidget;
|
2022-04-30 09:00:38 +00:00
|
|
|
while(transclusionWidget && !(transclusionWidget instanceof TranscludeWidget)) {
|
2022-04-24 20:24:38 +00:00
|
|
|
transclusionWidget = transclusionWidget.parentWidget;
|
|
|
|
}
|
|
|
|
// Process each parameter
|
|
|
|
if(transclusionWidget) {
|
2022-04-26 20:55:43 +00:00
|
|
|
$tw.utils.each($tw.utils.getOrderedAttributesFromParseTreeNode(self.parseTreeNode),function(attr,index) {
|
2022-05-02 09:00:50 +00:00
|
|
|
var name = attr.name,
|
2022-05-05 13:47:22 +00:00
|
|
|
value = transclusionWidget.getTransclusionParameter(name,index,self.getAttribute(name,""));
|
2022-05-02 09:00:50 +00:00
|
|
|
self.setVariable(name,value);
|
2022-05-03 11:54:29 +00:00
|
|
|
});
|
2022-05-05 07:20:14 +00:00
|
|
|
$tw.utils.each(transclusionWidget.getTransclusionMetaVariables(),function(value,name) {
|
|
|
|
self.setVariable(name,value);
|
|
|
|
});
|
2022-04-24 20:24:38 +00:00
|
|
|
}
|
|
|
|
// Construct the child widgets
|
|
|
|
this.makeChildWidgets();
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Refresh the widget by ensuring our attributes are up to date
|
|
|
|
*/
|
|
|
|
ParametersWidget.prototype.refresh = function(changedTiddlers) {
|
|
|
|
var changedAttributes = this.computeAttributes();
|
|
|
|
if(Object.keys(changedAttributes).length) {
|
|
|
|
this.refreshSelf();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return this.refreshChildren(changedTiddlers);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.parameters = ParametersWidget;
|
|
|
|
|
|
|
|
})();
|