Show handle in recent searches and fix truncation (#4917)

Co-authored-by: Hailey <me@haileyok.com>
zio/stable
Roland Crosby 2024-08-11 19:12:36 -04:00 committed by GitHub
parent 88f879ffe9
commit 75c19b2dc2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 9 deletions

View File

@ -894,13 +894,6 @@ let AutocompleteResults = ({
}
AutocompleteResults = React.memo(AutocompleteResults)
function truncateText(text: string, maxLength: number) {
if (text.length > maxLength) {
return text.substring(0, maxLength) + '...'
}
return text
}
function SearchHistory({
searchHistory,
selectedProfiles,
@ -965,8 +958,10 @@ function SearchHistory({
style={styles.profileAvatar as StyleProp<ImageStyle>}
accessibilityIgnoresInvertColors
/>
<Text style={[pal.text, styles.profileName]}>
{truncateText(profile.displayName || '', 12)}
<Text
style={[pal.text, styles.profileName]}
numberOfLines={1}>
{profile.displayName || profile.handle}
</Text>
</Link>
<Pressable
@ -1118,6 +1113,7 @@ const styles = StyleSheet.create({
borderRadius: 45,
},
profileName: {
width: 78,
fontSize: 12,
textAlign: 'center',
marginTop: 5,