datasurvey/src/main/webapp/app/entities/factura/list/factura.component.ts

52 lines
1.4 KiB
TypeScript

import { Component, OnInit } from '@angular/core';
import { HttpResponse } from '@angular/common/http';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
import { IFactura } from '../factura.model';
import { FacturaService } from '../service/factura.service';
import { FacturaDeleteDialogComponent } from '../delete/factura-delete-dialog.component';
@Component({
selector: 'jhi-factura',
templateUrl: './factura.component.html',
})
export class FacturaComponent implements OnInit {
facturas?: IFactura[];
isLoading = false;
constructor(protected facturaService: FacturaService, protected modalService: NgbModal) {}
loadAll(): void {
this.isLoading = true;
this.facturaService.query().subscribe(
(res: HttpResponse<IFactura[]>) => {
this.isLoading = false;
this.facturas = res.body ?? [];
},
() => {
this.isLoading = false;
}
);
}
ngOnInit(): void {
this.loadAll();
}
trackId(index: number, item: IFactura): number {
return item.id!;
}
delete(factura: IFactura): void {
const modalRef = this.modalService.open(FacturaDeleteDialogComponent, { size: 'lg', backdrop: 'static' });
modalRef.componentInstance.factura = factura;
// unsubscribe not needed because closed completes on modal close
modalRef.closed.subscribe(reason => {
if (reason === 'deleted') {
this.loadAll();
}
});
}
}