-
Notifications
You must be signed in to change notification settings - Fork 3.9k
fix: change message when reimbursementChoice is reimburseNo #49837
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
Merged
srikarparsi
merged 11 commits into
Expensify:main
from
koko57:fix/49333-show-different-message-for-optimistic-update
Oct 11, 2024
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
c1ce94a
fix: change message when reimbursementChoice is reimburseNo
koko57 588f210
fix: minor improvement
koko57 fd6258e
fix: minor improvement
koko57 4b5cb90
Merge branch 'main' into fix/49333-show-different-message-for-optimis…
koko57 e18f619
Merge branch 'main' into fix/49333-show-different-message-for-optimis…
koko57 bd36d9a
Merge branch 'main' into fix/49333-show-different-message-for-optimis…
koko57 9d38ce4
fix: close and approve the request for given conditions
koko57 d28c823
Merge branch 'main' into fix/49333-show-different-message-for-optimis…
koko57 cf8d531
fix: apply suggestion
koko57 bf55ef7
Merge branch 'main' into fix/49333-show-different-message-for-optimis…
koko57 177dd5e
fix: remove unnecessary condition
koko57 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 hidden or 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 |
|---|---|---|
|
|
@@ -97,6 +97,16 @@ function buildNextStep(report: OnyxEntry<Report>, predictedNextStatus: ValueOf<t | |
| const type: ReportNextStep['type'] = 'neutral'; | ||
| let optimisticNextStep: ReportNextStep | null; | ||
|
|
||
| const noActionRequired = { | ||
| icon: CONST.NEXT_STEP.ICONS.CHECKMARK, | ||
| type, | ||
| message: [ | ||
| { | ||
| text: 'No further action required!', | ||
| }, | ||
| ], | ||
| }; | ||
|
|
||
| switch (predictedNextStatus) { | ||
| // Generates an optimistic nextStep once a report has been opened | ||
| case CONST.REPORT.STATUS_NUM.OPEN: | ||
|
|
@@ -217,15 +227,13 @@ function buildNextStep(report: OnyxEntry<Report>, predictedNextStatus: ValueOf<t | |
|
|
||
| // Generates an optimistic nextStep once a report has been closed for example in the case of Submit and Close approval flow | ||
| case CONST.REPORT.STATUS_NUM.CLOSED: | ||
| optimisticNextStep = { | ||
|
Contributor
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. Can we add |
||
| icon: CONST.NEXT_STEP.ICONS.CHECKMARK, | ||
| type, | ||
| message: [ | ||
| { | ||
| text: 'No further action required!', | ||
| }, | ||
| ], | ||
| }; | ||
| optimisticNextStep = noActionRequired; | ||
|
|
||
| break; | ||
|
|
||
| // Generates an optimistic nextStep once a report has been paid | ||
| case CONST.REPORT.STATUS_NUM.REIMBURSED: | ||
| optimisticNextStep = noActionRequired; | ||
|
|
||
| break; | ||
|
|
||
|
|
@@ -241,15 +249,8 @@ function buildNextStep(report: OnyxEntry<Report>, predictedNextStatus: ValueOf<t | |
| report, | ||
| ) | ||
| ) { | ||
| optimisticNextStep = { | ||
| type, | ||
| icon: CONST.NEXT_STEP.ICONS.CHECKMARK, | ||
| message: [ | ||
| { | ||
| text: 'No further action required!', | ||
| }, | ||
| ], | ||
| }; | ||
| optimisticNextStep = noActionRequired; | ||
|
|
||
| break; | ||
| } | ||
| // Self review | ||
|
|
@@ -281,21 +282,6 @@ function buildNextStep(report: OnyxEntry<Report>, predictedNextStatus: ValueOf<t | |
| }; | ||
| break; | ||
|
|
||
| // Generates an optimistic nextStep once a report has been paid | ||
| case CONST.REPORT.STATUS_NUM.REIMBURSED: | ||
| // Paid with wallet | ||
| optimisticNextStep = { | ||
| type, | ||
| icon: CONST.NEXT_STEP.ICONS.CHECKMARK, | ||
| message: [ | ||
| { | ||
| text: 'No further action required!', | ||
| }, | ||
| ], | ||
| }; | ||
|
|
||
| break; | ||
|
|
||
| // Resets a nextStep | ||
| default: | ||
| optimisticNextStep = null; | ||
|
|
||
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.