* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
105 lines
2.9 KiB
TypeScript
105 lines
2.9 KiB
TypeScript
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 (
|
|
<div className="flex items-center justify-center w-screen h-screen">
|
|
<Card
|
|
style={{ width: 540 }}
|
|
title={t('👋 Welcome to OpenReplay')}
|
|
classNames={{
|
|
header: 'text-2xl font-semibold text-center',
|
|
body: 'flex flex-col gap-2',
|
|
}}
|
|
>
|
|
<div className="font-semibold">
|
|
{t('How will you primarily use OpenReplay?')}{' '}
|
|
</div>
|
|
<div className="text-disabled-text">
|
|
<div>
|
|
{t(
|
|
'You will have access to all OpenReplay features regardless of your choice.',
|
|
)}
|
|
</div>
|
|
<div>
|
|
{t(
|
|
'Your preference will simply help us tailor your onboarding experience.',
|
|
)}
|
|
</div>
|
|
</div>
|
|
<Radio.Group
|
|
value={scope}
|
|
onChange={(e) => setScope(e.target.value)}
|
|
className="flex flex-col gap-2 mt-4 "
|
|
>
|
|
<Radio value="full">
|
|
{t(
|
|
'Session Replay with DevTools, Co-browsing and Product Analytics',
|
|
)}
|
|
</Radio>
|
|
<Radio value="spot">{t('Bug reporting via Spot')}</Radio>
|
|
</Radio.Group>
|
|
|
|
<div className="self-end">
|
|
<Button
|
|
type="primary"
|
|
onClick={() => onContinue()}
|
|
icon={<ArrowRightOutlined />}
|
|
iconPosition="end"
|
|
>
|
|
{t('Continue')}
|
|
</Button>
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default observer(ScopeForm);
|