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
|
import {matchSorter} from 'match-sorter';
import React, {useEffect, useMemo, useRef, useState} from 'react';
import {
ScrollView,
Text,
TextInput,
TouchableHighlight,
View,
} from 'react-native';
import Icon from 'react-native-vector-icons/MaterialIcons';
import {AppMenu} from '../components/AppMenu';
import {useInstalledApps} from '../hooks/useInstalledApps';
import {AppDetail} from 'react-native-launcher-kit/typescript/Interfaces/InstalledApps';
import {useStableCallback} from '../hooks/useStableCallback';
const AppListItem: React.FC<{app: AppDetail}> = React.memo(({app}) => {
return (
<AppMenu app={app}>
<View className="p-2">
<Text className="text-md font-bold">{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 clearSearchInput = useStableCallback(() => setSearchText(''));
const filteredApps = useMemo(() => {
if (searchText === '') return apps;
return matchSorter(apps, searchText, {keys: ['label', 'packageName']});
}, [apps, searchText]);
// Autofocus
useEffect(() => {
if (!textInputRef.current) return;
if (active) TextInput.State.focusTextInput(textInputRef.current);
}, [active]);
return (
<View className="px-2">
<View className="flex justify-between flex-row items-center gap-2 px-2">
<Icon name="search" size={21} color="#555" className="py-2" />
<TextInput
ref={textInputRef}
autoFocus={false}
autoCorrect={false}
value={searchText}
className="flex-1"
onChangeText={setSearchText}
/>
<TouchableHighlight
underlayColor="#222"
onPress={clearSearchInput}
className="p-2">
<Icon name="close" size={21} color="#aaa" />
</TouchableHighlight>
</View>
<ScrollView contentInsetAdjustmentBehavior="automatic">
<View className="flex-1">
{filteredApps.map((app, index) => (
<AppListItem app={app} key={app.packageName + index} />
))}
</View>
</ScrollView>
</View>
);
});
|