-
Notifications
You must be signed in to change notification settings - Fork 34
fix(address-form): Update error message for address form #3909
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
Merged
Changes from all commits
Commits
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
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 |
|---|---|---|
|
|
@@ -3,7 +3,10 @@ import cs from 'classnames' | |
| import { z } from 'zod' | ||
|
|
||
| import { AddressSchema } from 'services/account/useAccountDetails' | ||
| import { useUpdateBillingAddress } from 'services/account/useUpdateBillingAddress' | ||
| import { | ||
| BillingApiError, | ||
| useUpdateBillingAddress, | ||
| } from 'services/account/useUpdateBillingAddress' | ||
| import { Theme, useThemeContext } from 'shared/ThemeContext' | ||
| import Button from 'ui/Button' | ||
|
|
||
|
|
@@ -50,7 +53,6 @@ function AddressForm({ | |
| mutate: updateAddress, | ||
| isLoading, | ||
| error, | ||
| reset, | ||
| } = useUpdateBillingAddress({ | ||
| provider, | ||
| owner, | ||
|
|
@@ -70,8 +72,6 @@ function AddressForm({ | |
| } | ||
| } | ||
|
|
||
| const showError = error && !reset | ||
|
|
||
| return ( | ||
| <form onSubmit={submit} aria-label="form"> | ||
| <div className={cs('flex flex-col gap-3')}> | ||
|
|
@@ -95,7 +95,9 @@ function AddressForm({ | |
| }, | ||
| }} | ||
| /> | ||
| <p className="mt-1 text-ds-primary-red">{showError && error}</p> | ||
| <p className="mt-1 text-ds-primary-red"> | ||
| {error && getErrorMessage(error)} | ||
| </p> | ||
| </div> | ||
| <div className="flex gap-1"> | ||
| <Button | ||
|
|
@@ -123,4 +125,23 @@ function AddressForm({ | |
| ) | ||
| } | ||
|
|
||
| export const getErrorMessage = ( | ||
| error: Error | BillingApiError | ||
| ): string | undefined => { | ||
| if (!error) return undefined | ||
|
|
||
| if (error instanceof Error) { | ||
| if (error.message) { | ||
| return `Could not save billing address: ${error.message}` | ||
| } | ||
| return 'Could not save billing address. Please contact support at [email protected] for assistance.' | ||
| } | ||
|
|
||
| if (error.data?.detail) { | ||
| return `Could not save billing address: ${error.data.detail}` | ||
| } | ||
|
|
||
| return 'Could not save billing address due to an unknown error. Please contact support at [email protected] for assistance.' | ||
| } | ||
|
|
||
| export default AddressForm | ||
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.
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 u know why we were able to get rid of this?
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.
oh is it because we want the error to persist?
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 seemed the former check of
!resetwould always be falsy becauseresetis a function. The form otherwise didn't require it. I thinkuseMutationdoesn't even return a propertyreset: () => voidso that may be a leftover from some long-ago version of this that used react Form