{"version":3,"file":"job-listing-DI3S5w-6.js","sources":["../../src/scripts/modules/job-listing.ts"],"sourcesContent":["import { Component } from '@verndale/core';\nimport { ExtendedWindowType } from '../helpers/global';\n\nclass JobListing extends Component {\n private category = '';\n private job_type = '';\n private profession = '';\n private specialty = '';\n private location = '';\n private observer: MutationObserver | null = null;\n\n setupDefaults() {\n this.dom = {\n nursingSector: document.querySelector('#nursing_sector'),\n heading: document.querySelector('.v-heading'),\n search: document.querySelector('.job-heading_button'),\n jobWrapper: document.querySelector('.job_card-wrapper')\n };\n\n this.getUrlParams();\n if (this.job_type === 'local') {\n (this.dom.local as HTMLElement)?.click();\n (this.dom.search as HTMLElement)?.click();\n }\n\n this.updateHeading(false);\n this.updateMeta((this.dom.nursingSector as HTMLElement)?.classList.contains('is-active'));\n this.updateCanonical();\n }\n\n constructor(el: HTMLElement) {\n super(el);\n this.observer = new MutationObserver(this.updateParentJob.bind(this));\n\n this.observer?.observe(this.dom.jobWrapper as HTMLElement, {\n attributes: false,\n childList: true,\n subtree: true\n });\n }\n\n addListeners() {\n (this.dom.search as HTMLElement).addEventListener('click', () => {\n this.observer?.disconnect();\n window.requestAnimationFrame(() => {\n this.updateHeading();\n });\n });\n }\n\n getUrlParams() {\n const urlParams = new URLSearchParams(window.location.search);\n\n this.category = urlParams.get('category')?.trim() || '';\n this.job_type = urlParams.get('job_type')?.trim() || '';\n this.profession = urlParams.get('profession')?.trim() || '';\n this.specialty = urlParams.get('specialty')?.trim() || '';\n this.location = urlParams.get('location')?.trim()?.replace('-', ', ') || '';\n }\n\n updateHeading(timeout = true) {\n this.getUrlParams();\n const heading = (window as ExtendedWindowType).heading;\n if (!heading || !this.dom.heading) return;\n (this.dom.heading as HTMLElement).style.setProperty('opacity', '0');\n const transition = timeout ? 'opacity 0.1s ease-in-out' : 'opacity 30ms ease-in-out';\n (this.dom.heading as HTMLElement).style.setProperty('transition', transition);\n\n setTimeout(\n () => {\n this.getUrlParams();\n if (this.job_type || this.specialty || this.profession || this.location) {\n (this.dom.heading as HTMLElement).textContent = heading\n .toLowerCase()\n .replaceAll('{{category}}', this.category)\n .replaceAll('{{job_type}}', this.job_type)\n .replaceAll('{{profession}}', this.profession)\n .replaceAll('{{specialty}}', this.specialty)\n .replaceAll('in {{location}}', this.location ? `in ${this.location}` : this.location)\n .trim()\n .toUpperCase();\n } else {\n (this.dom.heading as HTMLElement).textContent = (\n window as ExtendedWindowType\n ).noQueries.title;\n }\n setTimeout(\n () => {\n (this.dom.heading as HTMLElement).style.setProperty('opacity', '1');\n },\n timeout ? 100 : 0\n );\n },\n timeout ? 100 : 0\n );\n }\n\n updateMeta(nurse: boolean) {\n const title = document.querySelector('title');\n const meta = document.querySelector('meta[name=\"description\"]');\n if (title === null || meta === null) return;\n if (!this.job_type && !this.profession && !this.specialty && !this.location) {\n (title as HTMLElement).textContent = (window as ExtendedWindowType).noQueries.heading;\n (meta as HTMLMetaElement).setAttribute(\n 'content',\n (window as ExtendedWindowType).noQueries.description\n );\n return;\n }\n\n if (nurse) {\n const heading = (window as ExtendedWindowType).nurse.heading;\n const description = (window as ExtendedWindowType).nurse.description;\n\n (title as HTMLElement).textContent = heading\n .replaceAll('{{category}}', this.category)\n .replaceAll('{{job_type}}', this.job_type)\n .replaceAll('{{profession}}', this.profession)\n .replaceAll('{{specialty}}', this.specialty)\n .replaceAll('{{location}}', this.location.replace('-', ', '))\n .trim();\n (meta as HTMLMetaElement).setAttribute(\n 'content',\n description\n .replaceAll('{{category}}', this.category)\n .replaceAll('{{job_type}}', this.job_type)\n .replaceAll('{{profession}}', this.profession)\n .replaceAll('{{specialty}}', this.specialty)\n .replaceAll('{{location}}', this.location.replace('-', ', '))\n .trim()\n );\n } else {\n const heading = (window as ExtendedWindowType).allied.heading;\n const description = (window as ExtendedWindowType).allied.description;\n\n (title as HTMLElement).textContent = heading\n .replaceAll('{{category}}', this.category)\n .replaceAll('{{job_type}}', this.job_type)\n .replaceAll('{{profession}}', this.profession)\n .replaceAll('{{specialty}}', this.specialty)\n .replaceAll('{{location}}', this.location.replace('-', ', '))\n .trim();\n (meta as HTMLMetaElement).setAttribute(\n 'content',\n description\n .replaceAll('{{category}}', this.category)\n .replaceAll('{{job_type}}', this.job_type)\n .replaceAll('{{profession}}', this.profession)\n .replaceAll('{{specialty}}', this.specialty)\n .replaceAll('{{location}}', this.location.replace('-', ', '))\n .trim()\n );\n }\n }\n\n updateCanonical() {\n const canonical = document.querySelector('link[rel=\"canonical\"]');\n if (canonical) {\n canonical.setAttribute('href', window.location.href);\n }\n }\n\n cleanForJson(string: string) {\n return string\n .replaceAll('\"', '')\n .replaceAll(\"'\", '')\n .replaceAll(',', '&')\n .replaceAll('\\\\', '')\n .replaceAll('\\n', ' ')\n .replaceAll('\\r', ' ')\n .replaceAll('\\t', ' ')\n .trim();\n }\n\n updateParentJob() {\n const jobs = (this.dom.jobWrapper as HTMLElement)?.querySelectorAll('.job_card');\n\n if (jobs.length > 1) {\n const jobData = {\n '@context': 'https://schema.org/',\n '@type': 'JobPosting',\n hiringOrganization: 'Please Contact for Facility Info',\n title: this.cleanForJson(jobs[1].querySelector('.job_card-name')?.textContent || ''),\n industry: 'Healthcare',\n employmentType: 'Contract',\n workHours: this.cleanForJson(jobs[1].querySelector('.duration')?.textContent || ''),\n datePosted: this.cleanForJson(jobs[1].querySelector('.posting-date')?.textContent || ''),\n jobLocation: {\n '@type': 'Place',\n address: {\n '@type': 'PostalAddress',\n addressLocality: this.cleanForJson(\n jobs[1].querySelector('.city-state')?.textContent?.split(',')?.[0] || ''\n ),\n addressRegion: this.cleanForJson(\n jobs[1].querySelector('.city-state')?.textContent?.split(',')?.[1].trim() || ''\n ),\n addressCountry: 'USA'\n }\n },\n baseSalary: {\n '@type': 'MonetaryAmount',\n currency: 'USD',\n value: {\n '@type': 'QuantitativeValue',\n value: this.cleanForJson(jobs[1].querySelector('.payrate')?.textContent || ''),\n unitText: 'WEEK'\n }\n }\n };\n\n const script = document.createElement('script');\n script.type = 'application/ld+json';\n script.textContent = JSON.stringify(jobData);\n document.head.appendChild(script);\n\n if (jobs && jobs.length > 2) {\n this.updateParentListing(jobs);\n }\n\n this.observer?.disconnect();\n }\n }\n\n updateParentListing(jobs: NodeListOf) {\n const jobListing: {\n '@context': string;\n '@type': string;\n itemListElement: {\n '@type': string;\n position: number;\n name: string;\n url: string;\n }[];\n } = {\n '@context': 'https://schema.org/',\n '@type': 'ItemList',\n itemListElement: []\n };\n jobs.forEach((job, index) => {\n if (index === 0) return;\n const jobObj = {\n '@type': 'ListItem',\n position: index,\n name: this.cleanForJson(job.querySelector('.job_card-name')?.textContent || ''),\n url: this.cleanForJson(\n (job.querySelector('.signup-popup') as HTMLAnchorElement)?.href || ''\n )\n };\n\n jobListing.itemListElement.push(jobObj);\n });\n\n const script = document.createElement('script');\n script.type = 'application/ld+json';\n script.textContent = JSON.stringify(jobListing);\n document.head.appendChild(script);\n }\n}\n\nexport default JobListing;\n"],"names":["JobListing","Component","el","__publicField","_a","_b","_c","urlParams","_d","_f","_e","timeout","heading","transition","nurse","title","meta","description","canonical","string","jobs","jobData","_g","_j","_i","_h","_k","script","_l","jobListing","job","index","jobObj"],"mappings":"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"}