accountant-ui/src/scheduler/scheduleRow.component.ts

116 lines
3.0 KiB
TypeScript
Raw Normal View History

2017-07-25 08:55:34 +02:00
// vim: set tw=80 ts=2 sw=2 sts=2 :
import { CurrencyPipe } from '@angular/common';
2017-07-25 16:14:48 +02:00
import { Component, Inject, Input, Output, EventEmitter } from '@angular/core';
2017-07-25 08:55:34 +02:00
import { Logger } from '@nsalaun/ng-logger';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
2017-07-25 08:55:34 +02:00
import { ToastrService } from 'ngx-toastr';
import { ScheduleDeleteModalComponent } from './scheduleDeleteModal.component';
2017-07-25 17:18:04 +02:00
import { ScheduleEditModalComponent } from './scheduleEditModal.component';
2017-07-25 08:55:34 +02:00
import { ScheduleService } from './schedule.service';
import { Schedule } from './schedule';
@Component({
selector: 'tr[schedule-row]',
host: {
"[id]": "schedule.id",
},
template: `
2017-07-25 22:11:16 +02:00
<td>{{ schedule.start_date | date: "yyyy-MM-dd" }}</td>
2017-07-25 08:55:34 +02:00
<td>{{ schedule.stop_date | date: "yyyy-MM-dd" }}</td>
<td>{{ schedule.day }}</td>
<td>{{ schedule.frequency }}</td>
<td>{{ schedule.label }}</td>
<td>{{ schedule.value | currency:"EUR":true }}</td>
<td>{{ schedule.category }}</td>
<td>
2017-07-25 23:29:16 +02:00
<div class="btn-group btn-group-sm">
2017-07-25 08:55:34 +02:00
<!-- Edit operation. -->
2017-07-25 23:29:16 +02:00
<button type="button" class="btn btn-success"
2017-07-25 08:55:34 +02:00
(click)="modify()" title="edit">
<span class="fa fa-pencil-square-o"></span>
</button>
<!-- Remove operation. -->
2017-07-25 23:29:16 +02:00
<button type="button" class="btn btn-danger"
2017-07-25 08:55:34 +02:00
[hidden]="!schedule.id"
(click)="confirmDelete()"
title="remove">
<span class="fa fa-trash"></span>
</button>
</div>
</td>
`
})
export class ScheduleRowComponent {
@Input('schedule-row') schedule: Schedule;
@Output() needsReload: EventEmitter<void> = new EventEmitter<void>();
constructor(
private scheduleService: ScheduleService,
private logger: Logger,
private toastrService: ToastrService,
private ngbModal: NgbModal
2017-07-25 08:55:34 +02:00
) {}
save(schedule: Schedule) {
2017-07-25 17:26:09 +02:00
return this.scheduleService.update(schedule).subscribe((schedule: Schedule) => {
2017-07-25 08:55:34 +02:00
this.toastrService.success('Schedule #' + schedule.id + ' saved.');
this.needsReload.emit();
}, result => {
this.toastrService.error(
'Error while saving schedule: ' + result.message
);
});
}
confirmDelete() {
2017-07-30 16:44:58 +02:00
const modal = this.ngbModal.open(ScheduleDeleteModalComponent);
modal.componentInstance.schedule = this.schedule;
modal.result.then((schedule: Schedule) => {
this.delete(schedule);
}, (reason) => function(reason) {
2017-07-25 08:55:34 +02:00
});
}
delete(schedule: Schedule) {
var id = schedule.id;
return this.scheduleService.delete(schedule).subscribe(() => {
this.toastrService.success('Schedule #' + id + ' deleted.');
this.needsReload.emit();
}, result => {
this.toastrService.error(
'An error occurred while trying to delete schedule #' + id + ':<br />'
+ result.message
);
});
}
modify() {
2017-08-11 22:24:09 +02:00
const modal = this.ngbModal.open(ScheduleEditModalComponent, {
size: 'lg'
});
modal.componentInstance.schedule = this.schedule;
modal.result.then((schedule: Schedule) => {
this.save(schedule);
}, (reason) => function(reason) {
2017-07-25 08:55:34 +02:00
});
}
}