mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-07-04 02:52:52 +00:00

* remove blks first try * dprint.json seems to be OK, some forgotten functions * add some more space-after-keyword settings * server remove blks * add **/files to dprint exclude * dprint.js fixes a typo * add boot.js and bootprefix.js to dprint exclude * dprint change dprint.json * add dprint fmt as script * remove jslint comments * fix whitespace * fix whitespace * remove function-wrapper from geospatial plugin * fix whitespace * add function wrapper to dyannotate-startup * remove dpring.json
74 lines
1.7 KiB
JavaScript
74 lines
1.7 KiB
JavaScript
/*\
|
|
|
|
title: $:/core/modules/widgets/action-confirm.js
|
|
type: application/javascript
|
|
module-type: widget
|
|
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
var Widget = require("$:/core/modules/widgets/widget.js").widget;
|
|
|
|
var ConfirmWidget = function(parseTreeNode,options) {
|
|
this.initialise(parseTreeNode,options);
|
|
};
|
|
|
|
/*
|
|
Inherit from the base widget class
|
|
*/
|
|
ConfirmWidget.prototype = new Widget();
|
|
|
|
/*
|
|
Render this widget into the DOM
|
|
*/
|
|
ConfirmWidget.prototype.render = function(parent,nextSibling) {
|
|
this.computeAttributes();
|
|
this.execute();
|
|
this.parentDomNode = parent;
|
|
this.renderChildren(parent,nextSibling);
|
|
};
|
|
|
|
/*
|
|
Compute the internal state of the widget
|
|
*/
|
|
ConfirmWidget.prototype.execute = function() {
|
|
this.message = this.getAttribute("$message",$tw.language.getString("ConfirmAction"));
|
|
this.prompt = (this.getAttribute("$prompt","yes") == "no" ? false : true);
|
|
this.makeChildWidgets();
|
|
};
|
|
|
|
/*
|
|
Refresh the widget by ensuring our attributes are up to date
|
|
*/
|
|
ConfirmWidget.prototype.refresh = function(changedTiddlers) {
|
|
var changedAttributes = this.computeAttributes();
|
|
if(changedAttributes["$message"] || changedAttributes["$prompt"]) {
|
|
this.refreshSelf();
|
|
return true;
|
|
}
|
|
return this.refreshChildren(changedTiddlers);
|
|
};
|
|
|
|
/*
|
|
Invoke the action associated with this widget
|
|
*/
|
|
ConfirmWidget.prototype.invokeAction = function(triggeringWidget,event) {
|
|
var invokeActions = true,
|
|
handled = true,
|
|
win = event && event.event && event.event.view ? event.event.view : window;
|
|
if(this.prompt) {
|
|
invokeActions = win.confirm(this.message);
|
|
}
|
|
if(invokeActions) {
|
|
handled = this.invokeActions(triggeringWidget,event);
|
|
}
|
|
return handled;
|
|
};
|
|
|
|
ConfirmWidget.prototype.allowActionPropagation = function() {
|
|
return false;
|
|
};
|
|
|
|
exports["action-confirm"] = ConfirmWidget;
|