import { ArrowRightOutlined } from '@ant-design/icons'; import { Button, Card, Radio } from 'antd'; import React from 'react'; import { useHistory } from 'react-router-dom'; import * as routes from 'App/routes'; import { SPOT_ONBOARDING } from 'App/constants/storageKeys'; import { useStore } from 'App/mstore'; import { observer } from 'mobx-react-lite'; import { useTranslation } from 'react-i18next'; const Scope = { FULL: 'full', SPOT: 'spot', }; function getDefaultSetup() { const isSpotSetup = localStorage.getItem(SPOT_ONBOARDING); if (isSpotSetup) { localStorage.removeItem(SPOT_ONBOARDING); return Scope.SPOT; } return Scope.FULL; } function ScopeForm() { const { t } = useTranslation(); const { userStore } = useStore(); const { upgradeScope } = userStore; const { downgradeScope } = userStore; const { scopeState } = userStore; const [scope, setScope] = React.useState(getDefaultSetup); React.useEffect(() => { if (scopeState !== 0) { if (scopeState === 2) { history.replace(routes.onboarding()); } else { history.replace(routes.spotsList()); } } }, [scopeState]); const history = useHistory(); const onContinue = () => { if (scope === Scope.FULL) { void upgradeScope(); history.replace(routes.onboarding()); } else { void downgradeScope(); history.replace(routes.spotsList()); } }; return (