mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 02:49:56 +00:00
91 lines
2.5 KiB
JavaScript
91 lines
2.5 KiB
JavaScript
/*\
|
|
title: $:/core/modules/macros/button.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
|
|
Button macro
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.info = {
|
|
name: "button",
|
|
params: {
|
|
message: {byName: "default", type: "text"},
|
|
popup: {byName: true, type: "tiddler"},
|
|
qualifyTiddlerTitles: {byName: true, type: "text"},
|
|
"class": {byName: true, type: "text"}
|
|
}
|
|
};
|
|
|
|
exports.dispatchMessage = function(event) {
|
|
var buttonEvent = document.createEvent("Event");
|
|
buttonEvent.initEvent("tw-" + this.params.message,true,true);
|
|
buttonEvent.tiddlerTitle = this.tiddlerTitle;
|
|
event.target.dispatchEvent(buttonEvent);
|
|
};
|
|
|
|
exports.triggerPopup = function(event,cancel) {
|
|
// Get the textref of the popup state tiddler
|
|
var textRef = this.params.popup;
|
|
if(this.hasParameter("qualifyTiddlerTitles") && this.params.qualifyTiddlerTitles === "yes") {
|
|
textRef = "(" + this.parents.join(",") + "," + this.tiddlerTitle + ")" + textRef;
|
|
}
|
|
// Check for cancelling
|
|
if(cancel) {
|
|
$tw.popupper.cancel();
|
|
} else {
|
|
// Get the current popup state tiddler
|
|
var value = this.wiki.getTextReference(textRef,"",this.tiddlerTitle);
|
|
// Check if the popup is open by checking whether it matches "(<x>,<y>)"
|
|
var popupLocationRegExp = /^\((-?[0-9\.E]+),(-?[0-9\.E]+),(-?[0-9\.E]+),(-?[0-9\.E]+)\)$/;
|
|
if(popupLocationRegExp.test(value)) {
|
|
$tw.popupper.cancel();
|
|
} else {
|
|
// Set the position if we're opening it
|
|
this.wiki.setTextReference(textRef,
|
|
"(" + this.child.domNode.offsetLeft + "," + this.child.domNode.offsetTop + "," +
|
|
this.child.domNode.offsetWidth + "," + this.child.domNode.offsetHeight + ")",
|
|
this.tiddlerTitle,true);
|
|
$tw.popupper.popup(textRef);
|
|
}
|
|
}
|
|
};
|
|
|
|
exports.handleEvent = function(event) {
|
|
if(event.type === "click") {
|
|
if(this.hasParameter("message")) {
|
|
this.dispatchMessage(event);
|
|
}
|
|
if(this.hasParameter("popup")) {
|
|
this.triggerPopup(event);
|
|
}
|
|
event.preventDefault();
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
|
|
exports.executeMacro = function() {
|
|
var attributes = {"class": ["tw-popup-controller"]};
|
|
if(this.hasParameter("class")) {
|
|
$tw.utils.pushTop(attributes["class"],this.params["class"].split(" "));
|
|
}
|
|
if(this.classes) {
|
|
$tw.utils.pushTop(attributes["class"],this.classes);
|
|
}
|
|
for(var t=0; t<this.content.length; t++) {
|
|
this.content[t].execute(this.parents,this.tiddlerTitle);
|
|
}
|
|
return $tw.Tree.Element("button",attributes,this.content,{
|
|
events: ["click"],
|
|
eventHandler: this
|
|
});
|
|
};
|
|
|
|
})();
|