mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
145 lines
4.1 KiB
JavaScript
145 lines
4.1 KiB
JavaScript
/*\
|
|
title: $:/core/modules/widgets/image.js
|
|
type: application/javascript
|
|
module-type: widget
|
|
|
|
The image widget displays an image referenced with an external URI or with a local tiddler title.
|
|
|
|
```
|
|
<$image src="TiddlerTitle" width="320" height="400" class="classnames">
|
|
```
|
|
|
|
The image source can be the title of an existing tiddler or the URL of an external image.
|
|
|
|
External images always generate an HTML `<img>` tag.
|
|
|
|
Tiddlers that have a _canonical_uri field generate an HTML `<img>` tag with the src attribute containing the URI.
|
|
|
|
Tiddlers that contain image data generate an HTML `<img>` tag with the src attribute containing a base64 representation of the image.
|
|
|
|
Tiddlers that contain wikitext could be rendered to a DIV of the usual size of a tiddler, and then transformed to the size requested.
|
|
|
|
The width and height attributes are interpreted as a number of pixels, and do not need to include the "px" suffix.
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
var Widget = require("$:/core/modules/widgets/widget.js").widget;
|
|
|
|
var ImageWidget = function(parseTreeNode,options) {
|
|
this.initialise(parseTreeNode,options);
|
|
};
|
|
|
|
/*
|
|
Inherit from the base widget class
|
|
*/
|
|
ImageWidget.prototype = new Widget();
|
|
|
|
/*
|
|
Render this widget into the DOM
|
|
*/
|
|
ImageWidget.prototype.render = function(parent,nextSibling) {
|
|
this.parentDomNode = parent;
|
|
this.computeAttributes();
|
|
this.execute();
|
|
// Create element
|
|
// Determine what type of image it is
|
|
var tag = "img", src = "",
|
|
tiddler = this.wiki.getTiddler(this.imageSource);
|
|
if(!tiddler) {
|
|
// The source isn't the title of a tiddler, so we'll assume it's a URL
|
|
src = this.imageSource;
|
|
} else {
|
|
// Check if it is an image tiddler
|
|
if(this.wiki.isImageTiddler(this.imageSource)) {
|
|
var type = tiddler.fields.type,
|
|
text = tiddler.fields.text,
|
|
_canonical_uri = tiddler.fields._canonical_uri;
|
|
// If the tiddler has body text then it doesn't need to be lazily loaded
|
|
if(text) {
|
|
// Render the appropriate element for the image type
|
|
switch(type) {
|
|
case "application/pdf":
|
|
tag = "embed";
|
|
src = "data:application/pdf;base64," + text;
|
|
break;
|
|
case "image/svg+xml":
|
|
src = "data:image/svg+xml," + encodeURIComponent(text);
|
|
break;
|
|
default:
|
|
src = "data:" + type + ";base64," + text;
|
|
break;
|
|
}
|
|
} else if(_canonical_uri) {
|
|
switch(type) {
|
|
case "application/pdf":
|
|
tag = "embed";
|
|
src = _canonical_uri;
|
|
break;
|
|
case "image/svg+xml":
|
|
src = _canonical_uri;
|
|
break;
|
|
default:
|
|
src = _canonical_uri;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// Create the element and assign the attributes
|
|
var domNode = this.document.createElement(tag);
|
|
domNode.setAttribute("src",src);
|
|
if(this.imageClass) {
|
|
domNode.setAttribute("class",this.imageClass);
|
|
}
|
|
if(this.imageWidth) {
|
|
domNode.setAttribute("width",this.imageWidth);
|
|
}
|
|
if(this.imageHeight) {
|
|
domNode.setAttribute("height",this.imageHeight);
|
|
}
|
|
if(this.imageTooltip) {
|
|
domNode.setAttribute("title",this.imageTooltip);
|
|
}
|
|
if(this.imageAlt) {
|
|
domNode.setAttribute("alt",this.imageAlt);
|
|
}
|
|
// Insert element
|
|
parent.insertBefore(domNode,nextSibling);
|
|
this.domNodes.push(domNode);
|
|
};
|
|
|
|
/*
|
|
Compute the internal state of the widget
|
|
*/
|
|
ImageWidget.prototype.execute = function() {
|
|
// Get our parameters
|
|
this.imageSource = this.getAttribute("source");
|
|
this.imageWidth = this.getAttribute("width");
|
|
this.imageHeight = this.getAttribute("height");
|
|
this.imageClass = this.getAttribute("class");
|
|
this.imageTooltip = this.getAttribute("tooltip");
|
|
this.imageAlt = this.getAttribute("alt");
|
|
};
|
|
|
|
/*
|
|
Selectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering
|
|
*/
|
|
ImageWidget.prototype.refresh = function(changedTiddlers) {
|
|
var changedAttributes = this.computeAttributes();
|
|
if(changedAttributes.source || changedAttributes.width || changedAttributes.height || changedAttributes["class"] || changedAttributes.tooltip || changedTiddlers[this.imageSource]) {
|
|
this.refreshSelf();
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
exports.image = ImageWidget;
|
|
|
|
})();
|