{ "version": 3, "sources": ["src/app/services/utils.service.ts", "src/app/components/dashboard/job-seeker-dashboard/preview-resume/preview-resume.component.ts", "src/app/components/dashboard/job-seeker-dashboard/preview-resume/preview-resume.component.html", "src/app/services/job.service.ts", "src/app/services/resume.service.ts", "src/app/services/employer-dashboard.service.ts", "src/app/components/dashboard/job-seeker-dashboard/add-edit-resume/add-edit-resume.component.ts", "src/app/components/dashboard/job-seeker-dashboard/add-edit-resume/add-edit-resume.component.html", "src/app/shared/time-ago.pipe.ts", "src/app/services/job-update.service.ts", "src/app/utils/date-utils.service.ts", "src/app/components/apply-job/apply-job.component.ts", "src/app/components/apply-job/apply-job.component.html", "src/app/components/dashboard/job-seeker-dashboard/view-applied-jobs/job-application-removal/job-application-removal.component.ts", "src/app/components/dashboard/job-seeker-dashboard/view-applied-jobs/job-application-removal/job-application-removal.component.html", "src/app/components/job-details-modal/job-details-modal.component.ts", "src/app/components/job-details-modal/job-details-modal.component.html"], "sourcesContent": ["import { Injectable } from '@angular/core';\r\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\r\nimport { environment } from 'src/environments/environment';\r\n@Injectable({\r\n providedIn: 'root',\r\n})\r\nexport class UtilsService {\r\n private umbracoBaseUrl = environment.umbracoBaseUri;\r\n public constructor(private sanitizer: DomSanitizer) {}\r\n\r\n formatDateWithShortWeekday(dateString: string): string {\r\n const date = new Date(dateString);\r\n if (isNaN(date.getTime())) {\r\n return '';\r\n }\r\n\r\n const weekdayOptions: Intl.DateTimeFormatOptions = { weekday: 'short' };\r\n const monthOptions: Intl.DateTimeFormatOptions = { month: '2-digit' };\r\n const dayOptions: Intl.DateTimeFormatOptions = { day: '2-digit' };\r\n\r\n // Get the abbreviated weekday\r\n const weekday = date.toLocaleDateString('en-GB', weekdayOptions);\r\n const month = date.toLocaleDateString('en-GB', monthOptions);\r\n const day = date.toLocaleDateString('en-GB', dayOptions);\r\n const year = date.getUTCFullYear();\r\n\r\n return `${weekday}, ${month}/${day}/${year}`;\r\n }\r\n\r\n formatDateWithLongWeekday(dateString: string): string {\r\n const date = new Date(dateString);\r\n if (isNaN(date.getTime())) {\r\n return '';\r\n }\r\n\r\n const weekdayOptions: Intl.DateTimeFormatOptions = { weekday: 'long' };\r\n const monthOptions: Intl.DateTimeFormatOptions = { month: 'long' };\r\n const dayOptions: Intl.DateTimeFormatOptions = { day: 'numeric' };\r\n\r\n // Get the full weekday name\r\n const weekday = date.toLocaleDateString('en-US', weekdayOptions);\r\n const month = date.toLocaleDateString('en-US', monthOptions);\r\n const day = date.toLocaleDateString('en-US', dayOptions);\r\n\r\n return `${weekday}, ${month} ${day}`;\r\n }\r\n\r\n formatTime(timeString: string): string {\r\n if (!timeString) return 'N/A';\r\n\r\n const parts = timeString.split('T')[1].split(':');\r\n let hours = parseInt(parts[0], 10);\r\n const minutes = parts[1];\r\n\r\n // Determine AM or PM\r\n const period = hours >= 12 ? 'PM' : 'AM';\r\n hours = hours % 12 || 12;\r\n\r\n return `${hours}:${minutes.padStart(2, '0')} ${period}`;\r\n }\r\n\r\n getEventTimeFrame(eventDate: string): string {\r\n const now = new Date();\r\n const event = new Date(eventDate);\r\n\r\n if (isNaN(event.getTime())) {\r\n return 'Invalid date';\r\n }\r\n const diffInDays = Math.ceil(\r\n (event.getTime() - now.getTime()) / (1000 * 3600 * 24)\r\n );\r\n if (diffInDays === 0) return 'Today';\r\n if (diffInDays === 1) return 'Tomorrow';\r\n return `In ${diffInDays} days`;\r\n }\r\n\r\n convertToHtml(data: any): SafeHtml {\r\n if (!data || !data.elements)\r\n return this.sanitizer.bypassSecurityTrustHtml('');\r\n const buildHtml = (element: any): string => {\r\n // Handle text nodes\r\n if (element.tag === '#text') {\r\n return element.text;\r\n }\r\n const attributes = Object.entries(element.attributes || {})\r\n .map(([key, value]) => ` ${key}=\"${value}\"`)\r\n .join('');\r\n\r\n const innerHtml = element.elements\r\n ? element.elements.map(buildHtml).join('')\r\n : '';\r\n switch (element.tag) {\r\n case 'ul':\r\n case 'ol':\r\n return `<${element.tag}${attributes}>${innerHtml}${element.tag}>`;\r\n case 'li':\r\n return `
{{ resume.summary }}
\r\n{{ resume.resumeName }}
\r\n{{ resume.jobTitle }}
\r\n{{ resume.firstName }}
\r\n{{ resume.lastName }}
\r\n{{ resume.phone }}
\r\n{{ resume.email }}
\r\n{{ resume.zipCode }}
\r\n{{ resume.excludedEmployerIds.join(\", \") }}
\r\n{{ resume.employmentType }}
\r\n{{ resume.jobCategory }}
\r\n{{ resume.desiredAnnualSalary }}
\r\n\r\n {{ resume.resume }}\r\n
\r\n{{ resume.resumeSize }} MB
\r\n\r\n {{ resume.letter }}\r\n
\r\n{{ resume.recommendationSize }} MB
\r\n