mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
2f3f9de7be
Fixes #6143
100 lines
2.5 KiB
JavaScript
100 lines
2.5 KiB
JavaScript
/*\
|
|
title: $:/core/modules/widgets/action-sendmessage.js
|
|
type: application/javascript
|
|
module-type: widget
|
|
|
|
Action widget to send a message
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
var Widget = require("$:/core/modules/widgets/widget.js").widget;
|
|
|
|
var SendMessageWidget = function(parseTreeNode,options) {
|
|
this.initialise(parseTreeNode,options);
|
|
};
|
|
|
|
/*
|
|
Inherit from the base widget class
|
|
*/
|
|
SendMessageWidget.prototype = new Widget();
|
|
|
|
/*
|
|
Render this widget into the DOM
|
|
*/
|
|
SendMessageWidget.prototype.render = function(parent,nextSibling) {
|
|
this.computeAttributes();
|
|
this.execute();
|
|
};
|
|
|
|
/*
|
|
Compute the internal state of the widget
|
|
*/
|
|
SendMessageWidget.prototype.execute = function() {
|
|
this.actionMessage = this.getAttribute("$message");
|
|
this.actionParam = this.getAttribute("$param");
|
|
this.actionName = this.getAttribute("$name");
|
|
this.actionValue = this.getAttribute("$value","");
|
|
this.actionNames = this.getAttribute("$names");
|
|
this.actionValues = this.getAttribute("$values");
|
|
};
|
|
|
|
/*
|
|
Refresh the widget by ensuring our attributes are up to date
|
|
*/
|
|
SendMessageWidget.prototype.refresh = function(changedTiddlers) {
|
|
var changedAttributes = this.computeAttributes();
|
|
if(Object.keys(changedAttributes).length) {
|
|
this.refreshSelf();
|
|
return true;
|
|
}
|
|
return this.refreshChildren(changedTiddlers);
|
|
};
|
|
|
|
/*
|
|
Invoke the action associated with this widget
|
|
*/
|
|
SendMessageWidget.prototype.invokeAction = function(triggeringWidget,event) {
|
|
// Get the string parameter
|
|
var param = this.actionParam;
|
|
// Assemble the parameters as a hashmap
|
|
var paramObject = Object.create(null);
|
|
// Add names/values pairs if present
|
|
if(this.actionNames && this.actionValues) {
|
|
var names = this.wiki.filterTiddlers(this.actionNames,this),
|
|
values = this.wiki.filterTiddlers(this.actionValues,this);
|
|
$tw.utils.each(names,function(name,index) {
|
|
paramObject[name] = values[index] || "";
|
|
});
|
|
}
|
|
// Add raw parameters
|
|
$tw.utils.each(this.attributes,function(attribute,name) {
|
|
if(name.charAt(0) !== "$") {
|
|
paramObject[name] = attribute;
|
|
}
|
|
});
|
|
// Add name/value pair if present
|
|
if(this.actionName) {
|
|
paramObject[this.actionName] = this.actionValue;
|
|
}
|
|
// Dispatch the message
|
|
var params = {
|
|
type: this.actionMessage,
|
|
param: param,
|
|
paramObject: paramObject,
|
|
event: event,
|
|
tiddlerTitle: this.getVariable("currentTiddler"),
|
|
navigateFromTitle: this.getVariable("storyTiddler")
|
|
};
|
|
this.dispatchEvent(params);
|
|
return true; // Action was invoked
|
|
};
|
|
|
|
exports["action-sendmessage"] = SendMessageWidget;
|
|
|
|
})();
|