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
|
|
|
|
|
2012-08-03 14:09:48 +00:00
|
|
|
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";
|
|
|
|
|
|
|
|
/*
|
2012-07-14 14:52:35 +00:00
|
|
|
Creates a Popup object with these options:
|
2012-06-19 15:47:35 +00:00
|
|
|
rootElement: the DOM element to which the popup zapper should be attached
|
|
|
|
*/
|
2012-07-14 14:52:35 +00:00
|
|
|
var Popup = function(options) {
|
2012-06-19 15:47:35 +00:00
|
|
|
options = options || {};
|
2014-11-22 10:19:03 +00:00
|
|
|
this.rootElement = options.rootElement || document.documentElement;
|
2014-11-21 17:07:03 +00:00
|
|
|
this.popups = []; // Array of {title:,wiki:,domNode:} objects
|
2012-06-19 15:47:35 +00:00
|
|
|
};
|
|
|
|
|
2014-11-21 17:07:03 +00:00
|
|
|
/*
|
|
|
|
Trigger a popup open or closed. Parameters are in a hashmap:
|
|
|
|
title: title of the tiddler where the popup details are stored
|
|
|
|
domNode: dom node to which the popup will be positioned
|
|
|
|
wiki: wiki
|
|
|
|
force: if specified, forces the popup state to true or false (instead of toggling it)
|
|
|
|
*/
|
|
|
|
Popup.prototype.triggerPopup = function(options) {
|
|
|
|
console.log("triggerPopup",options)
|
|
|
|
// Check if this popup is already active
|
|
|
|
var index = -1;
|
|
|
|
for(var t=0; t<this.popups.length; t++) {
|
|
|
|
if(this.popups[t].title === options.title) {
|
|
|
|
index = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Compute the new state
|
|
|
|
var state = index === -1;
|
|
|
|
if(options.force !== undefined) {
|
|
|
|
state = options.force;
|
|
|
|
}
|
|
|
|
// Show or cancel the popup according to the new state
|
|
|
|
if(state) {
|
|
|
|
this.show(options);
|
|
|
|
} else {
|
|
|
|
this.cancel(index);
|
|
|
|
}
|
2012-06-19 15:47:35 +00:00
|
|
|
};
|
|
|
|
|
2012-07-14 14:52:35 +00:00
|
|
|
Popup.prototype.handleEvent = function(event) {
|
2014-11-21 17:07:03 +00:00
|
|
|
console.log("handleEvent",event)
|
2013-11-12 22:02:26 +00:00
|
|
|
if(event.type === "click") {
|
2014-11-21 17:07:03 +00:00
|
|
|
// Find out what was clicked on
|
|
|
|
var info = this.popupInfo(event.target),
|
|
|
|
cancelLevel = info.popupLevel - 1;
|
|
|
|
// Don't remove the level that was clicked on if we clicked on a handle
|
|
|
|
if(info.isHandle) {
|
|
|
|
cancelLevel++;
|
2013-11-12 22:02:26 +00:00
|
|
|
}
|
2014-11-21 17:07:03 +00:00
|
|
|
// Cancel
|
|
|
|
this.cancel(cancelLevel);
|
2012-06-19 15:47:35 +00:00
|
|
|
}
|
2012-06-19 15:56:29 +00:00
|
|
|
};
|
2012-06-19 15:47:35 +00:00
|
|
|
|
2014-11-21 17:07:03 +00:00
|
|
|
/*
|
|
|
|
Find the popup level containing a DOM node. Returns:
|
|
|
|
popupLevel: count of the number of nested popups containing the specified element
|
|
|
|
isHandle: true if the specified element is within a popup handle
|
|
|
|
*/
|
|
|
|
Popup.prototype.popupInfo = function(domNode) {
|
|
|
|
var isHandle = false,
|
|
|
|
popupCount = 0,
|
|
|
|
node = domNode;
|
|
|
|
// First check ancestors to see if we're within a popup handle
|
|
|
|
while(node) {
|
|
|
|
if($tw.utils.hasClass(node,"tc-popup-handle")) {
|
|
|
|
isHandle = true;
|
|
|
|
popupCount++;
|
|
|
|
}
|
|
|
|
if($tw.utils.hasClass(node,"tc-popup-keep")) {
|
|
|
|
isHandle = true;
|
|
|
|
}
|
|
|
|
node = node.parentNode;
|
2013-11-12 22:02:26 +00:00
|
|
|
}
|
2014-11-21 17:07:03 +00:00
|
|
|
// Then count the number of ancestor popups
|
|
|
|
node = domNode;
|
|
|
|
while(node) {
|
|
|
|
if($tw.utils.hasClass(node,"tc-popup")) {
|
|
|
|
popupCount++;
|
|
|
|
}
|
|
|
|
node = node.parentNode;
|
2012-06-19 15:47:35 +00:00
|
|
|
}
|
2014-11-21 17:07:03 +00:00
|
|
|
var info = {
|
|
|
|
popupLevel: popupCount,
|
|
|
|
isHandle: isHandle
|
|
|
|
};
|
|
|
|
console.log("Returning popupInfo",info)
|
|
|
|
return info;
|
2012-06-19 15:47:35 +00:00
|
|
|
};
|
|
|
|
|
2012-11-06 14:11:11 +00:00
|
|
|
/*
|
2014-11-21 17:07:03 +00:00
|
|
|
Display a popup by adding it to the stack
|
2012-11-06 14:11:11 +00:00
|
|
|
*/
|
2014-11-21 17:07:03 +00:00
|
|
|
Popup.prototype.show = function(options) {
|
|
|
|
console.log("show",options)
|
|
|
|
// Find out what was clicked on
|
|
|
|
var info = this.popupInfo(options.domNode);
|
|
|
|
// Cancel any higher level popups
|
|
|
|
this.cancel(info.popupLevel);
|
|
|
|
// Store the popup details
|
|
|
|
this.popups.push({
|
|
|
|
title: options.title,
|
|
|
|
wiki: options.wiki,
|
|
|
|
domNode: options.domNode
|
|
|
|
});
|
|
|
|
// Set the state tiddler
|
|
|
|
options.wiki.setTextReference(options.title,
|
2012-11-06 14:11:11 +00:00
|
|
|
"(" + options.domNode.offsetLeft + "," + options.domNode.offsetTop + "," +
|
2012-12-31 18:36:39 +00:00
|
|
|
options.domNode.offsetWidth + "," + options.domNode.offsetHeight + ")");
|
2014-11-21 17:07:03 +00:00
|
|
|
// Add the click handler if we have any popups
|
|
|
|
if(this.popups.length > 0) {
|
|
|
|
console.log("Adding click handler")
|
|
|
|
this.rootElement.addEventListener("click",this,true);
|
2012-11-06 14:11:11 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-10-14 15:56:13 +00:00
|
|
|
/*
|
2014-11-21 17:07:03 +00:00
|
|
|
Cancel all popups at or above a specified level or DOM node
|
|
|
|
level: popup level to cancel (0 cancels all popups)
|
2013-10-14 15:56:13 +00:00
|
|
|
*/
|
2014-11-21 17:07:03 +00:00
|
|
|
Popup.prototype.cancel = function(level) {
|
|
|
|
console.log("cancel",level)
|
|
|
|
var numPopups = this.popups.length;
|
|
|
|
level = Math.max(0,Math.min(level,numPopups));
|
|
|
|
for(var t=level; t<numPopups; t++) {
|
|
|
|
var popup = this.popups.pop();
|
|
|
|
if(popup.title) {
|
|
|
|
popup.wiki.deleteTiddler(popup.title);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(this.popups.length === 0) {
|
|
|
|
console.log("Removing click handler")
|
|
|
|
this.rootElement.removeEventListener("click",this,false);
|
2013-10-14 15:56:13 +00:00
|
|
|
}
|
2014-11-21 17:07:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Returns true if the specified title and text identifies an active popup
|
|
|
|
*/
|
|
|
|
Popup.prototype.readPopupState = function(text) {
|
|
|
|
console.log("readPopupState",text)
|
|
|
|
var popupLocationRegExp = /^\((-?[0-9\.E]+),(-?[0-9\.E]+),(-?[0-9\.E]+),(-?[0-9\.E]+)\)$/;
|
|
|
|
return popupLocationRegExp.test(text);
|
2013-10-14 15:56:13 +00:00
|
|
|
};
|
|
|
|
|
2012-07-14 14:52:35 +00:00
|
|
|
exports.Popup = Popup;
|
2012-06-19 15:47:35 +00:00
|
|
|
|
|
|
|
})();
|