-
Notifications
You must be signed in to change notification settings - Fork 4k
show error view when query explicitly fails #58054
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
Show all changes
17 commits
Select commit
Hold shift + click to select a range
6eea191
show error view when query explicitly fails
huult db2b82b
add variable for error page icon
huult dc36607
update translation
huult 1edddbf
fix lint
huult e8291db
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult e5e14c8
update comment, revert icon, change icon size
huult ac6d35e
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult 4f21acf
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult 270969f
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult 75a1d83
remove check search:isLoading
huult 100f36b
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult 5c2bfb5
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult af9f085
update translation
huult d3180b2
fix lint
huult a034c17
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult 7d5dda2
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult 871c559
Merge remote-tracking branch 'upstream/main' into 55817-search-error-msg
huult 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 |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| import React from 'react'; | ||
| import {View} from 'react-native'; | ||
| import type {StyleProp, TextStyle} from 'react-native'; | ||
| import * as Illustrations from '@components/Icon/Illustrations'; | ||
| import useThemeStyles from '@hooks/useThemeStyles'; | ||
| import variables from '@styles/variables'; | ||
| import BlockingView from './BlockingView'; | ||
| import ForceFullScreenView from './ForceFullScreenView'; | ||
|
|
||
| type FullPageErrorViewProps = { | ||
| /** TestID for test */ | ||
| testID?: string; | ||
|
|
||
| /** Child elements */ | ||
| children?: React.ReactNode; | ||
|
|
||
| /** If true, child components are replaced with a blocking "error page" view */ | ||
| shouldShow?: boolean; | ||
|
|
||
| /** The title text to be displayed */ | ||
| title?: string; | ||
|
|
||
| /** The subtitle text to be displayed */ | ||
| subtitle?: string; | ||
|
|
||
| /** Whether we should force the full page view */ | ||
| shouldForceFullScreen?: boolean; | ||
|
|
||
| /** The style of the subtitle message */ | ||
| subtitleStyle?: StyleProp<TextStyle>; | ||
| }; | ||
|
|
||
| // eslint-disable-next-line rulesdir/no-negated-variables | ||
| function FullPageErrorView({testID, children = null, shouldShow = false, title = '', subtitle = '', shouldForceFullScreen = false, subtitleStyle}: FullPageErrorViewProps) { | ||
| const styles = useThemeStyles(); | ||
|
|
||
| if (shouldShow) { | ||
| return ( | ||
| <ForceFullScreenView shouldForceFullScreen={shouldForceFullScreen}> | ||
| <View | ||
| style={[styles.flex1, styles.blockingErrorViewContainer]} | ||
| testID={testID} | ||
| > | ||
| <BlockingView | ||
| icon={Illustrations.BrokenMagnifyingGlass} | ||
| iconWidth={variables.errorPageIconWidth} | ||
| iconHeight={variables.errorPageIconHeight} | ||
| title={title} | ||
| subtitle={subtitle} | ||
| subtitleStyle={subtitleStyle} | ||
| /> | ||
| </View> | ||
| </ForceFullScreenView> | ||
| ); | ||
| } | ||
|
|
||
| return children; | ||
| } | ||
|
|
||
| FullPageErrorView.displayName = 'FullPageErrorView'; | ||
|
|
||
| export type {FullPageErrorViewProps}; | ||
| export default FullPageErrorView; |
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
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
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
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
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.
@huult QQ: Why are we not showing errors when we are offline?
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.
We don't run any search offline, so I'm not sure there's a use case for 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.
@shubham1206agra This error is from the API response, so offline mode cannot be used for 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.
@huult What's the issue here? Can you write the steps here.
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'm not sure that I understand @shubham1206agra. As @huult pointed out, we only show this error when the API response fails, so we need to be online to do so.