39 lines
888 B
JavaScript
39 lines
888 B
JavaScript
import ngModule from '../module';
|
|
import Section from 'salix/components/section';
|
|
import './style.scss';
|
|
|
|
class Controller extends Section {
|
|
set route(value) {
|
|
this._route = value;
|
|
if (value && value.id)
|
|
this.getSummary();
|
|
}
|
|
|
|
sumPackages() {
|
|
this.packagesTotal = 0;
|
|
this.summary.tickets.forEach(ticket => {
|
|
this.packagesTotal += ticket.packages;
|
|
});
|
|
}
|
|
|
|
get route() {
|
|
return this._route;
|
|
}
|
|
|
|
getSummary() {
|
|
this.$http.get(`Routes/${this.route.id}/summary`).then(response => {
|
|
this.summary = response.data;
|
|
if (response.data && response.data.tickets)
|
|
this.sumPackages();
|
|
});
|
|
}
|
|
}
|
|
|
|
ngModule.component('vnRouteSummary', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
bindings: {
|
|
route: '<'
|
|
}
|
|
});
|