import { Component, EventEmitter, Output, inject } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormBuilder, FormGroup, ReactiveFormsModule, Validators } from '@angular/forms'; import { AuthService } from '../../services/auth.service'; import { AuthDialogService } from '../../services/auth-dialog.service'; @Component({ selector: 'app-login-dialog', standalone: true, imports: [CommonModule, ReactiveFormsModule], templateUrl: './login-dialog.component.html', styleUrl: './login-dialog.component.css' }) export class LoginDialogComponent { @Output() onClose = new EventEmitter(); @Output() onSuccess = new EventEmitter(); private readonly authService = inject(AuthService); private readonly authDialogService = inject(AuthDialogService); private readonly formBuilder = inject(FormBuilder); loginForm: FormGroup; errorMessage: string | null = null; isLoading = false; constructor() { this.loginForm = this.formBuilder.group({ username: ['', [Validators.required, Validators.minLength(3)]], password: ['', [Validators.required, Validators.minLength(6)]] }); } onSubmit(): void { if (this.loginForm.invalid) { this.errorMessage = 'Please fill in all fields correctly'; return; } this.isLoading = true; this.errorMessage = null; const { username, password } = this.loginForm.value; this.authService.login(username, password).subscribe({ next: () => { this.isLoading = false; this.onSuccess.emit(); }, error: (err) => { this.isLoading = false; this.errorMessage = err.error?.message || 'Login failed. Please try again.'; } }); } closeDialog(): void { this.onClose.emit(); } openRegister(): void { this.authDialogService.openRegister(); } }