/** * @copyright 2026 NHCarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { Component, inject, signal, input, output, computed } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { ReportService } from '../../services/report.service'; import { CommentReportService } from '../../services/comment-report.service'; import { ToastService } from '../../services/toast.service'; import { ReportReason } from '@library/shared-types'; @Component({ selector: 'app-report-modal', standalone: true, imports: [CommonModule, FormsModule], template: ` `, styles: [` .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 1rem; } .modal-card { background: var(--card-background, #1a1a2e); border-radius: 12px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); } .modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 2px solid rgba(155, 89, 182, 0.3); } .modal-header h2 { margin: 0; color: var(--accent-colour, #9b59b6); font-size: 1.5rem; } .close-button { background: none; border: none; font-size: 2rem; color: var(--text-colour, #e0e0e0); cursor: pointer; padding: 0; width: 2rem; height: 2rem; line-height: 1; transition: color 0.2s ease; } .close-button:hover { color: var(--accent-colour, #9b59b6); } .modal-body { padding: 1.5rem; } .report-info { margin: 0 0 1.5rem 0; color: var(--text-colour, #e0e0e0); line-height: 1.6; } .report-info strong { color: var(--accent-colour, #9b59b6); } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-colour, #e0e0e0); font-weight: 500; } .form-control { width: 100%; padding: 0.75rem; background: rgba(155, 89, 182, 0.1); border: 2px solid rgba(155, 89, 182, 0.3); border-radius: 8px; color: var(--text-colour, #e0e0e0); font-size: 1rem; font-family: inherit; transition: border-color 0.2s ease; } .form-control:focus { outline: none; border-color: var(--accent-colour, #9b59b6); } .form-control:invalid:not(:focus):not(:placeholder-shown) { border-color: var(--error-colour, #c41e3a); } textarea.form-control { resize: vertical; min-height: 120px; } select.form-control { cursor: pointer; appearance: none; background-image: url('data:image/svg+xml;charset=UTF-8,'); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1.5rem; padding-right: 2.5rem; } select.form-control option { background: #2d2d2d; color: #e0e0e0; padding: 0.5rem; } .character-count { margin-top: 0.5rem; font-size: 0.875rem; color: var(--text-muted, #a0a0a0); text-align: right; } .character-count.invalid { color: var(--error-colour, #c41e3a); } .error-text { color: var(--error-colour, #c41e3a); margin-left: 0.5rem; } .modal-footer { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid rgba(155, 89, 182, 0.3); } .button { padding: 0.75rem 1.5rem; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; } .button:disabled { opacity: 0.5; cursor: not-allowed; } .button-secondary { background: rgba(155, 89, 182, 0.2); color: var(--text-colour, #e0e0e0); border: 2px solid rgba(155, 89, 182, 0.3); } .button-secondary:hover:not(:disabled) { background: rgba(155, 89, 182, 0.3); border-color: var(--accent-colour, #9b59b6); } .button-danger { background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%); color: white; } .button-danger:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4); } `] }) export class ReportModalComponent { private reportService = inject(ReportService); private commentReportService = inject(CommentReportService); private toastService = inject(ToastService); // Inputs reportType = input.required<'profile' | 'comment'>(); targetId = input.required(); // userId for profile, commentId for comment reportedUsername = input(''); // Only used for profile reports // Outputs closeModal = output(); // State selectedReason = signal(''); details = signal(''); submitting = signal(false); // Computed values modalTitle = computed(() => { return this.reportType() === 'profile' ? 'Report Profile' : 'Report Comment'; }); reportInfo = computed(() => { if (this.reportType() === 'profile') { return `You are reporting ${this.reportedUsername()}. Please provide a reason and details for this report.`; } else { return 'You are reporting this comment. Please provide a reason and details for this report.'; } }); // Expose enum for template ReportReason = ReportReason; /** * Check if details are invalid (less than 10 characters or more than 1000). */ detailsInvalid(): boolean { const length = this.details().length; return (length > 0 && length < 10) || length > 1000; } /** * Handle overlay click to close modal. */ onOverlayClick(event: MouseEvent): void { if ((event.target as HTMLElement).classList.contains('modal-overlay')) { this.onClose(); } } /** * Close the modal. */ onClose(): void { this.closeModal.emit(); } /** * Submit the report. */ onSubmit(): void { // Validate form if (!this.selectedReason() || this.detailsInvalid()) { this.toastService.error('Please fill in all required fields correctly'); return; } this.submitting.set(true); if (this.reportType() === 'profile') { this.reportService.createReport( this.targetId(), this.selectedReason(), this.details() ).subscribe(this.getSubscribeHandlers()); } else { this.commentReportService.createReport({ reportedCommentId: this.targetId(), reason: this.selectedReason() as ReportReason, details: this.details(), }).subscribe(this.getSubscribeHandlers()); } } private getSubscribeHandlers() { return { next: () => { this.toastService.success('Report submitted successfully'); this.onClose(); }, error: (err: { status?: number; error?: { error?: string } }) => { console.error('Error submitting report:', err); // Check if it's a conflict error (duplicate pending report or rate limit) if (err.status === 409 && err.error?.error) { this.toastService.error(err.error.error); } else { this.toastService.error('Failed to submit report. Please try again.'); } this.submitting.set(false); } }; } }