2012-07-15 16:37:03 +00:00
|
|
|
/*\
|
|
|
|
title: $:/core/modules/utils/dom/modal.js
|
|
|
|
type: application/javascript
|
|
|
|
module-type: utils
|
|
|
|
|
|
|
|
Modal message mechanism
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var Modal = function(wiki) {
|
|
|
|
this.wiki = wiki;
|
|
|
|
};
|
|
|
|
|
2012-11-16 19:30:30 +00:00
|
|
|
/*
|
|
|
|
Display a modal dialogue
|
|
|
|
title: Title of tiddler to display
|
|
|
|
options: see below
|
|
|
|
Options include:
|
|
|
|
downloadLink: Text of a big download link to include
|
|
|
|
*/
|
|
|
|
Modal.prototype.display = function(title,options) {
|
|
|
|
options = options || {};
|
2012-07-16 11:57:44 +00:00
|
|
|
// Create the wrapper divs
|
2012-07-15 16:37:03 +00:00
|
|
|
var wrapper = document.createElement("div"),
|
2012-07-16 11:57:44 +00:00
|
|
|
modalBackdrop = document.createElement("div"),
|
|
|
|
modalWrapper = document.createElement("div"),
|
|
|
|
modalHeader = document.createElement("div"),
|
2013-03-01 09:13:10 +00:00
|
|
|
headerTitle = document.createElement("h3"),
|
2012-07-16 11:57:44 +00:00
|
|
|
modalBody = document.createElement("div"),
|
2012-11-16 19:30:30 +00:00
|
|
|
modalLink = document.createElement("a"),
|
2012-07-16 11:57:44 +00:00
|
|
|
modalFooter = document.createElement("div"),
|
2012-07-16 12:47:28 +00:00
|
|
|
modalFooterHelp = document.createElement("span"),
|
|
|
|
modalFooterButtons = document.createElement("span"),
|
2012-07-18 10:45:17 +00:00
|
|
|
tiddler = this.wiki.getTiddler(title),
|
|
|
|
d = $tw.config.preferences.animationDuration + "ms";
|
2013-01-03 17:06:14 +00:00
|
|
|
// Don't do anything if the tiddler doesn't exist
|
|
|
|
if(!tiddler) {
|
|
|
|
return;
|
|
|
|
}
|
2012-07-16 11:57:44 +00:00
|
|
|
// Add classes
|
|
|
|
$tw.utils.addClass(modalBackdrop,"modal-backdrop");
|
|
|
|
$tw.utils.addClass(modalWrapper,"modal");
|
|
|
|
$tw.utils.addClass(modalHeader,"modal-header");
|
|
|
|
$tw.utils.addClass(modalBody,"modal-body");
|
2012-11-16 19:30:30 +00:00
|
|
|
$tw.utils.addClass(modalLink,"btn btn-large btn-block btn-success");
|
2012-07-16 11:57:44 +00:00
|
|
|
$tw.utils.addClass(modalFooter,"modal-footer");
|
|
|
|
// Join them together
|
|
|
|
wrapper.appendChild(modalBackdrop);
|
|
|
|
wrapper.appendChild(modalWrapper);
|
|
|
|
modalHeader.appendChild(headerTitle);
|
|
|
|
modalWrapper.appendChild(modalHeader);
|
|
|
|
modalWrapper.appendChild(modalBody);
|
|
|
|
modalFooter.appendChild(modalFooterHelp);
|
|
|
|
modalFooter.appendChild(modalFooterButtons);
|
|
|
|
modalWrapper.appendChild(modalFooter);
|
|
|
|
// Render the title of the message
|
2012-07-16 13:04:29 +00:00
|
|
|
var titleText;
|
|
|
|
if(tiddler && tiddler.fields && tiddler.fields.subtitle) {
|
|
|
|
titleText = tiddler.fields.subtitle;
|
|
|
|
} else {
|
|
|
|
titleText = title;
|
|
|
|
}
|
2013-02-10 18:44:00 +00:00
|
|
|
var headerParser = this.wiki.parseText("text/vnd.tiddlywiki-run",titleText,{parseAsInline: true}),
|
2013-01-03 17:06:14 +00:00
|
|
|
headerRenderTree = new $tw.WikiRenderTree(headerParser,{wiki: $tw.wiki});
|
|
|
|
headerRenderTree.execute({tiddlerTitle: title});
|
|
|
|
headerRenderTree.renderInDom(headerTitle);
|
2013-03-16 10:42:46 +00:00
|
|
|
this.wiki.addEventListener("change",function(changes) {
|
2013-01-03 17:06:14 +00:00
|
|
|
headerRenderTree.refreshInDom(changes);
|
2012-07-15 16:37:03 +00:00
|
|
|
});
|
2012-07-16 11:57:44 +00:00
|
|
|
// Render the body of the message
|
2013-01-03 17:06:14 +00:00
|
|
|
var bodyParser = this.wiki.parseTiddler(title),
|
|
|
|
bodyRenderTree = new $tw.WikiRenderTree(bodyParser,{wiki: $tw.wiki});
|
|
|
|
bodyRenderTree.execute({tiddlerTitle: title});
|
|
|
|
bodyRenderTree.renderInDom(modalBody);
|
2013-03-16 10:42:46 +00:00
|
|
|
this.wiki.addEventListener("change",function(changes) {
|
2013-01-03 17:06:14 +00:00
|
|
|
bodyRenderTree.refreshInDom(changes);
|
2012-07-16 11:57:44 +00:00
|
|
|
});
|
2012-11-16 19:30:30 +00:00
|
|
|
// Setup the link if present
|
|
|
|
if(options.downloadLink) {
|
|
|
|
modalLink.href = options.downloadLink
|
2012-11-16 19:36:50 +00:00
|
|
|
modalLink.appendChild(document.createTextNode("Right-click to save changes"));
|
2012-11-16 19:30:30 +00:00
|
|
|
modalBody.appendChild(modalLink);
|
|
|
|
}
|
2012-07-16 11:57:44 +00:00
|
|
|
// Render the footer of the message
|
2012-07-16 12:47:28 +00:00
|
|
|
if(tiddler && tiddler.fields && tiddler.fields.help) {
|
|
|
|
var link = document.createElement("a");
|
|
|
|
link.setAttribute("href",tiddler.fields.help);
|
|
|
|
link.setAttribute("target","_blank");
|
|
|
|
link.appendChild(document.createTextNode("Help"));
|
|
|
|
modalFooterHelp.appendChild(link);
|
|
|
|
modalFooterHelp.style.float = "left";
|
|
|
|
}
|
2012-07-16 13:04:29 +00:00
|
|
|
var footerText;
|
|
|
|
if(tiddler && tiddler.fields && tiddler.fields.footer) {
|
|
|
|
footerText = tiddler.fields.footer;
|
|
|
|
} else {
|
2013-02-04 15:29:25 +00:00
|
|
|
footerText = '<$button message="tw-close-tiddler" class="btn btn-primary">Close</$button>';
|
2012-07-16 13:04:29 +00:00
|
|
|
}
|
2013-02-10 18:44:00 +00:00
|
|
|
var footerParser = this.wiki.parseText("text/vnd.tiddlywiki-run",footerText,{parseAsInline: true}),
|
2013-01-03 17:06:14 +00:00
|
|
|
footerRenderTree = new $tw.WikiRenderTree(footerParser,{wiki: $tw.wiki});
|
|
|
|
footerRenderTree.execute({tiddlerTitle: title});
|
|
|
|
footerRenderTree.renderInDom(modalFooterButtons);
|
2013-03-16 10:42:46 +00:00
|
|
|
this.wiki.addEventListener("change",function(changes) {
|
2013-01-03 17:06:14 +00:00
|
|
|
footerRenderTree.refreshInDom(changes);
|
2012-07-16 11:57:44 +00:00
|
|
|
});
|
|
|
|
// Add the close event handler
|
2013-02-04 15:29:25 +00:00
|
|
|
wrapper.addEventListener("tw-close-tiddler",function(event) {
|
2012-07-18 10:45:17 +00:00
|
|
|
// Force layout and animate the modal message away
|
2012-08-02 21:32:34 +00:00
|
|
|
$tw.utils.forceLayout(modalBackdrop);
|
|
|
|
$tw.utils.forceLayout(modalWrapper);
|
2012-10-26 09:28:32 +00:00
|
|
|
$tw.utils.setStyle(modalBackdrop,[
|
|
|
|
{opacity: "0"}
|
|
|
|
]);
|
|
|
|
$tw.utils.setStyle(modalWrapper,[
|
|
|
|
{transform: "translateY(" + window.innerHeight + "px)"}
|
|
|
|
]);
|
2012-07-18 10:45:17 +00:00
|
|
|
// Set up an event for the transition end
|
2012-10-26 09:28:32 +00:00
|
|
|
modalWrapper.addEventListener($tw.utils.convertEventName("transitionEnd"),function(event) {
|
2012-07-18 10:45:17 +00:00
|
|
|
if(wrapper.parentNode) {
|
|
|
|
// Remove the modal message from the DOM
|
|
|
|
document.body.removeChild(wrapper);
|
|
|
|
}
|
|
|
|
},false);
|
2013-02-04 15:29:25 +00:00
|
|
|
// Don't let anyone else handle the tw-close-tiddler message
|
2012-07-15 22:07:07 +00:00
|
|
|
event.stopPropagation();
|
2012-07-15 16:37:03 +00:00
|
|
|
return false;
|
|
|
|
},false);
|
2012-07-17 17:28:47 +00:00
|
|
|
// Set the initial styles for the message
|
2012-10-26 09:28:32 +00:00
|
|
|
$tw.utils.setStyle(modalBackdrop,[
|
|
|
|
{opacity: "0"}
|
|
|
|
]);
|
|
|
|
$tw.utils.setStyle(modalWrapper,[
|
|
|
|
{transformOrigin: "0% 0%"},
|
|
|
|
{transform: "translateY(" + (-window.innerHeight) + "px)"}
|
|
|
|
]);
|
2012-07-16 11:57:44 +00:00
|
|
|
// Put the message into the document
|
2012-07-15 16:37:03 +00:00
|
|
|
document.body.appendChild(wrapper);
|
2012-07-18 10:45:17 +00:00
|
|
|
// Set up animation for the styles
|
2012-10-26 09:28:32 +00:00
|
|
|
$tw.utils.setStyle(modalBackdrop,[
|
|
|
|
{transition: "opacity " + d + " ease-out"}
|
|
|
|
]);
|
|
|
|
$tw.utils.setStyle(modalWrapper,[
|
2012-11-06 17:21:56 +00:00
|
|
|
{transition: $tw.utils.roundTripPropertyName("transform") + " " + $tw.config.preferences.animationDurationMs + " ease-in-out"}
|
2012-10-26 09:28:32 +00:00
|
|
|
]);
|
2012-07-18 10:45:17 +00:00
|
|
|
// Force layout
|
2012-08-02 21:32:34 +00:00
|
|
|
$tw.utils.forceLayout(modalBackdrop);
|
|
|
|
$tw.utils.forceLayout(modalWrapper);
|
2012-07-18 10:45:17 +00:00
|
|
|
// Set final animated styles
|
2012-10-26 09:28:32 +00:00
|
|
|
$tw.utils.setStyle(modalBackdrop,[
|
2013-02-10 18:44:00 +00:00
|
|
|
{opacity: "0.7"}
|
2012-10-26 09:28:32 +00:00
|
|
|
]);
|
|
|
|
$tw.utils.setStyle(modalWrapper,[
|
|
|
|
{transform: "translateY(0px)"}
|
|
|
|
]);
|
2012-07-15 16:37:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.Modal = Modal;
|
|
|
|
|
|
|
|
})();
|