use peering request
This commit is contained in:
parent
614a562f3c
commit
cb4ba86bac
2 changed files with 18 additions and 21 deletions
|
@ -347,15 +347,11 @@ oml.ui.folders = function() {
|
|||
Ox.print('got change event')
|
||||
Ox.Request.clearCache();
|
||||
},
|
||||
'peering.accept': function(data) {
|
||||
Ox.print('peering.accept reload list')
|
||||
peering: function(data, event) {
|
||||
Ox.Request.clearCache('getUsers');
|
||||
that.updateElement();
|
||||
},
|
||||
'peering.remove': function(data) {
|
||||
Ox.print('peering.remove reload list')
|
||||
Ox.Request.clearCache('getUsers');
|
||||
that.updateElement();
|
||||
if (Ox.contains(['peering.accept', 'peering.remove'], event)) {
|
||||
that.updateElement();
|
||||
}
|
||||
},
|
||||
status: function(data) {
|
||||
if (data.id == oml.user.id) {
|
||||
|
|
|
@ -39,25 +39,26 @@ oml.ui.peersButton = function() {
|
|||
.appendTo(that);
|
||||
|
||||
oml.bindEvent({
|
||||
'peering.request': update,
|
||||
'peering.accept': update,
|
||||
'peering.reject': update
|
||||
peering: update
|
||||
});
|
||||
update();
|
||||
|
||||
function open() {
|
||||
oml.UI.set({page: 'users'});
|
||||
oml.UI.set({page: 'peers'});
|
||||
}
|
||||
function update() {
|
||||
oml.api.getUsers(function(result) {
|
||||
requests = result.data.users.filter(function(user) {
|
||||
return user.pending=="received";
|
||||
}).length;
|
||||
count.html(requests);
|
||||
that.options({
|
||||
tooltip: Ox._(requests
|
||||
? Ox.formatCount(requests, 'peering request')
|
||||
: 'No peering requests')
|
||||
// wait for clearCache in folder.js
|
||||
setTimeout(function() {
|
||||
oml.api.getUsers(function(result) {
|
||||
requests = result.data.users.filter(function(user) {
|
||||
return user.pending=="received";
|
||||
}).length;
|
||||
count.html(requests);
|
||||
that.options({
|
||||
tooltip: Ox._(requests
|
||||
? Ox.formatCount(requests, 'peering request')
|
||||
: 'No peering requests')
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue