>;\n setData: (details: StepTwoData) => void;\n}\n\nexport const Header = ({ setStep, setData }: Props) => {\n const address = useAddress();\n const isMounted = useIsMounted();\n const { history } = useXcmHistory();\n const { xcm } = useTutorials();\n\n return (\n \n \n \n {isMounted && address && (\n {\n setData(data);\n setStep(3);\n }}\n />\n )}\n \n \n );\n};\n","import { Stepper as MantineStepper } from '@mantine/core';\nimport { useTranslation } from 'next-i18next';\nimport classes from './Stepper.module.css';\n\ninterface Props {\n active: number;\n}\n\nexport const Stepper = ({ active }: Props) => {\n const { t } = useTranslation('xcm');\n const minHeight = 130;\n\n return (\n \n \n >}\n mih={minHeight}\n label={`${t('step')} 01`}\n description={t('steps.one')}\n />\n >}\n mih={minHeight}\n label={`${t('step')} 02`}\n description={t('steps.two')}\n />\n >}\n mih={minHeight}\n label={`${t('step')} 03`}\n description={t('steps.three')}\n />\n \n
\n );\n};\n","import {\n Box,\n Container,\n Group,\n Paper,\n Text,\n Title,\n Tooltip,\n} from '@mantine/core';\nimport { useDidUpdate, useScrollIntoView } from '@mantine/hooks';\nimport { StepOne, StepTwo, StepTwoData } from 'components/pages/xcm';\nimport { Header } from 'components/pages/xcm/StepOne/Header/Header';\nimport { Stepper } from 'components/pages/xcm/Stepper';\nimport { useIsMobile } from 'hooks/useMedia';\nimport { useMoonChain, useMoonChainEcosystem } from 'hooks/useMoonChainConfig';\nimport { GetServerSideProps, NextPage } from 'next';\nimport { useTranslation } from 'next-i18next';\nimport Head from 'next/head';\nimport { useRouter } from 'next/router';\nimport { useEffect, useState } from 'react';\nimport { IoInformationCircleOutline } from 'react-icons/io5';\nimport { generateServerProps } from 'utils/server';\nimport {\n geValidMoonChainKey,\n isQueryParamValid,\n xcmQueryParamSchema,\n} from 'utils/validation/queryParamValidation';\n\nconst XcmPage: NextPage = () => {\n const { t } = useTranslation('');\n const router = useRouter();\n const { name, ecosystem } = useMoonChain();\n const [step, setStep] = useState(0);\n const [data, setData] = useState();\n const isMobile = useIsMobile();\n const { scrollIntoView, targetRef } = useScrollIntoView({\n offset: isMobile ? 140 : 60,\n });\n const moonChain = useMoonChain();\n\n const titleForGA = t('gaTitles.xcm', { ns: 'common' });\n\n const env = useMoonChainEcosystem();\n\n // biome-ignore lint/correctness/useExhaustiveDependencies: \n useEffect(() => scrollIntoView(), [scrollIntoView, step]);\n\n useDidUpdate(() => {\n if (step === 0) {\n setData(undefined);\n }\n }, [step]);\n\n /**\n * When Moon* chain changes we need to clean up the state\n */\n // biome-ignore lint/correctness/useExhaustiveDependencies: \n useEffect(() => {\n function clean() {\n setData(undefined);\n setStep(0);\n }\n\n router.events.on('routeChangeStart', clean);\n }, []);\n\n function renderStep() {\n if (step === 0 || !data) {\n return (\n \n );\n }\n\n return ;\n }\n\n return (\n <>\n \n \n {titleForGA}\n \n \n \n \n {t('parachainBridges', { env })}\n \n \n \n \n \n \n \n \n {step === 0 ? t('xcm:subtitle') : t('xcm:subtitle2')}\n \n \n \n \n {renderStep()}\n \n \n >\n );\n};\n\nexport const getServerSideProps: GetServerSideProps = async ({\n locale,\n params,\n query,\n}) => {\n if (!isQueryParamValid(query, xcmQueryParamSchema)) {\n const moonChainKey = geValidMoonChainKey(params?.moonChainKey as string);\n\n return {\n redirect: {\n destination: `/${moonChainKey}/xcm`,\n permanent: true,\n },\n };\n }\n\n return await generateServerProps(params?.moonChainKey, locale as string, [\n 'common',\n 'xcm',\n ]);\n};\n\nexport default XcmPage;\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"button\":\"XcmHistory_button__RZlmx\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"stepIcon\":\"Stepper_stepIcon__yhrsy\",\"stepperRoot\":\"Stepper_stepperRoot__PKad9\",\"step\":\"Stepper_step__zJ8dF\",\"stepBody\":\"Stepper_stepBody__uAn8D\",\"stepLabel\":\"Stepper_stepLabel__cdbhV\",\"description\":\"Stepper_description__OqZ8J\",\"separator\":\"Stepper_separator__SfheU\"};"],"names":["window","__NEXT_P","push","__webpack_require__","TutorialLink","link","param","t","useTranslation","theme","useMantineTheme","themeColors","useThemeColors","jsx_runtime","jsx","OffsiteLink","withIcon","jsxs","Group","gap","IoPlayCircle","size","color","other","colors","action","Text","c","texts","useTutorials","moonChainKey","useMoonChainKeyParam","baseUrl","xcm","concat","moonriver","key","staking","claimRewards","easeInOutQuad","getRelativePosition","axis","target","parent","alignment","offset","isList","document","isCustomParent","parentPosition","parentElement","body","getBoundingClientRect","targetPosition","getDiff","property","diff","distance","shouldScroll","height","parentHeight","innerHeight","width","parentWidth","innerWidth","getScrollStart","method","documentElement","setScrollParam","HistoryIcon","svg","viewBox","fill","xmlns","style","path","d","XcmHistory","address","history","onSelect","isOpen","close","open","useDisclosure","moonChain","useMoonChain","Popover","position","opened","Target","UnstyledButton","onFocusCapture","onBlurCapture","Center","ml","Dropdown","p","miw","length","ScrollArea","Autosize","mah","py","spacing","xs","type","Stack","reverse","map","className","classes","onClick","data","ChainLogo","chain","source","IoArrowForward","destination","TokenAmount","amount","decimals","symbol","originSymbol","maxDecimals","txHash","fs","Divider","label","getSubscanUrlByChainKey","Header","setStep","setData","useAddress","isMounted","useIsMounted","useXcmHistory","Card","withBorder","justify","Stepper","active","div","MantineStepper","mt","classNames","root","content","step","stepIcon","stepBody","stepLabel","stepWrapper","stepDescription","separator","Step","icon","Fragment","mih","description","_moonChainKey_xcm","router","useRouter","name","ecosystem","useState","scrollIntoView","targetRef","useScrollIntoView","duration","onScrollFinish","easing","cancelable","frameID","react","useRef","startTime","shouldStop","scrollableRef","reducedMotion","use_reduced_motion","J","cancel","current","cancelAnimationFrame","useCallback","start","change","animateScroll","performance","now","elapsed","requestAnimationFrame","handleStop","use_window_event","s","passive","useEffect","isMobile","useIsMobile","titleForGA","ns","env","useMoonChainEcosystem","useDidUpdate","undefined","events","on","Head","meta","title","Container","Title","ref","tt","Tooltip","relay","withArrow","Box","IoInformationCircleOutline","Paper","StepTwo","StepOne","module","exports"],"sourceRoot":""}