mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
f55647736a
Summary: Just some housekeeping... mostly just removing some unused variables. Test Plan: Checked that I was still about to receive notifications from `/notification/status/`. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11398
39 lines
761 B
JavaScript
39 lines
761 B
JavaScript
/**
|
|
* @provides javelin-behavior-aphlict-status
|
|
* @requires javelin-behavior
|
|
* javelin-aphlict
|
|
* phabricator-phtize
|
|
* javelin-dom
|
|
* @javelin
|
|
*/
|
|
|
|
JX.behavior('aphlict-status', function(config) {
|
|
var pht = JX.phtize(config.pht);
|
|
|
|
function update() {
|
|
var client = JX.Aphlict.getInstance();
|
|
if (!client) {
|
|
return;
|
|
}
|
|
|
|
var node;
|
|
try {
|
|
node = JX.$(config.nodeID);
|
|
} catch (ignored) {
|
|
return;
|
|
}
|
|
|
|
var status = client.getStatus();
|
|
var status_node = JX.$N(
|
|
'span',
|
|
{
|
|
className: 'aphlict-connection-status-' + status
|
|
},
|
|
pht(status));
|
|
|
|
JX.DOM.setContent(node, status_node);
|
|
}
|
|
|
|
JX.Aphlict.listen('didChangeStatus', update);
|
|
update();
|
|
});
|