scottohara/loot

View on GitHub
src/payees/controllers/delete.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import type { Payee } from "~/payees/types";
import type PayeeModel from "~/payees/models/payee";

export default class PayeeDeleteController {
    public errorMessage: string | null = null;

    public constructor(
        private readonly $uibModalInstance: angular.ui.bootstrap.IModalInstanceService,
        private readonly payeeModel: PayeeModel,
        public readonly payee: Payee,
    ) {}

    // Delete and close the modal
    public deletePayee(): void {
        this.errorMessage = null;
        this.payeeModel.destroy(this.payee).then(
            (): void => this.$uibModalInstance.close(),
            (error: angular.IHttpResponse<string>): string =>
                (this.errorMessage = error.data),
        );
    }

    // Dismiss the modal without deleting
    public cancel(): void {
        this.$uibModalInstance.dismiss();
    }
}

PayeeDeleteController.$inject = ["$uibModalInstance", "payeeModel", "payee"];