{"version":3,"file":"structured-utils.CI9MZDIJ.js","sources":["../../../../../../src/lib/utils/structured-utils.ts"],"sourcesContent":["import {\n CourseModel,\n stringToSlug,\n} from '@24hbs/utils';\nimport { getURLFromContentfulAsset, handleUrlClientSide } from '$lib/utils/assets-utils';\nimport { removeHTML, dateFullMonthFormat } from '$lib/utils/formatter';\nimport type { IInitiatives, INews } from './contentful/types';\nimport { PUBLIC_BASE_URL } from '$env/static/public';\n\ntype Event = IInitiatives;\ntype Article = INews;\n\n\nconst convertToISO8601 = (duration: number, durationType: string) => {\n const mapping: { [key: string]: string } = {\n 'serate': 'D',\n 'ore': 'H',\n 'mesi': 'M',\n 'weekend': 'D', // fixed value 2\n 'anni': 'Y',\n 'giornate': 'D'\n };\n\n let iso8601Duration = 'P';\n\n if (durationType === 'weekend') {\n duration = 2;\n }\n\n const isoComponent = mapping[durationType];\n\n if (isoComponent === 'H' || isoComponent === 'M' || isoComponent === 'S') { // Time components\n iso8601Duration += 'T';\n }\n\n iso8601Duration += `${duration}${isoComponent}`;\n\n return iso8601Duration;\n}\nexport class StructureUtils {\n static getStructuredData(\n courses: CourseModel[],\n events: Event[],\n news: Article[]\n ) { }\n\n public static getArticleStructure(\n article: Article,\n withContext: boolean = false\n ) {\n return {\n ...(withContext && { '@context': 'https://schema.org' }),\n '@type': 'NewsArticle',\n datePublished: article.fields.publishedDate,\n dateModified: article.sys.updatedAt,\n author: StructureUtils.getOrganizationStructure(),\n headline: article.fields.title.slice(0, 110),\n image: [\n getURLFromContentfulAsset(article.fields.thumbnailImage),\n getURLFromContentfulAsset(article.fields.heroImage),\n ],\n };\n }\n\n public static getCourseListStructure(\n courses: CourseModel[],\n withContext: boolean = false\n ) {\n const courseList = courses.map((course, index) => {\n return {\n '@type': 'ListItem',\n position: index + 1,\n url: StructureUtils.getCourseUrl(course, true),\n };\n });\n\n return {\n ...(withContext && { '@context': 'https://schema.org' }),\n '@type': 'ItemList',\n itemListElement: courseList,\n };\n }\n\n public static getFaqStructure(\n list: { question: string; answer: string }[],\n withContext: boolean = false\n ) {\n const entryList = list.map((item) => {\n return {\n '@type': 'Question',\n name: item.question,\n acceptedAnswer: {\n '@type': 'Answer',\n text: item.answer,\n },\n };\n });\n\n return {\n ...(withContext && { '@context': 'https://schema.org' }),\n '@type': 'FAQPage',\n mainEntity: entryList,\n };\n }\n\n public static getBreadcrumbStructure(\n pages: { name: string; url: string }[],\n withContext: boolean = false\n ) {\n const breadcrumbList = pages.map((page, index) => ({\n '@type': 'ListItem',\n position: index + 1,\n name: page.name,\n item: page.url,\n }));\n\n return {\n ...(withContext && { '@context': 'https://schema.org' }),\n '@type': 'BreadcrumbList',\n itemListElement: breadcrumbList,\n };\n }\n\n public static getLogoStucture(withContext: boolean = false) {\n return {\n ...(withContext && { '@context': 'https://schema.org' }),\n '@type': 'Organization',\n logo: `${PUBLIC_BASE_URL}favicon/logo-192.png`,\n url: PUBLIC_BASE_URL,\n };\n }\n\n public static getSearchBoxStructure(withContext: boolean = false) {\n return {\n ...(withContext && { '@context': 'https://schema.org' }),\n '@type': 'WebSite',\n url: PUBLIC_BASE_URL,\n name: '24ORE Business School',\n description:\n '30 anni di eccellenza nella formazione: 500 Master in 12 settori, per trasformare passioni in successi professionali nel mondo del lavoro.',\n potentialAction: [\n {\n '@type': 'SearchAction',\n target: {\n '@type': 'EntryPoint',\n urlTemplate: `${PUBLIC_BASE_URL}esplora?q={search_term_string}`,\n },\n 'query-input': 'required name=search_term_string',\n },\n ],\n inLanguage: 'it-IT',\n };\n }\n\n public static getCourseStructure(\n course: CourseModel,\n withContext: boolean = false\n ) {\n return {\n ...(withContext && { '@context': 'https://schema.org' }),\n '@type': 'Course',\n name: course.category,\n description: StructureUtils.getCourseDescription(course),\n provider: StructureUtils.getOrganizationStructure(),\n // Are supported by google?\n image: handleUrlClientSide(course.previewUrl),\n ...(StructureUtils.getModulesStructures(course).length > 0 && { syllabusSections: StructureUtils.getModulesStructures(course) }),\n // mainEntityOfPage: StructureUtils.getCourseUrl(course, false),\n hasCourseInstance: StructureUtils.getCourseInstanceStructures(course),\n offers: StructureUtils.getOffersStructures(course)\n };\n }\n\n public static getCourseInstanceStructures(course: CourseModel) {\n const sessions = course.sessions;\n\n const courseInstances = [];\n\n if (sessions) {\n Object.keys(sessions).forEach((sessionId) => {\n const session = sessions[sessionId];\n\n const courseInstance = {\n '@type': 'CourseInstance',\n startDate: session.startDate,\n endDate: session.endDate,\n courseWorkload: convertToISO8601(session.duration, session.durationType),\n courseMode: session.location === \"Online\" ? \"Online\" : \"Blended\",\n location: \"24 ORE Business School\" + \" \" + session.location,\n instructor: session.instructors.map(instructor => ({\n \"@type\": \"Person\",\n \"name\": instructor.name + \" \" + instructor.surname\n }))\n };\n\n courseInstances.push(courseInstance);\n });\n }\n return courseInstances;\n }\n\n public static getModulesStructures(course: CourseModel) {\n const sessions = course.sessions;\n const modulesInstances = [];\n\n if (sessions) {\n Object.keys(sessions).forEach((sessionId) => {\n const session = sessions[sessionId];\n const mappedModules = session.modulesList.map(module => {\n return {\n '@type': 'Syllabus',\n 'name': module\n };\n });\n modulesInstances.push(...mappedModules);\n });\n }\n return modulesInstances;\n }\n\n public static getOffersStructures(course: CourseModel) {\n const sessions = course.sessions;\n const offers = [];\n\n if (sessions) {\n Object.keys(sessions).forEach((sessionId) => {\n const session = sessions[sessionId];\n\n const offer = {\n '@type': 'Offer',\n priceCurrency: \"EUR\",\n price: session.discountPrice ? session.discountPrice : session.price ? session.price : 0,\n category: \"Paid\",\n availability: 'InStock',\n name: session.title + \" \" + session.location + \" \" + dateFullMonthFormat(session.startDate),\n sku: session.productCode\n };\n\n offers.push(offer);\n });\n }\n return offers;\n }\n\n public static createScriptTag(innerContent: string) {\n return `