-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
293 lines (267 loc) · 9.18 KB
/
App.js
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import {
StyleSheet,
Text,
View,
SafeAreaView,
StatusBar,
Image,
Platform,
} from "react-native";
import Navigete from "./src/navigate/Navigate";
import React, { useState, useEffect, useRef } from "react";
import { getUserToken } from "./Token_Auth";
import { store } from "./src/Redex/Store";
import { Provider } from "react-redux";
import path from "./src/confige/config";
import axios from "axios";
import * as Device from "expo-device";
import { SocketProvider } from "./src/socket";
import * as Notifications from "expo-notifications";
import * as Linking from 'expo-linking';
import Toast from "react-native-toast-message";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
// Cấu hình để hiển thị thông báo khi ứng dụng mở
Notifications.setNotificationHandler({
handleNotification: async () => ({
shouldShowAlert: true,
shouldPlaySound: true,
shouldSetBadge: true,
}),
});
const Stack = createStackNavigator();
const navigationRef = React.createRef();
export default function App() {
// Tạo ref cho NavigationContainer
const prefix = Linking.createURL('/');
const notificationListener = useRef();
const responseListener = useRef();
const [channels, setChannels] = useState([]);
const [notification, setNotification] = useState(null);
const linking = {
prefixes: [prefix],
config: {
screens: {
Article: "Article/:pramsroute",
Videodetail: "Videodetail/:id", // Định nghĩa route có `chatId`
},
},
};
async function registerForPushNotificationsAsync() {
if (Platform.OS === "android") {
await Notifications.setNotificationChannelAsync("default", {
name: "default",
importance: Notifications.AndroidImportance.MAX,
vibrationPattern: [0, 250, 250, 250],
lightColor: "#FF231F7C",
});
}
if (Device.isDevice) {
const { status: existingStatus } = await Notifications.getPermissionsAsync();
let finalStatus = existingStatus;
if (existingStatus !== "granted") {
const { status } = await Notifications.requestPermissionsAsync();
finalStatus = status;
}
if (finalStatus !== "granted") {
alert("Failed to get push token for push notification!");
return;
}
}
}
useEffect(() => {
registerForPushNotificationsAsync();
if (Platform.OS === "android") {
Notifications.getNotificationChannelsAsync().then((value) =>
setChannels(value ?? [])
);
}
// Lắng nghe thông báo khi nhận được trong lúc app đang mở
notificationListener.current = Notifications.addNotificationReceivedListener((notification) => {
// console.log(prefix, 'có hiển thi thông báo ', notification.request.content.data)
});
// Xử lý khi người dùng nhấn vào thông báo
responseListener.current = Notifications.addNotificationResponseReceivedListener(response => {
// console.log('Người dùng nhấn vào thông báo:', response.notification.request.content.data);
const targetScreen = response.notification.request.content.data.screen;
const pramsroute = response.notification.request.content.data;
if (targetScreen && navigationRef.current) {
// console.log('Điều hướng tới:', targetScreen, 'với ID:', pramsroute);
navigationRef.current.navigate(targetScreen, pramsroute);
} else {
console.log('Không tìm thấy screen hoặc navigationRef');
}
});
return () => {
notificationListener.current &&
Notifications.removeNotificationSubscription(notificationListener.current);
responseListener.current &&
Notifications.removeNotificationSubscription(responseListener.current);
};
}, []);
// useEffect(() => {
// console.log('navigationRef.current:', navigationRef.current);
// if (!navigationRef.current) {
// console.warn("navigationRef chưa được gán chính xác.");
// }
// }, []);
return (
<Provider store={store}>
<StatusBar
animated={true}
backgroundColor="black"
hidden={false}
showHideTransition={true}
/>
<SocketProvider>
<Navigete linking={linking} navigationRef={navigationRef} />
</SocketProvider>
</Provider>
);
}
// import {
// StyleSheet,
// Text,
// View,
// SafeAreaView,
// StatusBar,
// Image,
// Platform,
// } from "react-native";
// import Navigete from "./src/navigate/Navigate";
// import React, { Component, useState, useEffect, useRef } from "react";
// import { getUserToken } from "./Token_Auth";
// import { store } from "./src/Redex/Store";
// import { Provider } from "react-redux";
// const STYLES = ["default", "dark-content", "light-content"];
// const TRANSITIONS = ["fade", "slide", "none"];
// import path from "./src/confige/config";
// import axios from "axios";
// import * as Device from "expo-device";
// import { SocketProvider } from "./src/socket";
// import * as Notifications from "expo-notifications";
// import * as Permissions from "expo-permissions";
// import * as Linking from 'expo-linking';
// const prefix = Linking.createURL('/');
// // import {
// // SafeAreaProvider,
// // useSafeAreaInsets,
// // } from "react-native-safe-area-context";
// import { HandlerNotification } from "./src/Home/Notification/HandlerNotification.js";
// // Cấu hình để hiển thị thông báo khi ứng dụng mở
// Notifications.setNotificationHandler({
// handleNotification: async () => ({
// shouldShowAlert: true,
// shouldPlaySound: false,
// shouldSetBadge: false,
// }),
// });;
// export default function App() {
// const notificationListener = useRef();
// const responseListener = useRef();
// const [channels, setChannels] = useState([]);
// const [notification, setNotification] = useState(false);
// async function registerForPushNotificationsAsync() {
// if (Platform.OS === "android") {
// await Notifications.setNotificationChannelAsync("default", {
// name: "default",
// importance: Notifications.AndroidImportance.MAX,
// vibrationPattern: [0, 250, 250, 250],
// lightColor: "#FF231F7C",
// });
// }
// if (Device.isDevice) {
// const { status: existingStatus } =
// await Notifications.getPermissionsAsync();
// let finalStatus = existingStatus;
// if (existingStatus !== "granted") {
// const { status } = await Notifications.requestPermissionsAsync();
// finalStatus = status;
// }
// if (finalStatus !== "granted") {
// alert("Failed to get push token for push notification!");
// return;
// }
// }
// }
// useEffect(() => {
// registerForPushNotificationsAsync();
// if (Platform.OS === "android") {
// Notifications.getNotificationChannelsAsync().then((value) =>
// setChannels(value ?? [])
// );
// }
// // Listener khi nhận thông báo
// notificationListener.current =
// Notifications.addNotificationReceivedListener((notification) => {
// setNotification(notification);
// });
// // Listener khi người dùng tương tác với thông báo
// responseListener.current =
// Notifications.addNotificationResponseReceivedListener((response) => {
// console.log(response, "responted app.js");
// });
// return () => {
// notificationListener.current &&
// Notifications.removeNotificationSubscription(
// notificationListener.current
// );
// responseListener.current &&
// Notifications.removeNotificationSubscription(responseListener.current);
// };
// }, []);
// // const { onlineUser } = useSocket();
// return (
// <Provider store={store}>
// <StatusBar
// animated={true}
// backgroundColor="black"
// hidden={false}
// showHideTransition={true}
// />
// {/* <StatusBar
// animated={true}
// translucent={true}
// backgroundColor="transparent"
// /> */}
// <SocketProvider>
// {/* <SafeAreaProvider> */}
// <Navigete />
// {/* </SafeAreaProvider> */}
// </SocketProvider>
// </Provider>
// );
// }
// // <View style={{ flex: 1 }}>
// // <Text>cin chaj</Text>
// // <Image
// // style={{
// // width: 200,
// // height: 300,
// // }}
// // source={{ uri:'https://nativeapp.onrender.com'+datas}}
// // />
// // </View>// const fetchDataFromFirestore = async () => {
// // try {
// // const querySnapshot = await getDocs(collection(firestore, 'user'));
// // querySnapshot.forEach((doc) => {
// // // console.log(doc.id, '=>', doc.data());
// // });
// // } catch (error) {
// // console.log(error);
// // }
// // }
// // fetchDataFromFirestore();
// // const login = async () => {
// // try {
// // const { data } = await axios.get(
// // "https://nativeapp.onrender.com/upload/getfile"
// // );
// // console.log(data[0][0]);
// // setdata(data[0][0]["linkFile"]);
// // } catch (err) {
// // console.log(err);
// // }
// // };
// // login();
// // console.log(datas);