{"version":3,"file":"index-BPykx-WT.js","sources":["../../../../../node_modules/.pnpm/@lingui+react@4.14.1_react@18.3.1/node_modules/@lingui/react/dist/shared/react.ac956f45.mjs","../../../../../node_modules/.pnpm/@lingui+react@4.14.1_react@18.3.1/node_modules/@lingui/react/dist/index.mjs"],"sourcesContent":["import React from 'react';\n\nconst tagRe = /<([a-zA-Z0-9]+)>(.*?)<\\/\\1>|<([a-zA-Z0-9]+)\\/>/;\nconst nlRe = /(?:\\r\\n|\\r|\\n)/g;\nconst voidElementTags = {\n area: true,\n base: true,\n br: true,\n col: true,\n embed: true,\n hr: true,\n img: true,\n input: true,\n keygen: true,\n link: true,\n meta: true,\n param: true,\n source: true,\n track: true,\n wbr: true,\n menuitem: true\n};\nfunction formatElements(value, elements = {}) {\n const uniqueId = makeCounter(0, \"$lingui$\");\n const parts = value.replace(nlRe, \"\").split(tagRe);\n if (parts.length === 1)\n return value;\n const tree = [];\n const before = parts.shift();\n if (before)\n tree.push(before);\n for (const [index, children, after] of getElements(parts)) {\n let element = typeof index !== \"undefined\" ? elements[index] : void 0;\n if (!element || voidElementTags[element.type] && children) {\n if (!element) {\n console.error(\n `Can't use element at index '${index}' as it is not declared in the original translation`\n );\n } else {\n console.error(\n `${element.type} is a void element tag therefore it must have no children`\n );\n }\n element = React.createElement(React.Fragment);\n }\n if (Array.isArray(element)) {\n element = React.createElement(React.Fragment, {}, element);\n }\n tree.push(\n React.cloneElement(\n element,\n { key: uniqueId() },\n // format children for pair tags\n // unpaired tags might have children if it's a component passed as a variable\n children ? formatElements(children, elements) : element.props.children\n )\n );\n if (after)\n tree.push(after);\n }\n return tree.length === 1 ? tree[0] : tree;\n}\nfunction getElements(parts) {\n if (!parts.length)\n return [];\n const [paired, children, unpaired, after] = parts.slice(0, 4);\n const triple = [paired || unpaired, children || \"\", after];\n return [triple].concat(getElements(parts.slice(4, parts.length)));\n}\nconst makeCounter = (count = 0, prefix = \"\") => () => `${prefix}_${count++}`;\n\nfunction TransNoContext(props) {\n const {\n render,\n component,\n id,\n message,\n formats,\n lingui: { i18n, defaultComponent }\n } = props;\n const values = { ...props.values };\n const components = { ...props.components };\n if (values) {\n Object.keys(values).forEach((key) => {\n const value = values[key];\n const valueIsReactEl = React.isValidElement(value) || Array.isArray(value) && value.every(React.isValidElement);\n if (!valueIsReactEl)\n return;\n const index = Object.keys(components).length;\n components[index] = value;\n values[key] = `<${index}/>`;\n });\n }\n const _translation = i18n && typeof i18n._ === \"function\" ? i18n._(id, values, { message, formats }) : id;\n const translation = _translation ? formatElements(_translation, components) : null;\n if (render === null || component === null) {\n return translation;\n }\n const FallbackComponent = defaultComponent || RenderFragment;\n const i18nProps = {\n id,\n message,\n translation,\n // TODO vonovak - remove isTranslated prop in v5 release\n isTranslated: id !== translation && message !== translation,\n children: translation\n // for type-compatibility with `component` prop\n };\n if (render && component) {\n console.error(\n \"You can't use both `component` and `render` prop at the same time. `component` is ignored.\"\n );\n } else if (render && typeof render !== \"function\") {\n console.error(\n `Invalid value supplied to prop \\`render\\`. It must be a function, provided ${render}`\n );\n } else if (component && typeof component !== \"function\") {\n console.error(\n `Invalid value supplied to prop \\`component\\`. It must be a React component, provided ${component}`\n );\n return React.createElement(FallbackComponent, i18nProps, translation);\n }\n if (typeof render === \"function\") {\n return render(i18nProps);\n }\n const Component = component || FallbackComponent;\n return React.createElement(Component, i18nProps, translation);\n}\nconst RenderFragment = ({ children }) => {\n return /* @__PURE__ */ React.createElement(React.Fragment, null, children);\n};\n\nexport { TransNoContext as T };\n","'use client';\nimport React from 'react';\nimport { T as TransNoContext } from './shared/react.ac956f45.mjs';\n\nconst LinguiContext = React.createContext(null);\nconst useLinguiInternal = (devErrorMessage) => {\n const context = React.useContext(LinguiContext);\n if (process.env.NODE_ENV !== \"production\") {\n if (context == null) {\n throw new Error(\n devErrorMessage ?? \"useLingui hook was used without I18nProvider.\"\n );\n }\n }\n return context;\n};\nfunction useLingui() {\n return useLinguiInternal();\n}\nconst I18nProvider = ({\n i18n,\n defaultComponent,\n children\n}) => {\n const latestKnownLocale = React.useRef(i18n.locale);\n const makeContext = React.useCallback(\n () => ({\n i18n,\n defaultComponent,\n _: i18n.t.bind(i18n)\n }),\n [i18n, defaultComponent]\n );\n const [context, setContext] = React.useState(makeContext());\n React.useEffect(() => {\n const updateContext = () => {\n latestKnownLocale.current = i18n.locale;\n setContext(makeContext());\n };\n const unsubscribe = i18n.on(\"change\", updateContext);\n if (latestKnownLocale.current !== i18n.locale) {\n updateContext();\n }\n return unsubscribe;\n }, [i18n, makeContext]);\n if (!latestKnownLocale.current) {\n process.env.NODE_ENV === \"development\" && console.log(\n \"I18nProvider rendered `null`. A call to `i18n.activate` needs to happen in order for translations to be activated and for the I18nProvider to render.This is not an error but an informational message logged only in development.\"\n );\n return null;\n }\n return /* @__PURE__ */ React.createElement(LinguiContext.Provider, { value: context }, children);\n};\n\nfunction Trans(props) {\n let errMessage = void 0;\n if (process.env.NODE_ENV !== \"production\") {\n errMessage = `Trans component was rendered without I18nProvider.\nAttempted to render message: ${props.message} id: ${props.id}. Make sure this component is rendered inside a I18nProvider.`;\n }\n const lingui = useLinguiInternal(errMessage);\n return React.createElement(TransNoContext, { ...props, lingui });\n}\n\nexport { I18nProvider, LinguiContext, Trans, useLingui };\n"],"names":["tagRe","nlRe","voidElementTags","formatElements","value","elements","uniqueId","makeCounter","parts","tree","before","index","children","after","getElements","element","React","paired","unpaired","count","prefix","TransNoContext","props","render","component","id","message","formats","i18n","defaultComponent","values","components","key","_translation","translation","FallbackComponent","RenderFragment","i18nProps","Component","LinguiContext","useLinguiInternal","devErrorMessage","I18nProvider","latestKnownLocale","makeContext","context","setContext","updateContext","unsubscribe","Trans","lingui"],"mappings":"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","x_google_ignoreList":[0,1]}