TiddlyWiki5/core/modules/widgets/edit-binary.js
2026-02-19 12:45:27 +00:00

87 lines
2.1 KiB
JavaScript

/*\
title: $:/core/modules/widgets/edit-binary.js
type: application/javascript
module-type: widget
\*/
"use strict";
var BINARY_WARNING_MESSAGE = "$:/core/ui/BinaryWarning";
var EXPORT_BUTTON_IMAGE = "$:/core/images/export-button";
var Widget = require("$:/core/modules/widgets/widget.js").widget;
var EditBinaryWidget = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options);
};
EditBinaryWidget.prototype = new Widget();
EditBinaryWidget.prototype.render = function(parent,nextSibling) {
var self = this;
// Save the parent dom node
this.parentDomNode = parent;
// Compute our attributes
this.computeAttributes();
// Execute our logic
this.execute();
this.renderChildren(parent,nextSibling);
};
EditBinaryWidget.prototype.execute = function() {
// Get our parameters
var editTitle = this.getAttribute("tiddler",this.getVariable("currentTiddler"));
var tiddler = this.wiki.getTiddler(editTitle);
var type = tiddler.fields.type;
var text = tiddler.fields.text;
// Transclude the binary data tiddler warning message
var warn = {
type: "element",
tag: "p",
children: [{
type: "transclude",
attributes: {
tiddler: {type: "string", value: BINARY_WARNING_MESSAGE}
}
}]
};
// Create download link based on draft tiddler title
var link = {
type: "element",
tag: "a",
attributes: {
title: {type: "indirect", textReference: "!!draft.title"},
download: {type: "indirect", textReference: "!!draft.title"}
},
children: [{
type: "transclude",
attributes: {
tiddler: {type: "string", value: EXPORT_BUTTON_IMAGE}
}
}]
};
// Set the link href to internal data URI (no external)
if(text) {
link.attributes.href = {
type: "string",
value: "data:" + type + ";base64," + text
};
}
var element = {
type: "element",
tag: "div",
attributes: {
class: {type: "string", value: "tc-binary-warning"}
},
children: [warn, link]
}
this.makeChildWidgets([element]);
};
EditBinaryWidget.prototype.refresh = function(changedTiddlers) {
return this.refreshChildren(changedTiddlers);
};
exports["edit-binary"] = EditBinaryWidget;