{"version":3,"file":"useTimedComponent-D-bpu1AN.js","sources":["../../../node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isBefore.js","../../../packs/frontend/composables/useTimedComponent.ts"],"sourcesContent":["import { toDate } from \"./toDate.js\";\n\n/**\n * @name isBefore\n * @category Common Helpers\n * @summary Is the first date before the second one?\n *\n * @description\n * Is the first date before the second one?\n *\n * @param date - The date that should be before the other one to return true\n * @param dateToCompare - The date to compare with\n *\n * @returns The first date is before the second date\n *\n * @example\n * // Is 10 July 1989 before 11 February 1987?\n * const result = isBefore(new Date(1989, 6, 10), new Date(1987, 1, 11))\n * //=> false\n */\nexport function isBefore(date, dateToCompare) {\n return +toDate(date) < +toDate(dateToCompare);\n}\n\n// Fallback for modularized imports:\nexport default isBefore;\n","import { isAfter, isBefore } from \"date-fns\";\n\nexport function useTimedComponent(saleStart?: Date, saleEnd?: Date) {\n const currentDate = ref(new Date());\n\n const isActive = computed(() => {\n if (!saleStart || !saleEnd) return false;\n return (\n isAfter(currentDate.value, saleStart) &&\n isBefore(currentDate.value, saleEnd)\n );\n });\n\n return {\n isActive,\n };\n}\n"],"names":["isBefore","date","dateToCompare","toDate","useTimedComponent","saleStart","saleEnd","currentDate","ref","computed","isAfter"],"mappings":"wIAoBO,SAASA,EAASC,EAAMC,EAAe,CAC5C,MAAO,CAACC,EAAOF,CAAI,EAAI,CAACE,EAAOD,CAAa,CAC9C,CCpBgB,SAAAE,EAAkBC,EAAkBC,EAAgB,CAClE,MAAMC,EAAcC,EAAQ,IAAA,IAAM,EAU3B,MAAA,CACL,SATeC,EAAS,IACpB,CAACJ,GAAa,CAACC,EAAgB,GAEjCI,EAAQH,EAAY,MAAOF,CAAS,GACpCL,EAASO,EAAY,MAAOD,CAAO,CAEtC,CAID,CACF","x_google_ignoreList":[0]}