-
Notifications
You must be signed in to change notification settings - Fork 355
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: Add final steps (succes,warning, quickActions, emptyState UI) for add account v2 workflow #8929
base: develop
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git βοΈ
3 Skipped Deployments
|
4ba26ad
to
638d67a
Compare
β¦or add account v2 workflow
638d67a
to
aa30d9e
Compare
Desktop Bundle Checksπ renderer bundle size decreased (38mb -> 37.8mb). Thanks β€οΈ Mobile Bundle Checksπ main.ios.jsbundle bundle size decreased (62mb -> 61.8mb). Thanks β€οΈ |
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.
Do we plan to have some Integration tests ? :)
@@ -16,10 +19,12 @@ type Props = { | |||
// "no associated accounts" text when adding/importing accounts | |||
function NoAssociatedAccounts({ style }: Props) { | |||
const { colors } = useTheme(); | |||
const c = colors.live; | |||
const { t } = useTranslation(); | |||
const c = colors.primary.c100; |
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.
could you rename it more explicitly please? :)
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.
β done
const fontSize = 13; | ||
const onPress = useCallback(() => Linking.openURL(urls.hedera.supportArticleLink), []); | ||
return ( | ||
return !llmNetworkBasedAddAccountFlow?.enabled ? ( |
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.
suggestion imho, llmNetworkBasedAddAccountFlow?.enabled ? newFeature: oldFeature
is more readable
(Not mandatory)
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.
β done
import { View } from "react-native-animatable"; | ||
import { useTheme } from "styled-components/native"; | ||
import Circle from "~/components/Circle"; | ||
import VerticalGradientBackground from "~/newArch/features/Accounts/components/VerticalGradientBackground"; |
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.
LLM
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.
Oops ! VsCode things
β
done
yes in the making for some components |
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.
Can you add some integration tests to cover the User Story, please? It can be done in another PR
β Checklist
npx changeset
was attached.π Description
This PR will cover the following use cases:
-> When user clicks on an account item , a redirection to account details page
-> when user clicks on add funds to my accounts -> a first drawer suggest the account list to select -> a second drawer will appear with buy/receive cta once an account is selected.
Screen.Recording.2025-01-16.at.16.42.27.mov
-> Here when you click on Add funds to my accounts -> a drawer with buy/receive (no account list drawer in this case)
Screen.Recording.2025-01-16.at.16.44.06.mov
Screen.Recording.2025-01-16.at.16.45.35.mov
The following component should be seen:
π©πΌβπ¨ Resources
Figma for add account full process
Figma for additional screen
My test case testing
π£ π£ π¨ Details to keep in mind while reviewing/testing this PR
β Context
https://ledgerhq.atlassian.net/browse/LIVE-15607
π§ Checklist for the PR Reviewers