(set: ColorSets) =>\n// (props: P): string => {\n// const theme = props.theme.name === Theme.DARK ? Theme.DARK : Theme.DARK\n// return AppColors[set][theme].toString() // props.theme.name\n// }\n\nexport const colorSet =\n
(set: ColorSets) =>\n (props: P): string =>\n AppColors[set][props.theme.name].toString()\n\nexport const colorSetNoAlpha =\n
(colorSet: ColorSets, background: ColorSets) =>\n (props: P): string => {\n const { name: themeName } = props.theme\n const fg = AppColors[colorSet][themeName]\n const bg = AppColors[background][themeName]\n\n return removeAlpha(fg, bg).toString()\n }\n","export function isCed() {\n return process.env.REACT_APP_LAYOUT && process.env.REACT_APP_LAYOUT === 'CED'\n}\n\n/** Vrati funkci, ktera vola vsechny predane funkce se stejnymi parametry */\nexport const callAll =\n (...fns: (Function | undefined)[]) =>\n (...args: unknown[]) =>\n fns.forEach(fn => fn?.(...args))\n","function twoDigits(numStr: string) {\n if (numStr.length < 2) {\n return `0${numStr}`\n }\n\n return numStr\n}\n\nexport function formatDateStr(date: string, delimiter = '-') {\n const parts = date.split('.')\n if (parts.length === 3) {\n return [parts[2], twoDigits(parts[1]), twoDigits(parts[0])].join(delimiter)\n }\n\n return date\n}\n\nexport function formatDate(date: Date, targetLocale: 'en' | 'cs' = 'en') {\n let month = `${date.getMonth() + 1}`\n let day = `${date.getDate()}`\n const year = date.getFullYear()\n\n if (month.length < 2) {\n month = `0${month}`\n }\n if (day.length < 2) {\n day = `0${day}`\n }\n\n return targetLocale === 'en' ? [year, month, day].join('-') : [day, month, year].join('.')\n}\n\nexport function prettyDate(date: number) {\n return new Date(date * 1000).toLocaleDateString()\n}\n\nexport function prettyDateString(dateStr?: string, monthsFormat?: Intl.DateTimeFormatOptions['month']) {\n if (!dateStr) {\n return ''\n }\n const date = new Date(dateStr)\n const ye = new Intl.DateTimeFormat('cs', { year: 'numeric' }).format(date)\n const mo = new Intl.DateTimeFormat('cs', { month: monthsFormat || 'long' }).format(date)\n const da = new Intl.DateTimeFormat('cs', { day: '2-digit' }).format(date)\n return `${da} ${mo} ${ye}`\n}\n\nexport function validateCsDate(date: string) {\n const dateRegExp = new RegExp('^([0]?[1-9]|[1|2][0-9]|[3][0|1])[\\\\.]([0]?[1-9]|[1][0-2])[\\\\.]([0-9]{4})$')\n return dateRegExp.test(date)\n}\n\nexport function getDateDigitsChain(date?: number) {\n const d = date || Date.now()\n const fullDate = new Date(d)\n\n return `${fullDate.getFullYear()}${fullDate.getMonth()}${fullDate.getDate()}`\n}\n","import Bowser from 'bowser'\nimport { PlatformType } from '../components/payment/types'\n\nfunction createParser() {\n return Bowser.getParser(window.navigator.userAgent)\n}\n\nexport function isIos() {\n return createParser().getOSName() === Bowser.OS_MAP.iOS\n}\n\nexport function isApplePaySupported() {\n // eslint-disable-next-line\n return isIos() && window?.ApplePaySession && window?.ApplePaySession.canMakePayments()\n}\n\nexport function isGooglePaySupported() {\n return !isIos()\n}\n\nexport function isAndroid() {\n return createParser().getOSName() === Bowser.OS_MAP.Android\n}\n\nexport function isStandAlone() {\n return window.matchMedia('(display-mode: standalone)').matches || document.referrer.includes('android-app://')\n}\n\nexport function isDesktop() {\n return createParser().getPlatformType() === Bowser.PLATFORMS_MAP.desktop\n}\n\nexport function getPlatform() {\n return isDesktop() ? PlatformType.DESKTOP : PlatformType.MOBILE\n}\n\nexport function isMaintance() {\n const today = new Date()\n const from = new Date(2023, 8, 28, 0, 0, 0, 0)\n const to = new Date(2023, 9, 2, 12, 0, 0, 0)\n\n return today >= from && today < to\n}\n","import { Item } from '../components/payment/types'\nimport { BASIC_REPORT_PRICE } from '../constants/app'\n\nexport const NON_BREAKABLE_SPACE = String.fromCharCode(160)\n\nexport function getPaymentItem(inputData?: Partial