2013-01-29 22:52:30 +05:00
|
|
|
angular.module('webui.services.rpc.helpers', [
|
|
|
|
'webui.services.deps', 'webui.services.rpc'
|
|
|
|
])
|
|
|
|
.factory('$rpchelpers', ['$_', '$rpc', function(_, rpc) {
|
|
|
|
return {
|
|
|
|
addUris: function(uris) {
|
|
|
|
var cnt = 0;
|
2013-01-30 08:52:01 +05:00
|
|
|
var cb = function(ret) {
|
2013-01-29 22:52:30 +05:00
|
|
|
cnt--;
|
|
|
|
if (!cnt) {
|
|
|
|
// close modal
|
|
|
|
console.log('closing modal');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
_.each(uris, function(uri) {
|
|
|
|
cnt++;
|
|
|
|
// passing true to batch all the addUri calls
|
2013-01-30 08:52:01 +05:00
|
|
|
rpc.once('addUri', [uri], cb, true);
|
2013-01-29 22:52:30 +05:00
|
|
|
});
|
|
|
|
|
|
|
|
// now dispatch all addUri syscalls
|
|
|
|
rpc.forceUpdate();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}]);
|