React Nativeでアプリ開発をしています。
Expoのプッシュ通知を実装しようと思っております。
現状、バックグラウンドでもアプリ起動中でもプッシュ通知が来るようになっています。
実現したいことは、アプリ起動中はプッシュ通知の非表示です。
例えばLINEではメッセージが来た時、
アプリが起動していないまたはバックグラウンドの状態の時のみプッシュ通知がきて、
アプリが起動している時にメッセージが来た場合はプッシュ通知は表示されないような感じです。
ドキュメントが英語なのもあり、どのような書き方をするのかわからない状態です。
おわかりになる方ご教授お願い致します。
js
1import React, { useState, useEffect, useRef } from 'react'; 2import * as Notifications from 'expo-notifications'; 3 4const [ExpoPushToken,setExpoPushToken] = useState(false); 5const [notification, setNotification] = useState(false); 6const notificationListener = useRef(); 7 8useEffect(() => { 9 10 Notifications.setNotificationHandler({ 11 handleNotification: async () => ({ 12 shouldShowAlert: true, 13 shouldPlaySound: false, 14 shouldSetBadge: false, 15 }), 16 }); 17 18 registerForPushNotificationsAsync().then(token => setExpoPushToken(token)); 19 20 notificationListener.current = Notifications.addNotificationReceivedListener(notification => { 21 setNotification(notification); 22 23}, [ExpoPushToken]); 24
あなたの回答
tips
プレビュー