{"version":3,"file":"formatter.Db47aawu.js","sources":["../../../../../../src/lib/utils/formatter.ts"],"sourcesContent":["/**\n * Formatter for the website\n */\nimport { stripHtml } from \"@24hbs/utils\";\nimport * as crypto from \"crypto-js\";\n\nexport const isValidDate = (date: Date | string | number | null) => {\n if (date instanceof Date && isFinite(date.getTime())) {\n return true;\n }\n if (date !== null) {\n let dateObj: Date | null = null;\n try {\n if (typeof date === 'string') {\n dateObj = new Date(Date.parse(date));\n }\n else\n if (typeof date === 'number') {\n dateObj = new Date(date);\n }\n else {\n return false;\n }\n } catch (e) {\n return false;\n }\n if (dateObj !== null && dateObj instanceof Date && isFinite(dateObj.getTime())) {\n return true;\n }\n }\n\n return false;\n\n}\n\nexport const dateNumberFormat = (dateObject: Date): string => {\n if (!dateObject) {\n dateObject = new Date();\n }\n let format = new Intl.DateTimeFormat(\"it-IT\", {\n day: '2-digit',\n month: '2-digit',\n year: 'numeric'\n });\n\n return format.format(dateObject);\n}\n\nexport const dateShortMonthFormat = (date: Date | string): string => {\n let dateObject = new Date();\n if (typeof date === 'string' || date instanceof String) {\n dateObject = new Date();//Date.parse(date));\n }\n else\n\n if (isValidDate(date)) {\n dateObject = date;\n }\n\n let format = new Intl.DateTimeFormat(\"it-IT\", {\n day: '2-digit',\n month: 'short',\n year: 'numeric'\n });\n\n return format.format(dateObject);\n}\n\nexport const dateFullMonthFormat = (date: Date | string): string => {\n let dateObject = new Date();\n if (typeof date === 'string' || date instanceof String) {\n dateObject = new Date(date);//Date.parse(date));\n }\n else\n\n if (isValidDate(date)) {\n dateObject = date;\n }\n\n let format = new Intl.DateTimeFormat(\"it-IT\", {\n day: '2-digit',\n month: 'long',\n year: 'numeric'\n });\n\n return format.format(dateObject);\n}\n\nexport const dayOfTheWeek = (dateObject: Date): string => {\n if (!dateObject) {\n dateObject = new Date();\n }\n\n let format = new Intl.DateTimeFormat(\"it-IT\", {\n weekday: 'short'\n });\n\n return format.format(dateObject);\n}\n\nexport const priceFormatter = (priceValue: number): string => {\n return new Intl.NumberFormat('it-IT', {\n style: \"currency\",\n maximumFractionDigits: 0,\n minimumFractionDigits: 0,\n currency: \"EUR\",\n }).format(priceValue);\n}\n\nexport const cookiesFormatter = (value: string, formatAlias: string): string => {\n let formatted = value + '_' + formatAlias;\n return formatted;\n}\n\nexport const humanize = (date: Date | string): string => {\n let dateObject = new Date();\n if (typeof date === 'string' || date instanceof String) {\n dateObject = new Date();\n }\n else if (isValidDate(date)) {\n dateObject = date;\n }\n\n let format = new Intl.DateTimeFormat(\"it-IT\", {\n day: '2-digit',\n month: 'long',\n year: 'numeric'\n });\n\n return format.format(dateObject);\n}\n\nexport const textEllipsis = (str: string, maxLength: number, side = \"end\", ellipsis = \"...\"): string => {\n if (str.length > maxLength) {\n switch (side) {\n case \"start\":\n return ellipsis + str.slice(-(maxLength - ellipsis.length));\n case \"end\":\n default:\n return str.slice(0, maxLength - ellipsis.length) + ellipsis;\n }\n }\n return str;\n}\n\nexport const removeHTML = (htmlString: string): string => {\n return htmlString.replace(/<[^>]+>/g, '');\n}\n\n\nexport const textEllipsisWithHTML = (\n str: string,\n maxLength: number,\n side = \"end\",\n ellipsis = \"...\"\n): string => {\n if (str.length > maxLength) {\n const strArr = str.replace(/>/g, '> ').replace(/ 0) {\n if (word.startsWith('<')) {\n if (!word.includes('/')) {\n // Tag di apertura\n const tagName = word.match(/<([a-zA-Z]+)/);\n if (tagName) {\n openTags.push(tagName[1]);\n }\n } else {\n // Tag di chiusura\n const closingTagName = word.match(/<\\/([a-zA-Z]+)/);\n if (closingTagName) {\n const index = openTags.lastIndexOf(closingTagName[1]);\n if (index !== -1) {\n openTags.splice(index, 1); // Rimuove il tag corrispondente\n }\n }\n }\n\n // Processa il tag di apertura o di chiusura\n processCut += word;\n } else {\n // Testo normale\n currentLength += word.length;\n if (currentLength <= maxLength - ellipsis.length) {\n processCut += word + ' ';\n }\n }\n }\n }\n }\n\n // Chiude tutti i tag aperti\n for (let i = openTags.length - 1; i >= 0; i--) {\n processCut += `${openTags[i]}>`;\n }\n\n switch (side) {\n case \"start\":\n return ellipsis + processCut.trim();\n case \"end\":\n default:\n return processCut.trim() + ellipsis;\n }\n }\n return str;\n};\n\nexport const cleanCourseHtml = (htmlString: string): string => {\n return stripHtml(htmlString.replace('
{\n\n // Check if input is string\n if (typeof str != \"string\")\n return false\n\n // Use type coercion to parse the _entirety_ of the string\n // (`parseFloat` alone does not do this).\n // Also ensure that the strings whitespaces fail\n return !isNaN(parseInt(str)) &&\n !isNaN(parseFloat(str))\n}\n\nexport const removeMasterCorso = (str: string, productCode: string = \"\") => {\n if (productCode === 'YZ23006000' || productCode === 'YZ24004700') {\n return str;\n }\n\n const splitStr = str.split(' ');\n const result = splitStr.filter(checkWord).join(' ').trim();\n\n function checkWord(word) {\n return !['master', 'corso', 'corsi'].includes(word.toLowerCase());\n }\n return result;\n};\n\nexport const removeMasterCorsoLaurea = (str: string, productCode: string = \"\") => {\n if (productCode === 'YZ23006000' || productCode === 'YZ24004700') {\n return str;\n }\n\n const splitStr = str.split(' ');\n const result = splitStr.filter(checkWord).join(' ').trim();\n\n function checkWord(word) {\n return !['master', 'corso', 'corsi', 'laurea'].includes(word.toLowerCase());\n }\n return result;\n};\n\nexport const appendCompanyName = (): string => {\n return '- 24ORE Business School';\n};\n\nexport const removeTrailingSlash = (str: string) => {\n if (str) {\n return str.replace(/\\/$/, '');\n }\n};\n\n/**\n * Function to generate SHA256 hash and return it as a hex-encoded string\n * @param input - The input string to hash\n * @returns - The hex-encoded SHA256 hash of the input\n */\nexport const sha256Hex = (input: string): string => {\n // Generate the SHA256 hash\n const hash = crypto.SHA256(input);\n // Convert the hash to a hex-encoded string\n return hash.toString(crypto.enc.Hex);\n}\n\nexport const formatDate = (date: string | undefined, toIso: boolean) => {\n if (date) {\n const birthday = date + '';\n\n const year = birthday.substr(0, 4);\n const month = birthday.substr(4, 2);\n const day = birthday.substr(6, 2);\n\n const formattedDate = new Date();\n formattedDate.setFullYear(parseInt(year));\n formattedDate.setMonth(parseInt(month) - 1); // 0 based...\n formattedDate.setDate(parseInt(day));\n\n return toIso\n ? formattedDate.toISOString().substring(0, 10)\n : formattedDate.toLocaleDateString('it-IT');\n }\n\n return undefined;\n};\n\n/**\n * Check if a string is an url, and if not check if has a slash at the beginning and if not add it\n * @param str - The string to check\n * @returns - The string with a slash at the beginning\n */\nexport const addLeadingSlash = (str: string): string => {\n if (str && !str.startsWith('http') && !str.startsWith('/')) {\n return `/${str}`;\n }\n return str;\n}"],"names":["isValidDate","date","dateObj","dateShortMonthFormat","dateObject","dateFullMonthFormat","priceFormatter","priceValue","humanize","textEllipsis","str","maxLength","side","ellipsis","removeHTML","htmlString","textEllipsisWithHTML","strArr","processCut","currentLength","openTags","i","word","closingTagName","index","tagName","cleanCourseHtml","stripHtml","removeMasterCorso","productCode","result","checkWord","removeMasterCorsoLaurea","appendCompanyName","sha256Hex","input","crypto.SHA256","crypto.enc","formatDate","toIso","birthday","year","month","day","formattedDate","addLeadingSlash"],"mappings":"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"}