-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: onboarding data privacy #48
Changes from 5 commits
05c4e34
e51e79e
c537431
84114ab
cbcb83f
8197885
787355a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/data | ||
/messages | ||
/translations | ||
src/renderer/src/routeTree.gen.ts |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,122 @@ | ||||||||||||||||||||||
import { styled } from '@mui/material/styles' | ||||||||||||||||||||||
import { useNavigate, useRouter } from '@tanstack/react-router' | ||||||||||||||||||||||
import { defineMessages, useIntl } from 'react-intl' | ||||||||||||||||||||||
|
||||||||||||||||||||||
import { BLACK, BLUE_GREY, COMAPEO_BLUE, WHITE } from '../colors' | ||||||||||||||||||||||
import { Button } from './Button' | ||||||||||||||||||||||
import { Text } from './Text' | ||||||||||||||||||||||
|
||||||||||||||||||||||
const MenuContainer = styled('div')({ | ||||||||||||||||||||||
display: 'flex', | ||||||||||||||||||||||
justifyContent: 'space-between', | ||||||||||||||||||||||
alignItems: 'center', | ||||||||||||||||||||||
width: '55%', | ||||||||||||||||||||||
margin: '16px auto', | ||||||||||||||||||||||
position: 'relative', | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
|
||||||||||||||||||||||
const GoBackButton = styled(Button)({ | ||||||||||||||||||||||
display: 'flex', | ||||||||||||||||||||||
alignItems: 'center', | ||||||||||||||||||||||
gap: 8, | ||||||||||||||||||||||
backgroundColor: 'transparent', | ||||||||||||||||||||||
color: BLUE_GREY, | ||||||||||||||||||||||
fontSize: 16, | ||||||||||||||||||||||
padding: '12px 32px', | ||||||||||||||||||||||
borderRadius: 20, | ||||||||||||||||||||||
whiteSpace: 'nowrap', | ||||||||||||||||||||||
'&:hover': { | ||||||||||||||||||||||
backgroundColor: 'rgba(0, 0, 0, 0.1)', | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
|
||||||||||||||||||||||
const BackArrow = styled('span')({ | ||||||||||||||||||||||
fontSize: 24, | ||||||||||||||||||||||
color: WHITE, | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
|
||||||||||||||||||||||
const Steps = styled('div')({ | ||||||||||||||||||||||
display: 'flex', | ||||||||||||||||||||||
alignItems: 'center', | ||||||||||||||||||||||
gap: 16, | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
|
||||||||||||||||||||||
const Step = styled('div')(({ active }: { active: boolean }) => ({ | ||||||||||||||||||||||
backgroundColor: active ? WHITE : 'transparent', | ||||||||||||||||||||||
color: active ? BLACK : BLUE_GREY, | ||||||||||||||||||||||
padding: '12px 32px', | ||||||||||||||||||||||
borderRadius: 20, | ||||||||||||||||||||||
fontWeight: active ? 'bold' : 'normal', | ||||||||||||||||||||||
whiteSpace: 'nowrap', | ||||||||||||||||||||||
})) | ||||||||||||||||||||||
|
||||||||||||||||||||||
const Divider = styled('div')({ | ||||||||||||||||||||||
width: 16, | ||||||||||||||||||||||
height: 1, | ||||||||||||||||||||||
backgroundColor: COMAPEO_BLUE, | ||||||||||||||||||||||
alignSelf: 'center', | ||||||||||||||||||||||
margin: '0 12px', | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
|
||||||||||||||||||||||
interface OnboardingTopMenuProps { | ||||||||||||||||||||||
currentStep: number | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
const m = defineMessages({ | ||||||||||||||||||||||
goBack: { | ||||||||||||||||||||||
id: 'components.OnboardingTopMenu.goBack', | ||||||||||||||||||||||
defaultMessage: 'Go back', | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
step: { | ||||||||||||||||||||||
id: 'components.OnboardingTopMenu.step', | ||||||||||||||||||||||
defaultMessage: 'Step {number}', | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
|
||||||||||||||||||||||
export function OnboardingTopMenu({ currentStep }: OnboardingTopMenuProps) { | ||||||||||||||||||||||
const navigate = useNavigate() | ||||||||||||||||||||||
const router = useRouter() | ||||||||||||||||||||||
const { formatMessage } = useIntl() | ||||||||||||||||||||||
|
||||||||||||||||||||||
return ( | ||||||||||||||||||||||
<MenuContainer> | ||||||||||||||||||||||
<GoBackButton | ||||||||||||||||||||||
onClick={() => router.history.back()} | ||||||||||||||||||||||
variant="text" | ||||||||||||||||||||||
style={{ | ||||||||||||||||||||||
color: BLUE_GREY, | ||||||||||||||||||||||
gap: 8, | ||||||||||||||||||||||
padding: '12px 32px', | ||||||||||||||||||||||
}} | ||||||||||||||||||||||
> | ||||||||||||||||||||||
<BackArrow>←</BackArrow> | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd love to give this an There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok done |
||||||||||||||||||||||
{formatMessage(m.goBack)} | ||||||||||||||||||||||
</GoBackButton> | ||||||||||||||||||||||
<Steps> | ||||||||||||||||||||||
{[1, 2, 3].map((step) => ( | ||||||||||||||||||||||
<div key={step} style={{ display: 'flex', alignItems: 'center' }}> | ||||||||||||||||||||||
<Step | ||||||||||||||||||||||
active={currentStep === step} | ||||||||||||||||||||||
onClick={() => | ||||||||||||||||||||||
navigate({ | ||||||||||||||||||||||
to: `/Onboarding/${ | ||||||||||||||||||||||
step === 1 | ||||||||||||||||||||||
? 'DataPrivacy' | ||||||||||||||||||||||
: step === 2 | ||||||||||||||||||||||
? 'NextStep' | ||||||||||||||||||||||
: 'PrivacyPolicyScreen' | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: might just be me, but I find nested ternary expressions hard to read. Maybe something like this, if you want to maintain this being a single expression?
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point! I replaced it with an object but not exactly as you suggested because sorry I wasn't sure what you meant/ how to do that. |
||||||||||||||||||||||
}`, | ||||||||||||||||||||||
}) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
> | ||||||||||||||||||||||
<Text kind="body" bold={currentStep === step}> | ||||||||||||||||||||||
{formatMessage(m.step, { number: step })} | ||||||||||||||||||||||
</Text> | ||||||||||||||||||||||
</Step> | ||||||||||||||||||||||
{step < 3 && <Divider />} | ||||||||||||||||||||||
EvanHahn marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||
</div> | ||||||||||||||||||||||
))} | ||||||||||||||||||||||
</Steps> | ||||||||||||||||||||||
</MenuContainer> | ||||||||||||||||||||||
) | ||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import CircleIcon from '@mui/icons-material/Circle' | ||
import { styled } from '@mui/material/styles' | ||
|
||
import { DARK_GREY } from '../../colors' | ||
import { Text } from '../../components/Text' | ||
|
||
const DiagnosticsItem = styled('div')({ | ||
display: 'flex', | ||
flexDirection: 'row', | ||
alignItems: 'flex-start', | ||
gap: 8, | ||
marginBottom: 12, | ||
paddingLeft: 12, | ||
}) | ||
const DiagnosticsTitle = styled(Text)({ | ||
fontWeight: 'bold', | ||
marginRight: 4, | ||
color: DARK_GREY, | ||
lineHeight: 1, | ||
}) | ||
const DiagnosticsDescription = styled(Text)({ | ||
display: 'inline', | ||
}) | ||
|
||
export const DiagnosticItem = ({ | ||
title, | ||
description, | ||
}: { | ||
title: string | ||
description: string | ||
}) => ( | ||
<DiagnosticsItem> | ||
<CircleIcon | ||
fontSize="small" | ||
sx={{ fontSize: 6, color: DARK_GREY, marginTop: 1 }} | ||
/> | ||
<DiagnosticsTitle kind="subtitle"> | ||
{title}:{' '} | ||
<DiagnosticsDescription kind="body">{description}</DiagnosticsDescription> | ||
</DiagnosticsTitle> | ||
</DiagnosticsItem> | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't review any of the translation strings in this file or others. Let me know if that's wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that is fine!