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
|
import {matchSorter} from 'match-sorter';
import React, {
ComponentProps,
useEffect,
useMemo,
useRef,
useState,
} from 'react';
import {Pressable, ScrollView, Text, TextInput, View} from 'react-native';
import Icon from 'react-native-vector-icons/MaterialIcons';
import {AppMenu} from '../components/AppMenu';
import {useInstalledApps} from '../hooks/useInstalledApps';
import {useStableCallback} from '../hooks/useStableCallback';
import {TouchableHighlight} from 'react-native-gesture-handler';
const AppListItem: React.FC<ComponentProps<typeof AppMenu>> = React.memo(
({app, ...props}) => {
return (
<AppMenu app={app} {...props}>
<View className="p-2">
<Text className="text-base">{app.label}</Text>
<Text className="text-xs text-gray-600">{app.packageName}</Text>
</View>
</AppMenu>
);
},
);
export const AppList: React.FC<{active: boolean}> = React.memo(({active}) => {
const {apps} = useInstalledApps();
const textInputRef = useRef<TextInput>(null);
const [searchText, setSearchText] = useState('');
const focusInput = useStableCallback(() => {
if (active)
TextInput.State.focusTextInput(textInputRef.current ?? undefined);
});
const clearSearchInput = useStableCallback(() => {
setSearchText('');
focusInput();
});
const filteredApps = useMemo(() => {
if (searchText === '') return apps;
return matchSorter(apps, searchText, {keys: ['label', 'packageName']});
}, [apps, searchText]);
// Autofocus when active
useEffect(() => {
active && focusInput();
}, [active, focusInput]);
return (
<View className="px-2">
<View className="flex justify-between flex-row items-center gap-2 px-2 border-b border-slate-800">
<Pressable onPress={focusInput} accessible={false}>
<Icon name="search" size={21} color="#666" className="py-2" />
</Pressable>
<TextInput
ref={textInputRef}
autoFocus={false}
autoCorrect={false}
value={searchText}
className="flex-1"
onChangeText={setSearchText}
/>
<TouchableHighlight
underlayColor="#222"
onPress={clearSearchInput}
className="p-2 rounded-full">
<Icon name="close" size={17} color="#666" />
</TouchableHighlight>
</View>
<ScrollView
contentInsetAdjustmentBehavior="automatic"
keyboardShouldPersistTaps="always"
keyboardDismissMode="on-drag"
className="pt-2">
<View className="flex-1">
{filteredApps.map((app, index) => (
<AppListItem app={app} key={app.packageName + index} />
))}
</View>
</ScrollView>
</View>
);
});
|