import ngModule from '../../module'; class Controller { constructor($scope, $stateParams) { this.$ = $scope; this.$stateParams = $stateParams; this.filter = { include: [ { relation: 'worker', scope: { fields: ['userFk'], include: { relation: 'user', scope: { fields: ['nickname'] } } } }, { relation: 'state', scope: { fields: ['name'] } } ] }; } showWorkerDescriptor(event, userId) { event.preventDefault(); event.stopImmediatePropagation(); this.selectedWorker = userId; this.$.workerDescriptor.parent = event.target; this.$.workerDescriptor.show(); } } Controller.$inject = ['$scope', '$stateParams']; ngModule.component('vnTicketTrackingIndex', { template: require('./index.html'), controller: Controller });