messengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscord
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
833 lines
26 KiB
833 lines
26 KiB
/** |
|
* ToolTip is a {@link Ext.tip.Tip} implementation that handles the common case of displaying a |
|
* tooltip when hovering over a certain element or elements on the page. It allows fine-grained |
|
* control over the tooltip's alignment relative to the target element or mouse, and the timing |
|
* of when it is automatically shown and hidden. |
|
* |
|
* This implementation does **not** have a built-in method of automatically populating the tooltip's |
|
* text based on the target element; you must either configure a fixed {@link #html} value for each |
|
* ToolTip instance, or implement custom logic (e.g. in a {@link #beforeshow} event listener) to |
|
* generate the appropriate tooltip content on the fly. See {@link Ext.tip.QuickTip} for a more |
|
* convenient way of automatically populating and configuring a tooltip based on specific DOM |
|
* attributes of each target element. |
|
* |
|
* # Basic Example |
|
* |
|
* @example |
|
* Ext.getBody().appendChild({ |
|
* id: 'clearButton', |
|
* html: 'Clear Button', |
|
* style: 'display:inline-block;background:#A2C841;padding:7px;cursor:pointer;' |
|
* }); |
|
* |
|
* var tip = Ext.create('Ext.tip.ToolTip', { |
|
* target: 'clearButton', |
|
* html: 'Press this button to clear the form' |
|
* }); |
|
* |
|
* # Delegation |
|
* |
|
* In addition to attaching a ToolTip to a single element, you can also use delegation to attach |
|
* one ToolTip to many elements under a common parent. This is more efficient than creating many |
|
* ToolTip instances. To do this, point the {@link #target} config to a common ancestor of all the |
|
* elements, and then set the {@link #delegate} config to a CSS selector that will select all the |
|
* appropriate sub-elements. |
|
* |
|
* When using delegation, it is likely that you will want to programmatically change the content |
|
* of the ToolTip based on each delegate element; you can do this by implementing a custom |
|
* listener for the {@link #beforeshow} event. Example: |
|
* |
|
* @example |
|
* var store = Ext.create('Ext.data.ArrayStore', { |
|
* fields: ['company', 'price', 'change'], |
|
* data: [ |
|
* ['3m Co', 71.72, 0.02], |
|
* ['Alcoa Inc', 29.01, 0.42], |
|
* ['Altria Group Inc', 83.81, 0.28], |
|
* ['American Express Company', 52.55, 0.01], |
|
* ['American International Group, Inc.', 64.13, 0.31], |
|
* ['AT&T Inc.', 31.61, -0.48] |
|
* ] |
|
* }); |
|
* |
|
* var grid = Ext.create('Ext.grid.Panel', { |
|
* title: 'Array Grid', |
|
* store: store, |
|
* columns: [ |
|
* {text: 'Company', flex: 1, dataIndex: 'company'}, |
|
* {text: 'Price', width: 75, dataIndex: 'price'}, |
|
* {text: 'Change', width: 75, dataIndex: 'change'} |
|
* ], |
|
* height: 200, |
|
* width: 400, |
|
* renderTo: Ext.getBody() |
|
* }); |
|
* |
|
* var view = grid.getView(); |
|
* var tip = Ext.create('Ext.tip.ToolTip', { |
|
* // The overall target element. |
|
* target: view.el, |
|
* // Each grid row causes its own separate show and hide. |
|
* delegate: view.itemSelector, |
|
* // Moving within the row should not hide the tip. |
|
* trackMouse: true, |
|
* // Render immediately so that tip.body can be referenced prior to the first show. |
|
* renderTo: Ext.getBody(), |
|
* listeners: { |
|
* // Change content dynamically depending on which element triggered the show. |
|
* beforeshow: function updateTipBody(tip) { |
|
* tip.update('Over company "' + view.getRecord(tip.triggerElement).get('company') + '"'); |
|
* } |
|
* } |
|
* }); |
|
* |
|
* # Alignment |
|
* |
|
* The following configuration properties allow control over how the ToolTip is aligned relative to |
|
* the target element and/or mouse pointer: |
|
* |
|
* - {@link #anchor} |
|
* - {@link #anchorToTarget} |
|
* - {@link #anchorOffset} |
|
* - {@link #trackMouse} |
|
* - {@link #mouseOffset} |
|
* |
|
* # Showing/Hiding |
|
* |
|
* The following configuration properties allow control over how and when the ToolTip is automatically |
|
* shown and hidden: |
|
* |
|
* - {@link #autoHide} |
|
* - {@link #showDelay} |
|
* - {@link #hideDelay} |
|
* - {@link #dismissDelay} |
|
*/ |
|
Ext.define('Ext.tip.ToolTip', { |
|
extend: 'Ext.tip.Tip', |
|
alias: 'widget.tooltip', |
|
alternateClassName: 'Ext.ToolTip', |
|
|
|
/** |
|
* @property {HTMLElement} triggerElement |
|
* When a ToolTip is configured with the `{@link #delegate}` |
|
* option to cause selected child elements of the `{@link #target}` |
|
* Element to each trigger a separate show event, this property is set to |
|
* the DOM element which triggered the show. |
|
*/ |
|
/** |
|
* @cfg {HTMLElement/Ext.dom.Element/String} target |
|
* The target element or string id to monitor for mouseover events to trigger |
|
* showing this ToolTip. |
|
*/ |
|
/** |
|
* @cfg {Boolean} [autoHide=true] |
|
* True to automatically hide the tooltip after the |
|
* mouse exits the target element or after the `{@link #dismissDelay}` |
|
* has expired if set. If `{@link #closable} = true` |
|
* a close tool button will be rendered into the tooltip header. |
|
*/ |
|
autoHide: true, |
|
|
|
/** |
|
* @cfg {Number} showDelay |
|
* Delay in milliseconds before the tooltip displays after the mouse enters the target element. |
|
*/ |
|
showDelay: 500, |
|
/** |
|
* @cfg {Number} hideDelay |
|
* Delay in milliseconds after the mouse exits the target element but before the tooltip actually hides. |
|
* Set to 0 for the tooltip to hide immediately. |
|
*/ |
|
hideDelay: 200, |
|
/** |
|
* @cfg {Number} dismissDelay |
|
* Delay in milliseconds before the tooltip automatically hides. To disable automatic hiding, set |
|
* dismissDelay = 0. |
|
*/ |
|
dismissDelay: 5000, |
|
/** |
|
* @cfg {Number[]} [mouseOffset=[15,18]] |
|
* An XY offset from the mouse position where the tooltip should be shown. |
|
*/ |
|
/** |
|
* @cfg {Boolean} trackMouse |
|
* True to have the tooltip follow the mouse as it moves over the target element. |
|
*/ |
|
trackMouse: false, |
|
/** |
|
* @cfg {String} anchor |
|
* If specified, indicates that the tip should be anchored to a |
|
* particular side of the target element or mouse pointer ("top", "right", "bottom", |
|
* or "left"), with an arrow pointing back at the target or mouse pointer. If |
|
* {@link #constrainPosition} is enabled, this will be used as a preferred value |
|
* only and may be flipped as needed. |
|
*/ |
|
/** |
|
* @cfg {Boolean} anchorToTarget |
|
* True to anchor the tooltip to the target element, false to anchor it relative to the mouse coordinates. |
|
* When `anchorToTarget` is true, use `{@link #defaultAlign}` to control tooltip alignment to the |
|
* target element. When `anchorToTarget` is false, use `{@link #anchor}` instead to control alignment. |
|
*/ |
|
anchorToTarget: true, |
|
/** |
|
* @cfg {Number} anchorOffset |
|
* A numeric pixel value used to offset the default position of the anchor arrow. When the anchor |
|
* position is on the top or bottom of the tooltip, `anchorOffset` will be used as a horizontal offset. |
|
* Likewise, when the anchor position is on the left or right side, `anchorOffset` will be used as |
|
* a vertical offset. |
|
*/ |
|
anchorOffset: 0, |
|
|
|
/** |
|
* @cfg {String} delegate |
|
* |
|
* A {@link Ext.DomQuery DomQuery} simple selector which allows selection of individual elements within the |
|
* `{@link #target}` element to trigger showing and hiding the ToolTip as the mouse moves within the |
|
* target. See {@link Ext.dom.Query} for information about simple selectors. |
|
* |
|
* When specified, the child element of the target which caused a show event is placed into the |
|
* `{@link #triggerElement}` property before the ToolTip is shown. |
|
* |
|
* This may be useful when a Component has regular, repeating elements in it, each of which need a |
|
* ToolTip which contains information specific to that element. |
|
* |
|
* See the delegate example in class documentation of {@link Ext.tip.ToolTip}. |
|
*/ |
|
|
|
/** |
|
* @private |
|
*/ |
|
targetCounter: 0, |
|
|
|
quickShowInterval: 250, |
|
|
|
/** |
|
* @cfg {String} [hideAction="hide"] |
|
* The method to use to hide the tooltip. Another useful method for this is `fadeOut`. |
|
*/ |
|
hideAction: 'hide', |
|
|
|
/** |
|
* @cfg {Number} [fadeOutDuration=1000] |
|
* The number of milliseconds for the `fadeOut` animation. Only valid if `hideAction` |
|
* is set to `fadeOut`. |
|
*/ |
|
fadeOutDuration: 1000, |
|
|
|
ariaRole: 'tooltip', |
|
|
|
initComponent: function() { |
|
var me = this; |
|
me.callParent(arguments); |
|
me.lastActive = new Date(); |
|
me.setTarget(me.target); |
|
me.origAnchor = me.anchor; |
|
}, |
|
|
|
onRender: function(ct, position) { |
|
var me = this; |
|
me.callParent(arguments); |
|
me.anchorCls = Ext.baseCSSPrefix + 'tip-anchor-' + me.getAnchorPosition(); |
|
//<debug> |
|
if (me.sticky) { |
|
// tell the spec runner to ignore this element when checking if the dom is clean |
|
me.el.dom.setAttribute('data-sticky', true); |
|
} |
|
//</debug> |
|
me.anchorEl = me.el.createChild({ |
|
role: 'presentation', |
|
cls: Ext.baseCSSPrefix + 'tip-anchor ' + me.anchorCls |
|
}); |
|
}, |
|
|
|
/** |
|
* Binds this ToolTip to the specified element. The tooltip will be displayed when the mouse moves over the element. |
|
* @param {String/HTMLElement/Ext.dom.Element} target The Element, HTMLElement, or ID of an element to bind to |
|
*/ |
|
setTarget: function(target) { |
|
var me = this, |
|
t = Ext.get(target), |
|
tg; |
|
|
|
if (me.target) { |
|
tg = Ext.get(me.target); |
|
if (Ext.supports.Touch) { |
|
me.mun(tg, 'tap', me.onTargetOver, me); |
|
} else { |
|
me.mun(tg, { |
|
mouseover: me.onTargetOver, |
|
mouseout: me.onTargetOut, |
|
mousemove: me.onMouseMove, |
|
scope: me |
|
}); |
|
} |
|
} |
|
|
|
me.target = t; |
|
if (t) { |
|
if (Ext.supports.Touch) { |
|
me.mon(t, { |
|
tap: me.onTargetOver, |
|
scope: me |
|
}); |
|
} else { |
|
me.mon(t, { |
|
mouseover: me.onTargetOver, |
|
mouseout: me.onTargetOut, |
|
mousemove: me.onMouseMove, |
|
scope: me |
|
}); |
|
} |
|
} |
|
if (me.anchor) { |
|
me.anchorTarget = me.target; |
|
} |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
onMouseMove: function(e) { |
|
var me = this, |
|
t, |
|
xy; |
|
|
|
// If the event target is no longer in this tip's target (possibly due to rapidly churning content in target), ignore it. |
|
if (!me.target || me.target.contains(e.target)) { |
|
t = me.delegate ? e.getTarget(me.delegate) : (me.triggerElement = true); |
|
if (t) { |
|
me.targetXY = e.getXY(); |
|
if (t === me.triggerElement) { |
|
if (!me.hidden && me.trackMouse) { |
|
xy = me.getTargetXY(); |
|
if (me.constrainPosition) { |
|
xy = me.el.adjustForConstraints(xy, me.el.parent()); |
|
} |
|
me.setPagePosition(xy); |
|
} |
|
} else { |
|
me.hide(); |
|
me.lastActive = new Date(0); |
|
me.onTargetOver(e); |
|
} |
|
} else if ((!me.closable && me.isVisible()) && me.autoHide !== false) { |
|
me.delayHide(); |
|
} |
|
} |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
getTargetXY: function() { |
|
var me = this, |
|
mouseOffset, |
|
offsets, xy, dw, dh, de, bd, scrollX, scrollY, axy, sz, constrainPosition; |
|
if (me.delegate) { |
|
me.anchorTarget = me.triggerElement; |
|
} |
|
if (me.anchor) { |
|
me.targetCounter++; |
|
offsets = me.getOffsets(); |
|
xy = (me.anchorToTarget && !me.trackMouse) ? me.getAlignToXY(me.anchorTarget, me.getAnchorAlign()) : me.targetXY; |
|
dw = Ext.Element.getViewportWidth() - 5; |
|
dh = Ext.Element.getViewportHeight() - 5; |
|
de = document.documentElement; |
|
bd = document.body; |
|
scrollX = (de.scrollLeft || bd.scrollLeft || 0) + 5; |
|
scrollY = (de.scrollTop || bd.scrollTop || 0) + 5; |
|
axy = [xy[0] + offsets[0], xy[1] + offsets[1]]; |
|
sz = me.getSize(); |
|
constrainPosition = me.constrainPosition; |
|
|
|
me.anchorEl.removeCls(me.anchorCls); |
|
|
|
if (me.targetCounter < 2 && constrainPosition) { |
|
if (axy[0] < scrollX) { |
|
if (me.anchorToTarget) { |
|
me.defaultAlign = 'l-r'; |
|
if (me.mouseOffset) { |
|
me.mouseOffset[0] *= -1; |
|
} |
|
} |
|
me.anchor = 'left'; |
|
return me.getTargetXY(); |
|
} |
|
if (axy[0] + sz.width > dw) { |
|
if (me.anchorToTarget) { |
|
me.defaultAlign = 'r-l'; |
|
if (me.mouseOffset) { |
|
me.mouseOffset[0] *= -1; |
|
} |
|
} |
|
me.anchor = 'right'; |
|
return me.getTargetXY(); |
|
} |
|
if (axy[1] < scrollY) { |
|
if (me.anchorToTarget) { |
|
me.defaultAlign = 't-b'; |
|
if (me.mouseOffset) { |
|
me.mouseOffset[1] *= -1; |
|
} |
|
} |
|
me.anchor = 'top'; |
|
return me.getTargetXY(); |
|
} |
|
if (axy[1] + sz.height > dh) { |
|
if (me.anchorToTarget) { |
|
me.defaultAlign = 'b-t'; |
|
if (me.mouseOffset) { |
|
me.mouseOffset[1] *= -1; |
|
} |
|
} |
|
me.anchor = 'bottom'; |
|
return me.getTargetXY(); |
|
} |
|
} |
|
|
|
me.anchorCls = Ext.baseCSSPrefix + 'tip-anchor-' + me.getAnchorPosition(); |
|
me.anchorEl.addCls(me.anchorCls); |
|
me.targetCounter = 0; |
|
return axy; |
|
} else { |
|
mouseOffset = me.getMouseOffset(); |
|
return (me.targetXY) ? [me.targetXY[0] + mouseOffset[0], me.targetXY[1] + mouseOffset[1]] : mouseOffset; |
|
} |
|
}, |
|
|
|
/** |
|
* Overrides Positionable's calculateConstrainedPosition to return a value that is valid for ToolTip |
|
* @private |
|
*/ |
|
calculateConstrainedPosition: function(constrainTo) { |
|
var me = this, |
|
visible, |
|
result, |
|
floatParentBox; |
|
|
|
// If this is a floating child, account for the fact that positioning will be relative to it |
|
if (!constrainTo && me.isContainedFloater()) { |
|
visible = me.isVisible(); |
|
if (!visible) { |
|
me.el.show(); |
|
} |
|
result = me.getTargetXY(); |
|
if (!visible) { |
|
me.el.hide(); |
|
} |
|
floatParentBox = me.floatParent.getTargetEl().getViewRegion(); |
|
result[0] -= floatParentBox.left; |
|
result[1] -= floatParentBox.top; |
|
} else { |
|
result = me.callOverridden(arguments); |
|
} |
|
return result; |
|
}, |
|
|
|
getMouseOffset: function() { |
|
var me = this, |
|
offset = me.anchor ? [0, 0] : [15, 18]; |
|
if (me.mouseOffset) { |
|
offset[0] += me.mouseOffset[0]; |
|
offset[1] += me.mouseOffset[1]; |
|
} |
|
return offset; |
|
}, |
|
|
|
fadeOut: function () { |
|
var me = this; |
|
|
|
me.el.fadeOut({ |
|
duration: me.fadeOutDuration, |
|
callback: function () { |
|
me.hide(); |
|
me.el.setOpacity(''); |
|
} |
|
}); |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
getAnchorPosition: function() { |
|
var me = this, |
|
m; |
|
if (me.anchor) { |
|
me.tipAnchor = me.anchor.charAt(0); |
|
} else { |
|
m = me.defaultAlign.match(/^([a-z]+)-([a-z]+)(\?)?$/); |
|
//<debug> |
|
if (!m) { |
|
Ext.Error.raise('The AnchorTip.defaultAlign value "' + me.defaultAlign + '" is invalid.'); |
|
} |
|
//</debug> |
|
me.tipAnchor = m[1].charAt(0); |
|
} |
|
|
|
switch (me.tipAnchor) { |
|
case 't': |
|
return 'top'; |
|
case 'b': |
|
return 'bottom'; |
|
case 'r': |
|
return 'right'; |
|
} |
|
return 'left'; |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
getAnchorAlign: function() { |
|
switch (this.anchor) { |
|
case 'top': |
|
return 'tl-bl'; |
|
case 'left': |
|
return 'tl-tr'; |
|
case 'right': |
|
return 'tr-tl'; |
|
default: |
|
return 'bl-tl'; |
|
} |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
getOffsets: function() { |
|
var me = this, |
|
mouseOffset, |
|
offsets, |
|
ap = me.getAnchorPosition().charAt(0); |
|
if (me.anchorToTarget && !me.trackMouse) { |
|
switch (ap) { |
|
case 't': |
|
offsets = [0, 9]; |
|
break; |
|
case 'b': |
|
offsets = [0, -13]; |
|
break; |
|
case 'r': |
|
offsets = [ - 13, 0]; |
|
break; |
|
default: |
|
offsets = [9, 0]; |
|
break; |
|
} |
|
} else { |
|
switch (ap) { |
|
case 't': |
|
offsets = [ - 15 - me.anchorOffset, 30]; |
|
break; |
|
case 'b': |
|
offsets = [ - 19 - me.anchorOffset, -13 - me.el.dom.offsetHeight]; |
|
break; |
|
case 'r': |
|
offsets = [ - 15 - me.el.dom.offsetWidth, -13 - me.anchorOffset]; |
|
break; |
|
default: |
|
offsets = [25, -13 - me.anchorOffset]; |
|
break; |
|
} |
|
} |
|
mouseOffset = me.getMouseOffset(); |
|
offsets[0] += mouseOffset[0]; |
|
offsets[1] += mouseOffset[1]; |
|
|
|
return offsets; |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
onTargetOver: function(e) { |
|
var me = this, |
|
delegate = me.delegate, |
|
t; |
|
|
|
if (me.disabled || e.within(me.target.dom, true)) { |
|
return; |
|
} |
|
t = delegate ? e.getTarget(delegate) : true; |
|
if (t) { |
|
me.triggerElement = t; |
|
me.triggerEvent = e; |
|
me.clearTimer('hide'); |
|
me.targetXY = e.getXY(); |
|
me.delayShow(); |
|
} |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
delayShow: function (trackMouse) { |
|
// When delaying, cache the XY coords of the mouse when this method was invoked, NOT when the deferred |
|
// show is called because the mouse could then be in a completely different location. Only cache the |
|
// coords when trackMouse is false. |
|
// |
|
// Note that the delayShow call could be coming from a caller which would internally be setting trackMouse |
|
// (e.g., Ext.chart.Tip:showTip()). Because of this, the caller will pass along the original value for |
|
// trackMouse (i.e., the value passed to the component constructor) to the delayShow method. |
|
// See EXTJSIV-11292. |
|
var me = this, |
|
xy = me.el && (trackMouse === false || !me.trackMouse) && me.getTargetXY(); |
|
|
|
if (me.hidden && !me.showTimer) { |
|
if (Ext.Date.getElapsed(me.lastActive) < me.quickShowInterval) { |
|
me.show(); |
|
} else { |
|
me.showTimer = Ext.defer(me.showFromDelay, me.showDelay, me, [xy]); |
|
} |
|
} |
|
else if (!me.hidden && me.autoHide !== false) { |
|
me.show(xy); |
|
} |
|
}, |
|
|
|
showFromDelay: function (xy) { |
|
var me = this; |
|
// Need to check this here since onDisable only gets called after render, which |
|
// the show call below may trigger |
|
if (me.disabled) { |
|
return; |
|
} |
|
|
|
me.fromDelayShow = true; |
|
me.show(xy); |
|
delete me.fromDelayShow; |
|
}, |
|
|
|
onShowVeto: function(){ |
|
this.callParent(); |
|
delete this.triggerElement; |
|
this.clearTimer('show'); |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
onTargetOut: function(e) { |
|
var me = this, |
|
triggerEl = me.triggerElement, |
|
// If we don't have a delegate, then the target is set |
|
// to true, so set it to the main target. |
|
target = triggerEl === true ? me.target : triggerEl; |
|
|
|
// If disabled, moving within the current target, ignore the mouseout |
|
// e.within is the only correct way to determine this. |
|
if (me.disabled || !triggerEl || e.within(target, true)) { |
|
return; |
|
} |
|
if (me.showTimer) { |
|
me.clearTimer('show'); |
|
me.triggerElement = null; |
|
} |
|
if (me.autoHide !== false) { |
|
me.delayHide(); |
|
} |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
delayHide: function() { |
|
var me = this; |
|
|
|
if (!me.hidden && !me.hideTimer) { |
|
me.hideTimer = Ext.defer(me[me.hideAction], me.hideDelay, me); |
|
} |
|
}, |
|
|
|
/** |
|
* Hides this tooltip if visible. |
|
*/ |
|
hide: function() { |
|
var me = this; |
|
me.clearTimer('dismiss'); |
|
me.lastActive = new Date(); |
|
if (me.anchorEl) { |
|
me.anchorEl.hide(); |
|
} |
|
me.callParent(arguments); |
|
delete me.triggerElement; |
|
}, |
|
|
|
/** |
|
* Shows this tooltip at the current event target XY position. |
|
*/ |
|
show: function (xy) { |
|
var me = this; |
|
|
|
// Show this Component first, so that sizing can be calculated |
|
// pre-show it off screen so that the el will have dimensions |
|
this.callParent(); |
|
if (this.hidden === false) { |
|
if (me.anchor) { |
|
me.anchor = me.origAnchor; |
|
} |
|
|
|
if (!me.calledFromShowAt) { |
|
// If the caller was this.showFromDelay(), the XY coords may have been cached. |
|
me.showAt(xy || me.getTargetXY()); |
|
} |
|
} |
|
}, |
|
|
|
/** |
|
* @inheritdoc |
|
*/ |
|
showAt: function(xy) { |
|
var me = this; |
|
me.lastActive = new Date(); |
|
me.clearTimers(); |
|
me.calledFromShowAt = true; |
|
|
|
// Only call if this is hidden. May have been called from show above. |
|
if (!me.isVisible()) { |
|
this.callParent(arguments); |
|
} |
|
|
|
// Show may have been vetoed. |
|
if (me.isVisible()) { |
|
me.setPagePosition(xy[0], xy[1]); |
|
if (me.constrainPosition || me.constrain) { |
|
me.doConstrain(); |
|
} |
|
me.toFront(true); |
|
me.el.syncUnderlays(); |
|
if (me.dismissDelay && me.autoHide !== false) { |
|
me.dismissTimer = Ext.defer(me.hide, me.dismissDelay, me); |
|
} |
|
} |
|
delete me.calledFromShowAt; |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
syncAnchor: function() { |
|
var me = this, |
|
anchorPos, |
|
targetPos, |
|
offset; |
|
switch (me.tipAnchor.charAt(0)) { |
|
case 't': |
|
anchorPos = 'b'; |
|
targetPos = 'tl'; |
|
offset = [20 + me.anchorOffset, 1]; |
|
break; |
|
case 'r': |
|
anchorPos = 'l'; |
|
targetPos = 'tr'; |
|
offset = [ - 1, 12 + me.anchorOffset]; |
|
break; |
|
case 'b': |
|
anchorPos = 't'; |
|
targetPos = 'bl'; |
|
offset = [20 + me.anchorOffset, -1]; |
|
break; |
|
default: |
|
anchorPos = 'r'; |
|
targetPos = 'tl'; |
|
offset = [1, 12 + me.anchorOffset]; |
|
break; |
|
} |
|
me.anchorEl.alignTo(me.el, anchorPos + '-' + targetPos, offset); |
|
me.anchorEl.setStyle('z-index', parseInt(me.el.getZIndex(), 10) || 0 + 1).setVisibilityMode(Ext.Element.DISPLAY); |
|
}, |
|
|
|
afterSetPosition: function(x, y) { |
|
var me = this; |
|
me.callParent(arguments); |
|
if (me.anchor) { |
|
me.syncAnchor(); |
|
if (!me.anchorEl.isVisible()) { |
|
me.anchorEl.show(); |
|
} |
|
} else { |
|
me.anchorEl.hide(); |
|
} |
|
}, |
|
|
|
_timerNames: {}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
clearTimer: function (name) { |
|
var me = this, |
|
names = me._timerNames, |
|
propName = names[name] || (names[name] = name + 'Timer'), |
|
timer = me[propName]; |
|
|
|
if (timer) { |
|
clearTimeout(timer); |
|
me[propName] = null; |
|
} |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
clearTimers: function() { |
|
var me = this; |
|
me.clearTimer('show'); |
|
me.clearTimer('dismiss'); |
|
me.clearTimer('hide'); |
|
}, |
|
|
|
onShow: function() { |
|
var me = this; |
|
me.callParent(); |
|
me.mon(Ext.getDoc(), 'mousedown', me.onDocMouseDown, me); |
|
}, |
|
|
|
onHide: function() { |
|
var me = this; |
|
me.callParent(); |
|
me.mun(Ext.getDoc(), 'mousedown', me.onDocMouseDown, me); |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
onDocMouseDown: function(e) { |
|
var me = this; |
|
if (!me.closable && !e.within(me.el.dom)) { |
|
me.disable(); |
|
Ext.defer(me.doEnable, 100, me); |
|
} |
|
}, |
|
|
|
/** |
|
* @private |
|
*/ |
|
doEnable: function() { |
|
if (!this.isDestroyed) { |
|
this.enable(); |
|
} |
|
}, |
|
|
|
onDisable: function() { |
|
this.callParent(); |
|
this.clearTimers(); |
|
this.hide(); |
|
}, |
|
|
|
beforeDestroy: function() { |
|
var me = this; |
|
me.clearTimers(); |
|
Ext.destroy(me.anchorEl); |
|
delete me.anchorEl; |
|
delete me.target; |
|
delete me.anchorTarget; |
|
delete me.triggerElement; |
|
me.callParent(); |
|
}, |
|
|
|
onDestroy: function() { |
|
Ext.getDoc().un('mousedown', this.onDocMouseDown, this); |
|
this.callParent(); |
|
} |
|
});
|
|
|