-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.tsx
105 lines (95 loc) · 3 KB
/
App.tsx
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import React, { useEffect, useRef, useState } from "react";
import { ScrollView, StatusBar, SafeAreaView, Button } from "react-native";
import { Modalize } from "react-native-modalize";
import { Show, shows } from "./src/utils/shows";
import { ShowItem } from "./src/ShowItem";
import { ShowOptions } from "./src/ShowOptions";
import notifee, { AndroidImportance, EventType } from "@notifee/react-native";
import { newEpisodeNotification } from "./src/utils/notifications";
const App = () => {
const modalizeRef = useRef<Modalize>(null);
const [selectedShow, setSelectedShow] = useState<Show>();
const [bookmarks, setBookmarks] = useState<number[]>([0, 2, 4, 6, 8, 10]);
useEffect(() => {
(async () => {
await notifee.setNotificationCategories([
{
id: "new-episode",
actions: [
{ id: "default", title: "Watch Now", foreground: true },
{ id: "bookmark", title: "Save For Later" },
],
},
]);
})();
return notifee.onForegroundEvent(async ({ type, detail }) => {
if (
type === EventType.ACTION_PRESS &&
detail.pressAction?.id === "bookmark"
) {
setBookmarks([
...bookmarks,
parseInt(detail.notification?.data?.showId as string),
]);
} else if (
detail.pressAction?.id === "dismiss" &&
detail.notification?.id
) {
await notifee.cancelNotification(detail.notification.id);
}
});
}, []);
const onSelectShow = (show: Show) => {
setSelectedShow(show);
modalizeRef.current?.open();
};
const toggleBookmark = (show: Show, bookmarked: boolean) => {
if (bookmarked) {
const updatedBookmark = bookmarks.filter((id) => id !== show.id);
setBookmarks(updatedBookmark);
} else {
setBookmarks([...bookmarks, show.id]);
}
};
async function onDisplayNotification() {
await notifee.requestPermission();
await notifee.createChannel({
id: "general",
name: "General",
importance: AndroidImportance.HIGH,
});
// Display a notification
await notifee.displayNotification(newEpisodeNotification);
}
return (
<SafeAreaView>
<StatusBar barStyle="dark-content" backgroundColor="#fff" />
<Button
title="Display Notification"
onPress={() => onDisplayNotification()}
/>
<ScrollView
style={{ marginVertical: 10 }}
contentContainerStyle={{
flexDirection: "row", // arrange posters in rows
flexWrap: "wrap",
backgroundColor: "#fff",
}}
>
{shows.map((show) => (
<ShowItem
key={show?.id}
show={show}
bookmarked={bookmarks.includes(show?.id)}
onSelectShow={onSelectShow}
toggleBookmark={toggleBookmark}
/>
))}
</ScrollView>
<Modalize ref={modalizeRef} adjustToContentHeight>
<ShowOptions show={selectedShow} />
</Modalize>
</SafeAreaView>
);
};
export default App;