{"version":3,"file":"js/scripts_react_mls-vertical-scoreboard_utils_js.js?_t=ce200fb6a89e6b381085","mappings":";;;;;;;;;;;;;;;;;;AAAA;AAKA;AAEA;AAEA;AACA;AAEA;AACA;AAAA;AAGA;AACA;AACA;AAAA;AACA;AACA;AAGA;AACA;AAEA;AACA;AAAA;AAEA;AAEA;AACA;AAGA;AAGA;AAEA;AAEA;AAGA;AAAA;AACA;AACA;AAEA;;;;;;;;;;;;;;;;;;;;;;ACjDA;AACA;AACA;AAEA;AACA;AAAA;AAEA;AACA;AACA;AACA;AAAA;AAGA;AAAA;AACA;AACA;AAGA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AAAA;AACA;AAGA;AACA;AAAA;AAGA;AACA;AAAA;AAGA;AACA;AAEA;AACA;AACA;AAAA;AAEA;AAEA;AACA;AAEA;AACA;AAAA;AAEA;AAAA;AAEA;AAEA;AACA;AAEA;AACA;AAEA;AACA;AAAA;AACA;AAGA;AACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC7DA;AAGA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AAAA;AAGA;AAAA;AACA;AACA;AAEA;AAEA;AACA;AACA;AAAA;AAGA;AAAA;AACA;AAEA;AAAA;AACA;AAEA;AAAA;AACA;AAGA;AACA;AAEA;AAAA;AACA;AACA;AACA;AAGA;AACA;AAAA;AACA;AACA;AAEA;AAAA;AACA;AACA;AACA;AAGA;AACA;AAAA;AACA;AACA;AAEA;AAAA;AACA;AACA;AACA;AAGA;AAAA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACA;AACA;AAAA;AACA;AACA;AAEA;AAAA;AACA;AACA;AAGA;AAGA;AACA;AAGA;AACA;AAEA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AAIA;AACA;AACA;AAGA;AACA;AAGA;AACA;AAEA;AACA;AAAA;AAEA;AACA;AACA;AACA;AAEA;AACA;AAAA;AACA;AAEA;AACA;AAAA;AACA;AAGA;AACA;AAAA;AACA;AACA;AAGA;AACA;AAAA;AACA;AACA;AACA;AAEA;AAAA;AAEA;AAEA;AACA;AACA;AAEA;AACA;AAEA;AACA;AAAA;AACA;AAGA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAAA;AACA;AAGA;AACA;AAEA;AACA;AACA;AACA;AAAA;AACA;AAEA;;;;;;;;;;;;;;;;;AC7MA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;AC3BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","sources":["webpack://@mlssoccer/netcore/./scripts/react/mls-featured-match-v2/components/FeaturedMatchWrapper/utils.js","webpack://@mlssoccer/netcore/./scripts/react/mls-horizontal-scoreboard/HorizontalScoreboard/utils.js","webpack://@mlssoccer/netcore/./scripts/react/mls-vertical-scoreboard/utils.js","webpack://@mlssoccer/netcore/./.yarn/cache/date-fns-npm-2.29.2-da48c27e93-0ac440a105.zip/node_modules/date-fns/esm/getYear/index.js","webpack://@mlssoccer/netcore/./.yarn/cache/date-fns-npm-2.29.2-da48c27e93-0ac440a105.zip/node_modules/date-fns/esm/isFuture/index.js","webpack://@mlssoccer/netcore/./.yarn/cache/date-fns-npm-2.29.2-da48c27e93-0ac440a105.zip/node_modules/date-fns/esm/isPast/index.js"],"sourcesContent":["import dayjs from \"dayjs\";\nimport {\n getMatchesByDate,\n getNearestDate,\n getNearestMatch,\n getTodaysNearestMatch,\n} from \"../../../mls-horizontal-scoreboard/HorizontalScoreboard/utils\";\nimport { statusTypes } from \"../../../mls-match-list/utils\";\n\nexport function getNearestFeaturedMatch(groupedMatches) {\n const todaysMatch = getTodaysNearestMatch(groupedMatches);\n\n if (todaysMatch) {\n return todaysMatch;\n }\n\n const nearestDate = getNearestDate({ dates: groupedMatches });\n const nearestGroupedMatches = getMatchesByDate(groupedMatches, nearestDate);\n const nearestMatch = getNearestMatch(\n nearestGroupedMatches.matches,\n nearestDate\n );\n\n return nearestMatch;\n}\n\nexport function groupMatchesByDate(matches, excludedLiveMatches = false) {\n if (!matches?.length) return null;\n\n const matchesByDate = {};\n\n matches\n .filter((match) =>\n excludedLiveMatches\n ? match?.status?.abbreviation !== statusTypes.live\n : match\n )\n .forEach((match) => {\n const date = dayjs(match.matchDate).format(\"MM/DD/YYYY\");\n\n matchesByDate[date] = matchesByDate[date]\n ? [...matchesByDate[date], match]\n : [match];\n });\n\n return Object.keys(matchesByDate).map((key) => ({\n date: dayjs(key).toDate(),\n matches: matchesByDate[key],\n }));\n}\n","import dayjs from \"dayjs\";\nimport { statusTypes } from \"../../mls-match-list/utils\";\nimport { isFuture } from \"date-fns\";\n\nexport function getNearestDate({ baseDate = dayjs(), dates }) {\n const nearest = dates?.reduce(\n (acc, current) => {\n const currentDate = dayjs(current.date);\n const currentDiff = getDateDifference(baseDate, currentDate);\n if (acc.diff > currentDiff) {\n return { date: current.date, diff: currentDiff };\n }\n\n return acc;\n },\n { date: null, diff: Number.MAX_SAFE_INTEGER }\n );\n\n return nearest?.date;\n}\n\nfunction getDateDifference(firstDate, secondDate) {\n return Math.abs(firstDate.diff(secondDate));\n}\n\nfunction isSameDay(firstDate, secondDate) {\n return dayjs(firstDate).isSame(dayjs(secondDate), \"day\");\n}\n\nfunction getActiveMatch(matches) {\n const activeMatch = matches.find(\n (match) => match?.status?.abbreviation === statusTypes.live\n );\n\n if (activeMatch) {\n return activeMatch;\n }\n\n const nextMatch = matches.find((match) => {\n return isFuture(dayjs(match?.matchDate).toDate());\n });\n\n return nextMatch || matches[matches.length - 1];\n}\n\nexport function getMatchesByDate(matches, date) {\n return matches.find((matches) => {\n return isSameDay(matches.date, date);\n });\n}\n\nexport function getNearestMatch(matches, date) {\n const isNearestBeforeToday = dayjs(date).isBefore(dayjs());\n\n if (isNearestBeforeToday) {\n return matches[matches.length - 1];\n } else {\n return matches[0];\n }\n}\n\nexport function getTodaysNearestMatch(matches) {\n let activeMatch = null;\n\n matches?.forEach((matches) => {\n const today = isSameDay(dayjs(), matches?.date);\n\n if (today && matches.matches?.length) {\n activeMatch = getActiveMatch(matches.matches);\n }\n });\n\n return activeMatch;\n}\n","import {\n format,\n isAfter,\n isFuture,\n isToday,\n isValid,\n parse,\n isPast,\n subDays,\n addDays,\n getYear,\n isSameYear,\n isSameDay,\n} from \"date-fns\";\n\nimport { enUS } from \"date-fns/locale\";\nimport dayjs from \"dayjs\";\nimport { getCultureLocalizer } from \"../shared/utils\";\nimport { groupMatchesByDate } from \"../mls-featured-match-v2/components/FeaturedMatchWrapper/utils\";\n\nconst getDateOrDefault = (dateString) => {\n if (!dateString) {\n const now = Date.now();\n\n return { date: now, dateString: format(now, \"yyyy-MM-dd\") };\n }\n\n return {\n date: parse(dateString, \"yyyy-MM-dd\", new Date()),\n dateString,\n };\n};\n\nexport const getLiteRanges = (matches = []) => {\n if (!matches || !matches?.length) {\n return null;\n }\n\n const todayMatches = matches.filter((match) =>\n isToday(dayjs(match?.matchDate).toDate())\n );\n const nextMatches = matches.filter((match) =>\n isFuture(dayjs(match?.matchDate).toDate())\n );\n const pastMatches = matches.filter((match) =>\n isPast(dayjs(match?.matchDate).toDate())\n );\n\n if (todayMatches?.length) {\n const now = format(Date.now(), \"yyyy-MM-dd\");\n\n return {\n dateFromLite: now,\n dateToLite: now,\n };\n }\n\n if (nextMatches?.length) {\n const matchDayDate = format(\n dayjs(nextMatches[0].matchDate).toDate(),\n \"yyyy-MM-dd\"\n );\n return {\n dateFromLite: matchDayDate,\n dateToLite: matchDayDate,\n };\n }\n\n if (pastMatches?.length) {\n const matchDayDate = format(\n dayjs(pastMatches[0].matchDate).toDate(),\n \"yyyy-MM-dd\"\n );\n return {\n dateFromLite: matchDayDate,\n dateToLite: matchDayDate,\n };\n }\n\n return {\n dateFromLite: null,\n dateToLite: null,\n };\n};\n\nexport const getMatchDayRange = (differenceDays = 1) => {\n const now = Date.now();\n const daysAgo = subDays(now, differenceDays);\n const daysLater = addDays(now, differenceDays);\n const from = {\n date: daysAgo,\n dateString: format(daysAgo, \"yyyy-MM-dd\"),\n };\n const to = {\n date: daysLater,\n dateString: format(daysLater, \"yyyy-MM-dd\"),\n };\n\n const formattedDateString =\n from.dateString === to.dateString\n ? format(from.date, \"PPPP\", { locale: getCultureLocalizer() })\n : `${format(from.date, \"PPPP\", {\n locale: getCultureLocalizer(),\n })} - ${format(to.date, \"PPPP\", { locale: getCultureLocalizer() })}`;\n\n return { from: from.dateString, to: to.dateString, formattedDateString };\n};\n\nexport const getMatchInitialDate = (matchDateTime, dateFrom, dateTo) => {\n const parsedMatchDateTime = matchDateTime\n ? new Date(Date.parse(matchDateTime))\n : null;\n const dateObj = parsedMatchDateTime\n ? {\n date: parsedMatchDateTime,\n dateString: format(parsedMatchDateTime, \"yyyy-MM-dd\", {\n locale: getCultureLocalizer(),\n }),\n }\n : null;\n\n const from = dateObj ? dateObj : getDateOrDefault(dateFrom);\n const to = dateObj ? dateObj : getDateOrDefault(dateTo);\n const formattedDateString =\n from.dateString === to.dateString\n ? format(from.date, \"PPPP\", { locale: getCultureLocalizer() })\n : `${format(from.date, \"PPPP\", {\n locale: getCultureLocalizer(),\n })} - ${format(to.date, \"PPPP\", { locale: getCultureLocalizer() })}`;\n\n return { from: from.dateString, to: to.dateString, formattedDateString };\n};\n\nexport const getDateTranslation = (date, t) => {\n if (!date || !t) return null;\n\n const dayObj = new Date(date);\n const currentYear = getYear(new Date());\n const year = getYear(dayObj);\n const sameYear = currentYear == year;\n\n if (isValid(dayObj)) {\n const weekdayLabelFormat = format(dayObj, \"cccc\", {\n locale: getCultureLocalizer(),\n })?.toLowerCase();\n const dayLabelFormat = format(dayObj, \"d\");\n const monthLabelFormat = format(dayObj, \"MMMM\", {\n locale: getCultureLocalizer(),\n })?.toLowerCase();\n\n if (getCultureLocalizer() !== enUS) {\n return `${t(weekdayLabelFormat)} ${dayLabelFormat} ${t(\n monthLabelFormat\n )} ${!sameYear ? year : \"\"}`;\n }\n\n if (getCultureLocalizer() == enUS) {\n return `${t(weekdayLabelFormat)} ${t(\n monthLabelFormat\n )} ${dayLabelFormat} ${!sameYear ? year : \"\"}`;\n }\n } else {\n return `${date} ${!sameYear ? year : \"\"}`;\n }\n};\n\nexport function getNearestMatches(matches) {\n const groupedMatches = groupMatchesByDate(matches);\n let preMatches = null;\n\n if (groupedMatches) {\n preMatches = getTodaysNearestMatches(groupedMatches, addDays);\n\n if (!preMatches) {\n preMatches = getTodaysNearestMatches(groupedMatches, subDays);\n }\n }\n\n return preMatches;\n}\n\nfunction getTodaysNearestMatches(groupedMatches, getDate) {\n const now = new Date();\n const MAX_DIFFERENCE_DAYS = 60;\n let matches = null;\n\n for (let index = 0; index <= MAX_DIFFERENCE_DAYS; index++) {\n const date = getDate(now, index);\n const matchesDate = getMatchesFromDate(groupedMatches, date);\n\n if (matchesDate) {\n matches = matchesDate?.matches;\n break;\n }\n }\n\n return matches;\n}\n\nfunction getMatchesFromDate(groupedMatches, date) {\n return groupedMatches.find((currentGroupedMatches) => {\n if (isSameDay(currentGroupedMatches.date, date)) {\n return true;\n }\n });\n}\n","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name getYear\n * @category Year Helpers\n * @summary Get the year of the given date.\n *\n * @description\n * Get the year of the given date.\n *\n * @param {Date|Number} date - the given date\n * @returns {Number} the year\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // Which year is 2 July 2014?\n * const result = getYear(new Date(2014, 6, 2))\n * //=> 2014\n */\n\nexport default function getYear(dirtyDate) {\n requiredArgs(1, arguments);\n return toDate(dirtyDate).getFullYear();\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isFuture\n * @category Common Helpers\n * @summary Is the given date in the future?\n * @pure false\n *\n * @description\n * Is the given date in the future?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in the future\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 31 December 2014 in the future?\n * const result = isFuture(new Date(2014, 11, 31))\n * //=> true\n */\n\nexport default function isFuture(dirtyDate) {\n requiredArgs(1, arguments);\n return toDate(dirtyDate).getTime() > Date.now();\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isPast\n * @category Common Helpers\n * @summary Is the given date in the past?\n * @pure false\n *\n * @description\n * Is the given date in the past?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in the past\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 2 July 2014 in the past?\n * const result = isPast(new Date(2014, 6, 2))\n * //=> true\n */\n\nexport default function isPast(dirtyDate) {\n requiredArgs(1, arguments);\n return toDate(dirtyDate).getTime() < Date.now();\n}"],"names":[],"sourceRoot":""}