1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-26 07:13:15 +00:00
TiddlyWiki5/core/modules/utils/dom/popup.js

81 lines
2.4 KiB
JavaScript
Raw Normal View History

2012-06-19 15:47:35 +00:00
/*\
2012-07-14 14:57:36 +00:00
title: $:/core/modules/utils/dom/popup.js
2012-06-19 15:47:35 +00:00
type: application/javascript
module-type: utils
Module that creates a $tw.utils.Popup object prototype that manages popups in the browser
2012-06-19 15:47:35 +00:00
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Creates a Popup object with these options:
2012-06-19 15:47:35 +00:00
wiki: the wiki to use for resolving tiddler titles
rootElement: the DOM element to which the popup zapper should be attached
*/
var Popup = function(options) {
2012-06-19 15:47:35 +00:00
options = options || {};
this.wiki = options.wiki;
this.rootElement = options.rootElement || document.body;
this.popupTextRef = null;
};
Popup.prototype.popup = function(stateTextRef) {
2012-06-19 15:47:35 +00:00
this.cancel();
this.popupTextRef = stateTextRef;
this.rootElement.addEventListener("click",this,true);
};
Popup.prototype.handleEvent = function(event) {
2012-06-19 15:47:35 +00:00
if(event.type === "click") {
this.rootElement.removeEventListener("click",this,true);
2012-06-19 15:47:35 +00:00
this.cancel();
}
2012-06-19 15:56:29 +00:00
};
2012-06-19 15:47:35 +00:00
Popup.prototype.cancel = function() {
2012-06-19 15:47:35 +00:00
if(this.popupTextRef) {
this.wiki.deleteTextReference(this.popupTextRef);
this.popupTextRef = null;
}
};
2012-11-06 14:11:11 +00:00
/*
Trigger a popup open or closed. Parameters are in a hashmap:
textRef: text reference where the popup details are stored
domNode: dom node to which the popup will be positioned
qualifyTiddlerTitles: "yes" if state tiddler titles are to be qualified
contextTiddlerTitle: title of tiddler providing context for text references
contextParents: parent stack
wiki: wiki
*/
Popup.prototype.triggerPopup = function(options) {
// Get the textref of the popup state tiddler
var textRef = options.textRef;
if(options.qualifyTiddlerTitles === "yes") {
textRef = textRef + "(" + options.contextParents.join(",") + "," + options.contextTiddlerTitle + ")";
2012-11-06 14:11:11 +00:00
}
// Get the current popup state tiddler
var value = options.wiki.getTextReference(textRef,"",options.contextTiddlerTitle);
// Check if the popup is open by checking whether it matches "(<x>,<y>)"
var popupLocationRegExp = /^\((-?[0-9\.E]+),(-?[0-9\.E]+),(-?[0-9\.E]+),(-?[0-9\.E]+)\)$/;
if(popupLocationRegExp.test(value)) {
this.cancel();
} else {
// Set the position if we're opening it
options.wiki.setTextReference(textRef,
"(" + options.domNode.offsetLeft + "," + options.domNode.offsetTop + "," +
options.domNode.offsetWidth + "," + options.domNode.offsetHeight + ")",
options.contextTiddlerTitle,true);
this.popup(textRef);
}
};
exports.Popup = Popup;
2012-06-19 15:47:35 +00:00
})();