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
|
import {matchSorter} from 'match-sorter';
import React, {useEffect, useMemo, useRef, useState} from 'react';
import {ScrollView, Text, TextInput, View} from 'react-native';
import {AppDetail} from 'react-native-launcher-kit/typescript/Interfaces/InstalledApps';
import Icon from 'react-native-vector-icons/MaterialIcons';
import {AppMenu} from '../components/AppMenu';
export const AppList: React.FC<{apps: AppDetail[]; active: boolean}> = ({
apps,
active,
}) => {
const textInputRef = useRef<TextInput>(null);
const [searchText, setSearchText] = useState('');
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>
<View className="flex justify-between flex-row items-center gap-2">
<Icon name="search" size={21} color="#aaa" />
<TextInput
ref={textInputRef}
autoFocus={false}
autoCorrect={false}
value={searchText}
className="flex-1"
onChangeText={setSearchText}
/>
</View>
<ScrollView contentInsetAdjustmentBehavior="automatic">
<View className="flex-1">
{filteredApps.map((app, index) => (
<AppMenu app={app} key={app.packageName + index}>
<View className="mt-4 px-4">
<Text className="text-md font-bold dark:text-white">
{app.label}
</Text>
<Text className="text-xs">{app.packageName}</Text>
</View>
</AppMenu>
))}
</View>
</ScrollView>
</View>
);
};
|