2023-05-22 00:12:14 +03:00
|
|
|
import { isMobileSafariIos } from './helpers';
|
|
|
|
|
|
|
|
export function arePushNotificationSupported() {
|
|
|
|
return 'Notification' in window && 'serviceWorker' in navigator && 'PushManager' in window;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function canPushNotificationsBeSupported() {
|
|
|
|
// Mobile safari will return false for supporting push notifications, but
|
|
|
|
// it does support them. So we need to check for mobile safari and return
|
|
|
|
// true if it is.
|
|
|
|
if (isMobileSafariIos()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return 'Notification' in window && 'serviceWorker' in navigator && 'PushManager' in window;
|
2022-05-30 07:52:38 +03:00
|
|
|
}
|