7dc3b4fa8e
Co-authored-by: Eric Bailey <git@esb.lol>
167 lines
4.1 KiB
TypeScript
167 lines
4.1 KiB
TypeScript
import {memo, useCallback, useState} from 'react'
|
|
import {
|
|
ActivityIndicator,
|
|
StyleSheet,
|
|
TouchableOpacity,
|
|
View,
|
|
type ViewStyle,
|
|
} from 'react-native'
|
|
import {useLingui} from '@lingui/react/macro'
|
|
import {StackActions, useNavigation} from '@react-navigation/native'
|
|
|
|
import {usePalette} from '#/lib/hooks/usePalette'
|
|
import {type NavigationProp} from '#/lib/routes/types'
|
|
import {useModerationOpts} from '#/state/preferences/moderation-opts'
|
|
import {useActorAutocompleteQuery} from '#/state/queries/actor-autocomplete'
|
|
import {Link} from '#/view/com/util/Link'
|
|
import {Text} from '#/view/com/util/text/Text'
|
|
import {SearchProfileCard} from '#/screens/Search/components/SearchProfileCard'
|
|
import {atoms as a} from '#/alf'
|
|
import {SearchInput} from '#/components/forms/SearchInput'
|
|
|
|
let SearchLinkCard = ({
|
|
label,
|
|
to,
|
|
onPress,
|
|
style,
|
|
}: {
|
|
label: string
|
|
to?: string
|
|
onPress?: () => void
|
|
style?: ViewStyle
|
|
}): React.ReactNode => {
|
|
const pal = usePalette('default')
|
|
|
|
const inner = (
|
|
<View
|
|
style={[pal.border, {paddingVertical: 16, paddingHorizontal: 12}, style]}>
|
|
<Text type="md" style={[pal.text]}>
|
|
{label}
|
|
</Text>
|
|
</View>
|
|
)
|
|
|
|
if (onPress) {
|
|
return (
|
|
<TouchableOpacity
|
|
onPress={onPress}
|
|
accessibilityLabel={label}
|
|
accessibilityHint="">
|
|
{inner}
|
|
</TouchableOpacity>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Link href={to} asAnchor anchorNoUnderline>
|
|
<View
|
|
style={[
|
|
pal.border,
|
|
{paddingVertical: 16, paddingHorizontal: 12},
|
|
style,
|
|
]}>
|
|
<Text type="md" style={[pal.text]}>
|
|
{label}
|
|
</Text>
|
|
</View>
|
|
</Link>
|
|
)
|
|
}
|
|
SearchLinkCard = memo(SearchLinkCard)
|
|
export {SearchLinkCard}
|
|
|
|
export function DesktopSearch() {
|
|
const {t: l} = useLingui()
|
|
const pal = usePalette('default')
|
|
const navigation = useNavigation<NavigationProp>()
|
|
const [isActive, setIsActive] = useState<boolean>(false)
|
|
const [query, setQuery] = useState<string>('')
|
|
const {data: autocompleteData, isFetching} = useActorAutocompleteQuery(
|
|
query,
|
|
true,
|
|
)
|
|
|
|
const moderationOpts = useModerationOpts()
|
|
|
|
const onChangeText = useCallback((text: string) => {
|
|
setQuery(text)
|
|
setIsActive(text.length > 0)
|
|
}, [])
|
|
|
|
const onPressCancelSearch = useCallback(() => {
|
|
setQuery('')
|
|
setIsActive(false)
|
|
}, [setQuery])
|
|
|
|
const onSubmit = useCallback(() => {
|
|
setIsActive(false)
|
|
if (!query.length) return
|
|
navigation.dispatch(StackActions.push('Search', {q: query}))
|
|
}, [query, navigation])
|
|
|
|
const onSearchProfileCardPress = useCallback(() => {
|
|
setQuery('')
|
|
setIsActive(false)
|
|
}, [])
|
|
|
|
return (
|
|
<View style={[styles.container, pal.view]}>
|
|
<SearchInput
|
|
value={query}
|
|
onChangeText={onChangeText}
|
|
onClearText={onPressCancelSearch}
|
|
onSubmitEditing={onSubmit}
|
|
/>
|
|
{query !== '' && isActive && moderationOpts && (
|
|
<View
|
|
style={[
|
|
pal.view,
|
|
pal.borderDark,
|
|
styles.resultsContainer,
|
|
a.overflow_hidden,
|
|
]}>
|
|
{isFetching && !autocompleteData?.length ? (
|
|
<View style={{padding: 8}}>
|
|
<ActivityIndicator />
|
|
</View>
|
|
) : (
|
|
<>
|
|
<SearchLinkCard
|
|
label={l`Search for "${query}"`}
|
|
to={`/search?q=${encodeURIComponent(query)}`}
|
|
style={
|
|
(autocompleteData?.length ?? 0) > 0
|
|
? {borderBottomWidth: 1}
|
|
: undefined
|
|
}
|
|
/>
|
|
{autocompleteData?.map(item => (
|
|
<SearchProfileCard
|
|
key={item.did}
|
|
profile={item}
|
|
moderationOpts={moderationOpts}
|
|
onPress={onSearchProfileCardPress}
|
|
/>
|
|
))}
|
|
</>
|
|
)}
|
|
</View>
|
|
)}
|
|
</View>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
position: 'relative',
|
|
width: '100%',
|
|
},
|
|
resultsContainer: {
|
|
marginTop: 10,
|
|
flexDirection: 'column',
|
|
width: '100%',
|
|
borderWidth: 1,
|
|
borderRadius: 6,
|
|
},
|
|
})
|