blob: d65194c4970025476f29e3ef1b7e4ba166403b35 [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.serviceTopology')
.directive('diagnostic', function(){
return {
restrict: 'E',
templateUrl: 'templates/diagnostic.tpl.html',
controllerAs: 'vm',
controller: function(Subscribers, ServiceRelation, $rootScope){
this.loader = true;
this.error = false;
Subscribers.query().$promise
.then((subscribers) => {
this.subscribers = subscribers;
return ServiceRelation.get();
})
.then((serviceChain) => {
this.serviceChain = serviceChain;
})
.catch(e => {
throw new Error(e);
this.error = e;
})
.finally(() => {
this.loader = false;
});
$rootScope.$on('subscriber.selected', (evt, subscriber) => {
ServiceRelation.getBySubscriber(subscriber)
.then((serviceChain) => {
this.serviceChain = serviceChain;
return Subscribers.getWithDevices({id: subscriber.id}).$promise;
})
.then((subscriber) => {
this.selectedSubscriber = subscriber;
});
});
}
}
});
})();