mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
86 lines
2.8 KiB
JavaScript
86 lines
2.8 KiB
JavaScript
|
/*\
|
||
|
title: $:/core/modules/widgets/action-setmultiplefields.js
|
||
|
type: application/javascript
|
||
|
module-type: widget
|
||
|
|
||
|
Action widget to set multiple fields or indexes on a tiddler
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
var Widget = require("$:/core/modules/widgets/widget.js").widget;
|
||
|
|
||
|
var SetMultipleFieldsWidget = function(parseTreeNode,options) {
|
||
|
this.initialise(parseTreeNode,options);
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
Inherit from the base widget class
|
||
|
*/
|
||
|
SetMultipleFieldsWidget.prototype = new Widget();
|
||
|
|
||
|
/*
|
||
|
Render this widget into the DOM
|
||
|
*/
|
||
|
SetMultipleFieldsWidget.prototype.render = function(parent,nextSibling) {
|
||
|
this.computeAttributes();
|
||
|
this.execute();
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
Compute the internal state of the widget
|
||
|
*/
|
||
|
SetMultipleFieldsWidget.prototype.execute = function() {
|
||
|
this.actionTiddler = this.getAttribute("$tiddler",this.getVariable("currentTiddler"));
|
||
|
this.actionFields = this.getAttribute("$fields");
|
||
|
this.actionIndexes = this.getAttribute("$indexes");
|
||
|
this.actionValues = this.getAttribute("$values");
|
||
|
this.actionTimestamp = this.getAttribute("$timestamp","yes") === "yes";
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
Refresh the widget by ensuring our attributes are up to date
|
||
|
*/
|
||
|
SetMultipleFieldsWidget.prototype.refresh = function(changedTiddlers) {
|
||
|
var changedAttributes = this.computeAttributes();
|
||
|
if(changedAttributes["$tiddler"] || changedAttributes["$fields"] || changedAttributes["$indexes"] || changedAttributes["$values"] || changedAttributes["$timestamp"]) {
|
||
|
this.refreshSelf();
|
||
|
return true;
|
||
|
}
|
||
|
return this.refreshChildren(changedTiddlers);
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
Invoke the action associated with this widget
|
||
|
*/
|
||
|
SetMultipleFieldsWidget.prototype.invokeAction = function(triggeringWidget,event) {
|
||
|
var tiddler = this.wiki.getTiddler(this.actionTiddler),
|
||
|
names, values = this.wiki.filterTiddlers(this.actionValues,this);
|
||
|
if(this.actionFields) {
|
||
|
var additions = {};
|
||
|
names = this.wiki.filterTiddlers(this.actionFields,this);
|
||
|
$tw.utils.each(names,function(fieldname,index) {
|
||
|
additions[fieldname] = values[index] || "";
|
||
|
});
|
||
|
var creationFields = this.actionTimestamp ? this.wiki.getCreationFields() : undefined,
|
||
|
modificationFields = this.actionTimestamp ? this.wiki.getModificationFields() : undefined;
|
||
|
this.wiki.addTiddler(new $tw.Tiddler(creationFields,tiddler,{title: this.actionTiddler},modificationFields,additions));
|
||
|
} else if(this.actionIndexes) {
|
||
|
var data = this.wiki.getTiddlerData(this.actionTiddler,Object.create(null));
|
||
|
names = this.wiki.filterTiddlers(this.actionIndexes,this);
|
||
|
$tw.utils.each(names,function(name,index) {
|
||
|
data[name] = values[index] || "";
|
||
|
});
|
||
|
this.wiki.setTiddlerData(this.actionTiddler,data,{},{suppressTimestamp: !this.actionTimestamp});
|
||
|
}
|
||
|
return true; // Action was invoked
|
||
|
};
|
||
|
|
||
|
exports["action-setmultiplefields"] = SetMultipleFieldsWidget;
|
||
|
|
||
|
})();
|
||
|
|