{ "version": 3, "sources": ["../../../Vettvangur.Heilsuvera/src/scripts/components/Sykurmagn/utility/cookies.ts", "../../../Vettvangur.Heilsuvera/src/scripts/components/Sykurmagn/comparison.ts"], "sourcesContent": ["// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nexport const setCookie = (name: string, value: string, days?: number) => {\n\tif (typeof document === \"undefined\") return;\n\n\tlet expires = \"\";\n\n\tif (days) {\n\t\tconst date = new Date();\n\t\tdate.setTime(date.getTime() + days * 24 * 60 * 60 * 1000);\n\t\texpires = `; expires=${date.toUTCString()}`;\n\t}\n\n\tdocument.cookie = `${name}=${value || \"\"}${expires}; path=/`;\n};\n\nexport const getCookie = (name: string): string => {\n\tif (typeof document === \"undefined\") return null;\n\n\tconst nameEQ = `${name}=`;\n\tconst ca = document.cookie.split(\";\");\n\tlet cookie = \"\";\n\n\tca.forEach((c) => {\n\t\twhile (c.charAt(0) === \" \") c = c.substring(1, c.length);\n\n\t\tif (c.indexOf(nameEQ) != 0) {\n\t\t\treturn null;\n\t\t}\n\t\tcookie = c.substring(nameEQ.length, c.length);\n\t\treturn cookie;\n\t});\n\n\treturn cookie;\n};\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nexport const eraseCookie = (name: string) => {\n\tif (typeof document === \"undefined\") return;\n\n\tdocument.cookie = `${name}=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;`;\n};\n", "import { eraseCookie, getCookie, setCookie } from \"./utility/cookies\";\nimport { gsap } from \"gsap/all\";\n\nconst comparison = {\n\tcontent: document.querySelector(\".content\"),\n\taddButtons: document.querySelectorAll(\".product__add-button\"),\n\taddedToComparisonBox: document.querySelectorAll(\".product\"),\n\tbuttonCount: document.querySelectorAll(\".button__count\"),\n\tproducts: document.querySelectorAll(\".product\"),\n\tclearAllButton: document.querySelectorAll(\n\t\t\".clear-comparison-button\",\n\t),\n\tlist: \"\",\n\n\tinit: (): void => {\n\t\tcomparison.compare();\n\t\tcomparison.updateView();\n\t\tcomparison.clearAllButton.forEach((button: HTMLButtonElement) => {\n\t\t\tbutton.addEventListener(\"click\", () => comparison.clearComparison());\n\t\t});\n\t},\n\n\tclearComparison: (): void => {\n\t\tconst sessionStorageId = \"_compareList\";\n\n\t\tcomparison.products?.forEach((product: HTMLElement) => {\n\t\t\tproduct.classList.remove(\"product--inComparison\");\n\t\t});\n\n\t\tif (getCookie(sessionStorageId)) {\n\t\t\teraseCookie(sessionStorageId);\n\t\t\tcomparison.list = \"\";\n\t\t}\n\n\t\tif (comparison.buttonCount !== null) {\n\t\t\tcomparison.buttonCount?.forEach((product: HTMLElement) => {\n\t\t\t\tproduct.innerHTML = \"0\";\n\t\t\t});\n\t\t}\n\n\t\tconst contentEl = comparison.content as HTMLElement;\n\t\tconst url = contentEl.dataset.url;\n\t\twindow.location.replace(url);\n\t},\n\n\tisAdded: (id: string): string => {\n\t\tconst list = comparison.list.replace(/,/g, \".\").split(\".\");\n\t\treturn list.find((item) => item === id);\n\t},\n\n\tarrayRemove: (id: string): string => {\n\t\tconst list = comparison.list.split(\".\");\n\t\treturn list\n\t\t\t.filter((item) => item !== id)\n\t\t\t.toString()\n\t\t\t.replace(/,/g, \".\");\n\t},\n\n\tupdateView: (): void => {\n\t\tcomparison.products?.forEach((product: HTMLElement) => {\n\t\t\tif (comparison.isAdded(product.dataset.id.toString())) {\n\t\t\t\tproduct.classList.add(\"product--inComparison\");\n\t\t\t} else {\n\t\t\t\tproduct.classList.remove(\"product--inComparison\");\n\t\t\t}\n\t\t});\n\n\t\tif (comparison.list.includes(\",\"))\n\t\t\tcomparison.list = comparison.list.replace(/,/g, \".\");\n\n\t\tif (comparison.buttonCount !== null) {\n\t\t\tif (comparison.list.length == 0) {\n\t\t\t\tcomparison.buttonCount?.forEach((product: HTMLElement) => {\n\t\t\t\t\tproduct.innerHTML = \"0\";\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tcomparison.buttonCount?.forEach((product: HTMLElement) => {\n\t\t\t\t\tproduct.innerHTML = comparison.list.split(\".\").length.toString();\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t},\n\n\tcompare: (): void => {\n\t\tconst sessionStorageId = \"_compareList\";\n\n\t\tif (getCookie(sessionStorageId)) {\n\t\t\tconst cookie = getCookie(sessionStorageId).split(\".\");\n\t\t\tcomparison.list = cookie.toString();\n\t\t}\n\n\t\tcomparison.addButtons?.forEach((button: HTMLElement) => {\n\t\t\tbutton.addEventListener(\"click\", (event: MouseEvent | TouchEvent) => {\n\t\t\t\tconst id = button.dataset.id;\n\n\t\t\t\tlet productMatchingBox;\n\t\t\t\tcomparison.addedToComparisonBox.forEach((box) => {\n\t\t\t\t\tif (id == box.dataset.id) {\n\t\t\t\t\t\tproductMatchingBox = box;\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tconst comparisonButton = document.querySelector(\n\t\t\t\t\t\".button--comparison--header\",\n\t\t\t\t);\n\t\t\t\tconst comparisonButtonTabs = document.querySelector(\n\t\t\t\t\t\".button--comparison--tabs\",\n\t\t\t\t);\n\t\t\t\tif (!comparison.isAdded(id)) {\n\t\t\t\t\tif (comparison.list.length == 0) {\n\t\t\t\t\t\tcomparison.list = id.toString();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tcomparison.list = comparison.list + \".\" + id.toString();\n\t\t\t\t\t}\n\n\t\t\t\t\tgsap.to(productMatchingBox, {\n\t\t\t\t\t\tduration: 0.6,\n\t\t\t\t\t\tease: \"power3.inOut\",\n\t\t\t\t\t\topacity: 1,\n\t\t\t\t\t});\n\t\t\t\t\tif (comparison.list.split(\".\").length == 1) {\n\t\t\t\t\t\tif (comparisonButton)\n\t\t\t\t\t\t\tcomparisonButton.classList.remove(\"button--rounded--disabled\");\n\t\t\t\t\t\tif (comparisonButtonTabs)\n\t\t\t\t\t\t\tcomparisonButtonTabs.classList.remove(\n\t\t\t\t\t\t\t\t\"button--rounded--disabled\",\n\t\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif (window.location.pathname.includes(\"samanburd\")) {\n\t\t\t\t\t\tgsap.to(productMatchingBox, {\n\t\t\t\t\t\t\tdelay: 0.9,\n\t\t\t\t\t\t\tduration: 0.6,\n\t\t\t\t\t\t\tease: \"power3.inOut\",\n\t\t\t\t\t\t\tdisplay: \"none\",\n\t\t\t\t\t\t\topacity: 0,\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t\tcomparison.list = comparison.arrayRemove(id);\n\t\t\t\t}\n\n\t\t\t\tif (getCookie(sessionStorageId)) {\n\t\t\t\t\teraseCookie(sessionStorageId);\n\t\t\t\t}\n\n\t\t\t\tsetCookie(sessionStorageId, comparison.list.toString(), 1);\n\n\t\t\t\tif (comparison.list.length == 0) {\n\t\t\t\t\tevent.preventDefault();\n\n\t\t\t\t\tconst contentEl = comparison.content as HTMLElement;\n\t\t\t\t\tconst url = contentEl.dataset.url;\n\n\t\t\t\t\tif (window.location.pathname.includes(\"samanburd\")) {\n\t\t\t\t\t\tgsap.to(document.body, {\n\t\t\t\t\t\t\tdelay: 0.234,\n\t\t\t\t\t\t\tduration: 0.456,\n\t\t\t\t\t\t\tease: \"power3.inOut\",\n\t\t\t\t\t\t\topacity: 0,\n\t\t\t\t\t\t\tonComplete: () => {\n\t\t\t\t\t\t\t\twindow.location.replace(url);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif (comparisonButton)\n\t\t\t\t\t\t\tcomparisonButton.classList.add(\"button--rounded--disabled\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcomparison.updateView();\n\t\t\t});\n\t\t});\n\t},\n};\n\nexport default comparison;\n"], "mappings": "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", "names": ["setCookie", "name", "value", "days", "expires", "date", "getCookie", "nameEQ", "ca", "cookie", "c", "eraseCookie", "comparison", "button", "_a", "_b", "sessionStorageId", "product", "getCookie", "eraseCookie", "url", "id", "item", "_c", "cookie", "event", "productMatchingBox", "box", "comparisonButton", "comparisonButtonTabs", "gsapWithCSS", "setCookie", "comparison_default"] }