mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
7584d10b49
Summary: See D8966, D8973. Replace PhabricatorDropdownMenu with PHUIXDropdownMenu. These new menus look weird on mobile because all action lists pick up a bunch of weird styles on mobile and we're now reusing the CSS. Test Plan: {F150425} {F150426} Reviewers: btrahan, chad Reviewed By: btrahan Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D8974
181 lines
3.4 KiB
JavaScript
181 lines
3.4 KiB
JavaScript
/**
|
|
* @provides phuix-dropdown-menu
|
|
* @requires javelin-install
|
|
* javelin-util
|
|
* javelin-dom
|
|
* javelin-vector
|
|
* javelin-stratcom
|
|
* @javelin
|
|
*/
|
|
|
|
|
|
/**
|
|
* Basic interaction for a dropdown menu.
|
|
*
|
|
* The menu is unaware of the content inside it, so it can not close itself
|
|
* when an item is selected. Callers must make a call to @{method:close} after
|
|
* an item is chosen in order to close the menu.
|
|
*/
|
|
JX.install('PHUIXDropdownMenu', {
|
|
|
|
construct : function(node) {
|
|
this._node = node;
|
|
|
|
JX.DOM.listen(
|
|
this._node,
|
|
'click',
|
|
null,
|
|
JX.bind(this, this._onclick));
|
|
|
|
JX.Stratcom.listen(
|
|
'mousedown',
|
|
null,
|
|
JX.bind(this, this._onanyclick));
|
|
|
|
JX.Stratcom.listen(
|
|
'resize',
|
|
null,
|
|
JX.bind(this, this._adjustposition));
|
|
|
|
JX.Stratcom.listen('phuix.dropdown.open', null, JX.bind(this, this.close));
|
|
},
|
|
|
|
events: ['open'],
|
|
|
|
properties: {
|
|
width: null,
|
|
align: 'right',
|
|
offsetX: 0,
|
|
offsetY: 0
|
|
},
|
|
|
|
members: {
|
|
_node: null,
|
|
_menu: null,
|
|
_open: false,
|
|
_content: null,
|
|
|
|
setContent: function(content) {
|
|
JX.DOM.setContent(this._getMenuNode(), content);
|
|
return this;
|
|
},
|
|
|
|
open: function() {
|
|
if (this._open) {
|
|
return;
|
|
}
|
|
|
|
this.invoke('open');
|
|
JX.Stratcom.invoke('phuix.dropdown.open');
|
|
|
|
this._open = true;
|
|
this._show();
|
|
|
|
return this;
|
|
},
|
|
|
|
close: function() {
|
|
if (!this._open) {
|
|
return;
|
|
}
|
|
this._open = false;
|
|
this._hide();
|
|
|
|
return this;
|
|
},
|
|
|
|
_getMenuNode: function() {
|
|
if (!this._menu) {
|
|
var attrs = {
|
|
className: 'phuix-dropdown-menu',
|
|
role: 'button'
|
|
};
|
|
|
|
var menu = JX.$N('div', attrs);
|
|
|
|
this._node.setAttribute('aria-haspopup', 'true');
|
|
this._node.setAttribute('aria-expanded', 'false');
|
|
|
|
this._menu = menu;
|
|
}
|
|
|
|
return this._menu;
|
|
},
|
|
|
|
_onclick : function(e) {
|
|
if (this._open) {
|
|
this.close();
|
|
} else {
|
|
this.open();
|
|
}
|
|
e.prevent();
|
|
},
|
|
|
|
_onanyclick : function(e) {
|
|
if (!this._open) {
|
|
return;
|
|
}
|
|
|
|
if (JX.Stratcom.pass(e)) {
|
|
return;
|
|
}
|
|
|
|
var t = e.getTarget();
|
|
while (t) {
|
|
if (t == this._menu || t == this._node) {
|
|
return;
|
|
}
|
|
t = t.parentNode;
|
|
}
|
|
|
|
this.close();
|
|
},
|
|
|
|
_show : function() {
|
|
document.body.appendChild(this._menu);
|
|
|
|
if (this.getWidth()) {
|
|
new JX.Vector(this.getWidth(), null).setDim(this._menu);
|
|
}
|
|
|
|
this._adjustposition();
|
|
|
|
JX.DOM.alterClass(this._node, 'phuix-dropdown-open', true);
|
|
|
|
this._node.setAttribute('aria-expanded', 'true');
|
|
},
|
|
|
|
_hide : function() {
|
|
JX.DOM.remove(this._menu);
|
|
|
|
JX.DOM.alterClass(this._node, 'phuix-dropdown-open', false);
|
|
|
|
this._node.setAttribute('aria-expanded', 'false');
|
|
},
|
|
|
|
_adjustposition : function() {
|
|
if (!this._open) {
|
|
return;
|
|
}
|
|
|
|
var m = JX.Vector.getDim(this._menu);
|
|
|
|
var v = JX.$V(this._node);
|
|
var d = JX.Vector.getDim(this._node);
|
|
|
|
switch (this.getAlign()) {
|
|
case 'right':
|
|
v = v.add(d)
|
|
.add(JX.$V(-m.x, 0));
|
|
break;
|
|
default:
|
|
v = v.add(0, d.y);
|
|
break;
|
|
}
|
|
|
|
v = v.add(this.getOffsetX(), this.getOffsetY());
|
|
|
|
v.setPos(this._menu);
|
|
}
|
|
}
|
|
});
|