mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
3021e1d52d
Summary: Fixes T3715. Makes "visible" global instead of per-menu, so all the menus share a visible state. Test Plan: For menus A and B, clicked "A, A", "A, B, A", "A, B, B", "A, B, B, A", etc. Couldn't figure out a way to break it. Reviewers: btrahan, chad Reviewed By: chad CC: aran Maniphest Tasks: T3715 Differential Revision: https://secure.phabricator.com/D6745
124 lines
3 KiB
JavaScript
124 lines
3 KiB
JavaScript
/**
|
|
* @provides javelin-behavior-aphlict-dropdown
|
|
* @requires javelin-behavior
|
|
* javelin-request
|
|
* javelin-stratcom
|
|
* javelin-vector
|
|
* javelin-dom
|
|
* javelin-uri
|
|
*/
|
|
|
|
JX.behavior('aphlict-dropdown', function(config, statics) {
|
|
// Track the current globally visible menu.
|
|
statics.visible = statics.visible || null;
|
|
|
|
var dropdown = JX.$(config.dropdownID);
|
|
var count = JX.$(config.countID);
|
|
var bubble = JX.$(config.bubbleID);
|
|
var request = null;
|
|
var dirty = true;
|
|
|
|
function refresh() {
|
|
if (dirty) {
|
|
JX.DOM.setContent(dropdown, config.loadingText);
|
|
JX.DOM.alterClass(
|
|
dropdown,
|
|
'phabricator-notification-menu-loading',
|
|
true);
|
|
}
|
|
|
|
if (request) { //already fetching
|
|
return;
|
|
}
|
|
|
|
request = new JX.Request(config.uri, function(response) {
|
|
var display = (response.number > 999) ? "\u221E" : response.number;
|
|
|
|
JX.DOM.setContent(count, display);
|
|
if (response.number === 0) {
|
|
JX.DOM.alterClass(bubble, 'alert-unread', false);
|
|
} else {
|
|
JX.DOM.alterClass(bubble, 'alert-unread', true);
|
|
}
|
|
dirty = false;
|
|
JX.DOM.alterClass(
|
|
dropdown,
|
|
'phabricator-notification-menu-loading',
|
|
false);
|
|
JX.DOM.setContent(dropdown, JX.$H(response.content));
|
|
request = null;
|
|
});
|
|
request.send();
|
|
}
|
|
|
|
JX.Stratcom.listen(
|
|
'click',
|
|
null,
|
|
function(e) {
|
|
if (!e.getNode('phabricator-notification-menu')) {
|
|
// Click outside the dropdown; hide it.
|
|
JX.DOM.hide(dropdown);
|
|
statics.visible = null;
|
|
return;
|
|
}
|
|
|
|
if (e.getNode('tag:a')) {
|
|
// User clicked a link, just follow the link.
|
|
return;
|
|
}
|
|
|
|
// If the user clicked a notification (but missed a link) and it has a
|
|
// primary URI, go there.
|
|
var href = e.getNodeData('notification').href;
|
|
if (href) {
|
|
JX.$U(href).go();
|
|
e.kill();
|
|
}
|
|
});
|
|
|
|
|
|
JX.DOM.listen(
|
|
bubble,
|
|
'click',
|
|
null,
|
|
function(e) {
|
|
if (!e.isNormalClick()) {
|
|
return;
|
|
}
|
|
|
|
e.kill();
|
|
|
|
// If a menu is currently open, close it.
|
|
if (statics.visible) {
|
|
var previously_visible = statics.visible;
|
|
JX.DOM.hide(statics.visible);
|
|
statics.visible = null;
|
|
|
|
// If the menu we just closed was the menu attached to the clicked
|
|
// icon, we're all done -- clicking the icon for an open menu just
|
|
// closes it. Otherwise, we closed some other menu and still need to
|
|
// open the one the user just clicked.
|
|
if (previously_visible === dropdown) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (dirty) {
|
|
refresh();
|
|
}
|
|
|
|
var p = JX.$V(bubble);
|
|
p.y = null;
|
|
p.x -= 6;
|
|
p.setPos(dropdown);
|
|
|
|
JX.DOM.show(dropdown);
|
|
statics.visible = dropdown;
|
|
}
|
|
);
|
|
|
|
JX.Stratcom.listen('notification-panel-update', null, function() {
|
|
dirty = true;
|
|
refresh();
|
|
});
|
|
});
|