forked from kingstinct/react-native-device-activity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvents.tsx
More file actions
65 lines (57 loc) · 1.52 KB
/
Events.tsx
File metadata and controls
65 lines (57 loc) · 1.52 KB
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
import React, { useCallback, useEffect, useState } from "react";
import {
ScrollView,
StyleSheet,
Text,
SafeAreaView,
RefreshControl,
} from "react-native";
import * as ReactNativeDeviceActivity from "react-native-device-activity";
import { EventParsed } from "react-native-device-activity/src/ReactNativeDeviceActivity.types";
export function EventsTab() {
const [events, setEvents] = React.useState<EventParsed[]>([]);
const refreshEvents = useCallback(() => {
const eventsParsed = ReactNativeDeviceActivity.getEvents();
setEvents(
eventsParsed.sort(
(a, b) => b.lastCalledAt.valueOf() - a.lastCalledAt.valueOf(),
),
);
}, []);
useEffect(() => {
const listener = ReactNativeDeviceActivity.onDeviceActivityMonitorEvent(
() => {
refreshEvents();
},
);
refreshEvents();
return () => {
listener.remove();
};
}, [refreshEvents]);
const [refreshing, setRefreshing] = useState(false);
const onRefresh = useCallback(() => {
setRefreshing(true);
refreshEvents();
setRefreshing(false);
}, [refreshEvents]);
return (
<SafeAreaView style={{ flex: 1 }}>
<ScrollView
style={styles.container}
refreshControl={
<RefreshControl refreshing={refreshing} onRefresh={onRefresh} />
}
>
<Text>{JSON.stringify(events, null, 2)}</Text>
</ScrollView>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
margin: 10,
flex: 1,
backgroundColor: "#fff",
},
});