mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-18 20:10:02 +00:00
Cancel open popups when inputs get focus
This commit is contained in:
commit
ac49b4d20c
@ -79,6 +79,7 @@ function FramedEngine(options) {
|
|||||||
// Add event listeners
|
// Add event listeners
|
||||||
$tw.utils.addEventListeners(this.domNode,[
|
$tw.utils.addEventListeners(this.domNode,[
|
||||||
{name: "click",handlerObject: this,handlerMethod: "handleClickEvent"},
|
{name: "click",handlerObject: this,handlerMethod: "handleClickEvent"},
|
||||||
|
{name: "focus",handlerObject: this.widget,handlerMethod: "handleFocusEvent"},
|
||||||
{name: "input",handlerObject: this,handlerMethod: "handleInputEvent"},
|
{name: "input",handlerObject: this,handlerMethod: "handleInputEvent"},
|
||||||
{name: "keydown",handlerObject: this.widget,handlerMethod: "handleKeydownEvent"}
|
{name: "keydown",handlerObject: this.widget,handlerMethod: "handleKeydownEvent"}
|
||||||
]);
|
]);
|
||||||
@ -153,6 +154,13 @@ FramedEngine.prototype.focus = function() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
Handle the focus event
|
||||||
|
*/
|
||||||
|
FramedEngine.prototype.handleFocusEvent = function() {
|
||||||
|
this.widget.cancelPopups();
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Handle a click
|
Handle a click
|
||||||
*/
|
*/
|
||||||
|
@ -122,6 +122,7 @@ SimpleEngine.prototype.handleInputEvent = function(event) {
|
|||||||
Handle a dom "focus" event
|
Handle a dom "focus" event
|
||||||
*/
|
*/
|
||||||
SimpleEngine.prototype.handleFocusEvent = function(event) {
|
SimpleEngine.prototype.handleFocusEvent = function(event) {
|
||||||
|
this.widget.cancelPopups();
|
||||||
if(this.widget.editFocusPopup) {
|
if(this.widget.editFocusPopup) {
|
||||||
$tw.popup.triggerPopup({
|
$tw.popup.triggerPopup({
|
||||||
domNode: this.domNode,
|
domNode: this.domNode,
|
||||||
|
@ -248,6 +248,13 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
Cancel Popups
|
||||||
|
*/
|
||||||
|
EditTextWidget.prototype.cancelPopups = function() {
|
||||||
|
$tw.popup.cancel(0,this.engine.domNode);
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Handle a dom "keydown" event, which we'll bubble up to our container for the keyboard widgets benefit
|
Handle a dom "keydown" event, which we'll bubble up to our container for the keyboard widgets benefit
|
||||||
*/
|
*/
|
||||||
|
@ -148,14 +148,37 @@ Popup.prototype.show = function(options) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
Detect if a Popup contains an input field that has focus
|
||||||
|
Returns true or false
|
||||||
|
*/
|
||||||
|
Popup.prototype.detectInputWithinPopup = function(node) {
|
||||||
|
var withinPopup = false;
|
||||||
|
for(var i=0; i<this.popups.length; i++) {
|
||||||
|
var popup = (this.popups[i] && this.popups[i].domNode) ? this.popups[i].domNode : null;
|
||||||
|
while(node && popup) {
|
||||||
|
if(node === popup || (node.classList && node.classList.contains("tc-popup-keep"))) {
|
||||||
|
withinPopup = true;
|
||||||
|
}
|
||||||
|
node = node.parentNode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return withinPopup;
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Cancel all popups at or above a specified level or DOM node
|
Cancel all popups at or above a specified level or DOM node
|
||||||
level: popup level to cancel (0 cancels all popups)
|
level: popup level to cancel (0 cancels all popups)
|
||||||
*/
|
*/
|
||||||
Popup.prototype.cancel = function(level) {
|
Popup.prototype.cancel = function(level,focusedInputNode) {
|
||||||
var numPopups = this.popups.length;
|
var numPopups = this.popups.length;
|
||||||
level = Math.max(0,Math.min(level,numPopups));
|
level = Math.max(0,Math.min(level,numPopups));
|
||||||
for(var t=level; t<numPopups; t++) {
|
for(var t=level; t<numPopups; t++) {
|
||||||
|
var inputWithinPopup;
|
||||||
|
if(focusedInputNode) {
|
||||||
|
inputWithinPopup = this.detectInputWithinPopup(focusedInputNode);
|
||||||
|
}
|
||||||
|
if(!inputWithinPopup) {
|
||||||
var popup = this.popups.pop();
|
var popup = this.popups.pop();
|
||||||
if(popup.title) {
|
if(popup.title) {
|
||||||
if(popup.noStateReference) {
|
if(popup.noStateReference) {
|
||||||
@ -165,6 +188,7 @@ Popup.prototype.cancel = function(level) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if(this.popups.length === 0) {
|
if(this.popups.length === 0) {
|
||||||
this.rootElement.removeEventListener("click",this,false);
|
this.rootElement.removeEventListener("click",this,false);
|
||||||
}
|
}
|
||||||
|
@ -125,6 +125,9 @@ function CodeMirrorEngine(options) {
|
|||||||
event.stopPropagation(); // Otherwise TW's dropzone widget sees the drop event
|
event.stopPropagation(); // Otherwise TW's dropzone widget sees the drop event
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
this.cm.on("focus",function() {
|
||||||
|
self.widget.cancelPopups();
|
||||||
|
});
|
||||||
this.cm.on("keydown",function(cm,event) {
|
this.cm.on("keydown",function(cm,event) {
|
||||||
return self.widget.handleKeydownEvent.call(self.widget,event);
|
return self.widget.handleKeydownEvent.call(self.widget,event);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user