-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotification.js
89 lines (75 loc) · 2.94 KB
/
Notification.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
import { useState, useEffect, useRef } from 'react';
import { Platform } from 'react-native';
import * as Device from 'expo-device';
import * as Notifications from 'expo-notifications';
import 'firebase/compat/firestore';
Notifications.setNotificationHandler({
handleNotification: async () => ({
shouldShowAlert: true,
shouldPlaySound: false,
shouldSetBadge: false,
}),
});
export const schedulePushNotification = async (prname, daysUntilExpiration) => {
await Notifications.scheduleNotificationAsync({
content: {
title: '바코딩의 푸시알림 📬',
body: `${prname}의 유통기한이 ${daysUntilExpiration}일 남았습니다!`, // 제품 이름을 출력
data: { data: 'goes here' },
},
trigger: { seconds: 2 },
});
};
const Notification = () => {
const [expoPushToken, setExpoPushToken] = useState('');
const [notification, setNotification] = useState(false);
const notificationListener = useRef();
const responseListener = useRef();
useEffect(() => {
registerForPushNotificationsAsync().then(token => setExpoPushToken(token));
notificationListener.current = Notifications.addNotificationReceivedListener(notification => {
setNotification(notification);
});
responseListener.current = Notifications.addNotificationResponseReceivedListener(response => {
console.log(response);
});
// Firestore의 실시간 업데이트를 감지하고 푸시 알림 예약
const unsubscribe = listenForUpdates();
return () => {
Notifications.removeNotificationSubscription(notificationListener.current);
Notifications.removeNotificationSubscription(responseListener.current);
unsubscribe(); // 컴포넌트 언마운트 시 실시간 업데이트 리스너 해제
};
}, []);
async function registerForPushNotificationsAsync() {
let token;
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;
}
// Learn more about projectId:
// https://docs.expo.dev/push-notifications/push-notifications-setup/#configure-projectid
token = (await Notifications.getExpoPushTokenAsync({ projectId: '6afda1f7-5c0d-4e15-b294-efbca5a01c6c' })).data;
console.log(token);
} else {
alert('Must use physical device for Push Notifications');
}
return token;
}
}
export default Notification;