-
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
Fix: Unique key
warning
#49222
Merged
+17
−11
Merged
Fix: Unique key
warning
#49222
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
205f47a
fix: unique key warning
gijoe0295 e17c3ce
Merge branch 'main' of https://github.com/gijoe0295/App into gijoe/49063
gijoe0295 3fcea03
fix: invalid prop inbetweenCompo of type boolean
gijoe0295 0eee5fa
fix: invalid prop listEmptyComponent and listLoaderComponent of type …
gijoe0295 5caf0b9
remove redundant changes
gijoe0295 e9ef0dc
fix lint: jsx deprecation
gijoe0295 cf48092
Merge branch 'main' of https://github.com/gijoe0295/App into gijoe/49063
gijoe0295 f2f205b
fix: unique key warning in MenuItemList
gijoe0295 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import React, {forwardRef, useCallback, useEffect, useMemo, useRef, useState} from 'react'; | ||
import React, {forwardRef, useEffect, useMemo, useRef, useState} from 'react'; | ||
import type {ForwardedRef} from 'react'; | ||
import {ActivityIndicator, Keyboard, LogBox, View} from 'react-native'; | ||
import type {LayoutChangeEvent} from 'react-native'; | ||
|
@@ -329,12 +329,12 @@ function AddressSearch( | |
return predefinedPlaces?.filter((predefinedPlace) => isPlaceMatchForSearch(searchValue, predefinedPlace)) ?? []; | ||
}, [predefinedPlaces, searchValue]); | ||
|
||
const listEmptyComponent = useCallback( | ||
() => (!isTyping ? null : <Text style={[styles.textLabel, styles.colorMuted, styles.pv4, styles.ph3, styles.overflowAuto]}>{translate('common.noResultsFound')}</Text>), | ||
const listEmptyComponent = useMemo( | ||
() => (!isTyping ? undefined : <Text style={[styles.textLabel, styles.colorMuted, styles.pv4, styles.ph3, styles.overflowAuto]}>{translate('common.noResultsFound')}</Text>), | ||
[isTyping, styles, translate], | ||
); | ||
|
||
const listLoader = useCallback( | ||
const listLoader = useMemo( | ||
() => ( | ||
<View style={[styles.pv4]}> | ||
<ActivityIndicator | ||
|
@@ -462,15 +462,14 @@ function AddressSearch( | |
}} | ||
inbetweenCompo={ | ||
// We want to show the current location button even if there are no recent destinations | ||
predefinedPlaces?.length === 0 && | ||
shouldShowCurrentLocationButton && ( | ||
predefinedPlaces?.length === 0 && shouldShowCurrentLocationButton ? ( | ||
<View style={[StyleUtils.getGoogleListViewStyle(true), styles.overflowAuto, styles.borderLeft, styles.borderRight]}> | ||
<CurrentLocationButton | ||
onPress={getCurrentLocation} | ||
isDisabled={isOffline} | ||
/> | ||
</View> | ||
) | ||
) : undefined | ||
} | ||
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. |
||
placeholder="" | ||
listViewDisplayed | ||
|
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
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.
useCallback
returns a function whileuseMemo
returns the ReactElement itself.Same with
listLoaderComponent
.