-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[Card Settings] fix card lost/damaged flow #34098
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1341dbd
change text info and button labels for damaged and stolen flows
JKobrynski edf43f6
remove useEffect with mock
JKobrynski 112a743
rename OPTIONS_LABELS to OPTIONS_KEYS
JKobrynski d04cec9
change spanish translations
JKobrynski f49bef7
Merge branch 'main' into fixCardDamagedFlow
JKobrynski 2a9a11b
fix cardId capitalization in Card.ts
JKobrynski File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,14 +23,19 @@ import ONYXKEYS from '@src/ONYXKEYS'; | |
import ROUTES from '@src/ROUTES'; | ||
import assignedCardPropTypes from './assignedCardPropTypes'; | ||
|
||
const OPTIONS_LABELS = { | ||
DAMAGED: 'damaged', | ||
STOLEN: 'stolen', | ||
}; | ||
|
||
/** Options for reason selector */ | ||
const OPTIONS = [ | ||
{ | ||
key: 'damaged', | ||
key: OPTIONS_LABELS.DAMAGED, | ||
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. Is it 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. Changed it 😄 |
||
label: 'reportCardLostOrDamaged.cardDamaged', | ||
}, | ||
{ | ||
key: 'stolen', | ||
key: OPTIONS_LABELS.STOLEN, | ||
label: 'reportCardLostOrDamaged.cardLostOrStolen', | ||
}, | ||
]; | ||
|
@@ -107,7 +112,7 @@ function ReportCardLostPage({ | |
return; | ||
} | ||
|
||
Navigation.navigate(ROUTES.SETTINGS_WALLET_DOMAINCARDS.getRoute(domain)); | ||
Navigation.navigate(ROUTES.SETTINGS_WALLET_DOMAINCARD.getRoute(domain)); | ||
}, [domain, formData.isLoading, prevIsLoading, physicalCard.errors]); | ||
|
||
useEffect(() => { | ||
|
@@ -156,6 +161,8 @@ function ReportCardLostPage({ | |
Navigation.goBack(ROUTES.SETTINGS_WALLET); | ||
}; | ||
|
||
const isDamaged = reason && reason.key === OPTIONS_LABELS.DAMAGED; | ||
|
||
return ( | ||
<ScreenWrapper | ||
includeSafeAreaPaddingBottom | ||
|
@@ -178,14 +185,18 @@ function ReportCardLostPage({ | |
onPress={() => Navigation.navigate(ROUTES.SETTINGS_PERSONAL_DETAILS_ADDRESS)} | ||
numberOfLinesTitle={2} | ||
/> | ||
<Text style={[styles.mt3, styles.mh5]}>{translate('reportCardLostOrDamaged.currentCardInfo')}</Text> | ||
{isDamaged ? ( | ||
<Text style={[styles.mt3, styles.mh5]}>{translate('reportCardLostOrDamaged.cardDamagedInfo')}</Text> | ||
) : ( | ||
<Text style={[styles.mt3, styles.mh5]}>{translate('reportCardLostOrDamaged.cardLostOrStolenInfo')}</Text> | ||
)} | ||
</View> | ||
<FormAlertWithSubmitButton | ||
isAlertVisible={shouldShowAddressError} | ||
onSubmit={handleSubmitSecondStep} | ||
message={translate('reportCardLostOrDamaged.addressError')} | ||
isLoading={formData.isLoading} | ||
buttonText={translate('reportCardLostOrDamaged.deactivateCardButton')} | ||
buttonText={isDamaged ? translate('reportCardLostOrDamaged.shipNewCardButton') : translate('reportCardLostOrDamaged.deactivateCardButton')} | ||
/> | ||
</> | ||
) : ( | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Just wanna double check, where did you get those copies in Spain?
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 got them from deepl, I will ask on Slack to confirm they're correct 😄
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.
Here is the question!
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.
it looks like we got a copy in Spain, didn't we?
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.
Right, I updated it