aboutsummaryrefslogtreecommitdiff
path: root/src/screens/AppList.tsx
blob: ec83124acaee42a581e671f40f874e66e6d31b96 (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
import {matchSorter} from 'match-sorter';
import React, {useMemo, useState} from 'react';
import {ScrollView, Text, TextInput, View} from 'react-native';
import {AppDetail} from 'react-native-launcher-kit/typescript/Interfaces/InstalledApps';

export const AppList: React.FC<{apps: AppDetail[]; screenIndex: number}> = ({
  apps,
  screenIndex,
}) => {
  const [searchText, setSearchText] = useState('');

  const filteredApps = useMemo(() => {
    if (searchText === '') return apps;

    return matchSorter(apps, searchText, {keys: ['label', 'packageName']});
  }, [apps, searchText]);

  return (
    <View>
      <View>
        <TextInput
          key={screenIndex}
          autoFocus
          autoCorrect={false}
          value={searchText}
          onChangeText={setSearchText}
        />
      </View>

      <ScrollView contentInsetAdjustmentBehavior="automatic">
        <View className="flex-1">
          {filteredApps.map((app, index) => (
            <View className="mt-4 px-4" key={app.packageName + index}>
              <Text className="text-md font-bold dark:text-white">
                {app.label}
              </Text>
              <Text className="text-xs">{app.packageName}</Text>
            </View>
          ))}
        </View>
      </ScrollView>
    </View>
  );
};