/** * @copyright 2026 NHCarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { Component, inject } from '@angular/core'; import { ToastService } from '../../services/toast.service'; @Component({ selector: 'app-toast', standalone: true, templateUrl: './toast.component.html', styleUrls: ['./toast.component.css'] }) export class ToastComponent { public toastService = inject(ToastService); getTypeLabel(type: string): string { switch (type) { case 'error': return 'Error'; case 'success': return 'Success'; case 'warning': return 'Warning'; case 'info': return 'Information'; default: return 'Notification'; } } }