From 3e6cadffbd8881fd28094e2f16828a6ed2af4032 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Tue, 1 Aug 2017 23:22:44 +0200 Subject: [PATCH] Indent. --- src/scheduler/scheduleList.component.ts | 125 ++++++++++++------------ 1 file changed, 63 insertions(+), 62 deletions(-) diff --git a/src/scheduler/scheduleList.component.ts b/src/scheduler/scheduleList.component.ts index 5778fe3..9e71cfd 100644 --- a/src/scheduler/scheduleList.component.ts +++ b/src/scheduler/scheduleList.component.ts @@ -1,3 +1,4 @@ +// vim: set tw=80 ts=2 sw=2 sts=2 : import { Component, Inject, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; @@ -12,8 +13,8 @@ import { ScheduleService } from './schedule.service'; import { Schedule } from './schedule'; @Component({ - selector: 'schedule-list', - template: ` + selector: 'schedule-list', + template: `
@@ -47,70 +48,70 @@ import { Schedule } from './schedule'; ` }) export class ScheduleListComponent implements OnInit { - accountId: number; - schedules = []; + accountId: number; + schedules = []; - constructor( - private toastrService: ToastrService, - private scheduleService: ScheduleService, - private logger: Logger, - private ngbModal: NgbModal, - private route: ActivatedRoute, - ) {} + constructor( + private toastrService: ToastrService, + private scheduleService: ScheduleService, + private logger: Logger, + private ngbModal: NgbModal, + private route: ActivatedRoute, + ) {} - $onInit() { - this.ngOnInit(); + $onInit() { + this.ngOnInit(); + } + + ngOnInit() { + this.logger.log("ngOnInit"); + this.accountId = +this.route.snapshot.paramMap.get('accountId') + // Load operations on controller initialization. + this.load(); + } + + /* + * Add a new operation at the beginning of th array. + */ + add() { + var schedule = new Schedule(); + schedule.account_id = this.accountId; + + const modal = this.ngbModal.open(ScheduleEditModalComponent); + + modal.componentInstance.schedule = schedule; + + modal.result.then((schedule: Schedule) => { + this.save(schedule); + }, (reason) => function(reason) { + }); + }; + + load() { + this.logger.log("Loading schedules for accountId", this.accountId); + if(!this.accountId) { + return; } - ngOnInit() { - this.logger.log("ngOnInit"); - this.accountId = +this.route.snapshot.paramMap.get('accountId') - // Load operations on controller initialization. - this.load(); - } + this.scheduleService.query(this.accountId) + .subscribe((schedules: Schedule[]) => { + this.logger.log("Schedules loaded.", schedules); + this.schedules = schedules; + }, (reason) => { + this.logger.log("Got error", reason); + } + ); + }; - /* - * Add a new operation at the beginning of th array. - */ - add() { - var schedule = new Schedule(); - schedule.account_id = this.accountId; + save(schedule: Schedule) { + return this.scheduleService.create(schedule).subscribe((schedule: Schedule) => { + this.toastrService.success('Schedule #' + schedule.id + ' saved.'); - const modal = this.ngbModal.open(ScheduleEditModalComponent); - - modal.componentInstance.schedule = schedule; - - modal.result.then((schedule: Schedule) => { - this.save(schedule); - }, (reason) => function(reason) { - }); - }; - - load() { - this.logger.log("Loading schedules for accountId", this.accountId); - if(!this.accountId) { - return; - } - - this.scheduleService.query(this.accountId) - .subscribe((schedules: Schedule[]) => { - this.logger.log("Schedules loaded.", schedules); - this.schedules = schedules; - }, (reason) => { - this.logger.log("Got error", reason); - } - ); - }; - - save(schedule: Schedule) { - return this.scheduleService.create(schedule).subscribe((schedule: Schedule) => { - this.toastrService.success('Schedule #' + schedule.id + ' saved.'); - - this.load(); - }, (result) => { - this.toastrService.error( - 'Error while saving schedule: ' + result.message - ); - }); - }; + this.load(); + }, (result) => { + this.toastrService.error( + 'Error while saving schedule: ' + result.message + ); + }); + }; };