about summary refs log tree commit diff
path: root/src/view/com/composer/text-input/mobile/Autocomplete.tsx
blob: 7806241f13663f595436d6c8b8b552ea531ed1b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import React, {useEffect} from 'react'
import {Animated, TouchableOpacity, StyleSheet, View} from 'react-native'
import {observer} from 'mobx-react-lite'
import {UserAutocompleteModel} from 'state/models/discovery/user-autocomplete'
import {useAnimatedValue} from 'lib/hooks/useAnimatedValue'
import {usePalette} from 'lib/hooks/usePalette'
import {Text} from 'view/com/util/text/Text'

export const Autocomplete = observer(
  ({
    view,
    onSelect,
  }: {
    view: UserAutocompleteModel
    onSelect: (item: string) => void
  }) => {
    const pal = usePalette('default')
    const positionInterp = useAnimatedValue(0)

    useEffect(() => {
      Animated.timing(positionInterp, {
        toValue: view.isActive ? 1 : 0,
        duration: 200,
        useNativeDriver: true,
      }).start()
    }, [positionInterp, view.isActive])

    const topAnimStyle = {
      transform: [
        {
          translateY: positionInterp.interpolate({
            inputRange: [0, 1],
            outputRange: [200, 0],
          }),
        },
      ],
    }
    return (
      <View style={[styles.container, view.isActive && styles.visible]}>
        <Animated.View
          style={[
            styles.animatedContainer,
            pal.view,
            pal.border,
            topAnimStyle,
            view.isActive && styles.visible,
          ]}>
          {view.suggestions.slice(0, 5).map(item => (
            <TouchableOpacity
              testID="autocompleteButton"
              key={item.handle}
              style={[pal.border, styles.item]}
              onPress={() => onSelect(item.handle)}
              accessibilityLabel={`Select ${item.handle}`}
              accessibilityHint={`Autocompletes to ${item.handle}`}>
              <Text type="md-medium" style={pal.text}>
                {item.displayName || item.handle}
                <Text type="sm" style={pal.textLight}>
                  &nbsp;@{item.handle}
                </Text>
              </Text>
            </TouchableOpacity>
          ))}
        </Animated.View>
      </View>
    )
  },
)

const styles = StyleSheet.create({
  container: {
    display: 'none',
    height: 250,
  },
  animatedContainer: {
    display: 'none',
    position: 'absolute',
    left: -64,
    right: 0,
    top: 0,
    borderTopWidth: 1,
  },
  visible: {
    display: 'flex',
  },
  item: {
    borderBottomWidth: 1,
    paddingVertical: 16,
    paddingHorizontal: 16,
    height: 50,
  },
})