51 lines
No EOL
1.5 KiB
TypeScript
Executable file
51 lines
No EOL
1.5 KiB
TypeScript
Executable file
import * as Notifications from "expo-notifications";
|
|
import * as Device from "expo-device";
|
|
import Constants from "expo-constants";
|
|
import { Platform } from "react-native";
|
|
import { NOTIF_PERMISSION_DENIED } from "common-ui/src/lib/const-strs";
|
|
|
|
export 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") {
|
|
throw new Error(
|
|
NOTIF_PERMISSION_DENIED
|
|
);
|
|
}
|
|
const projectId =
|
|
Constants?.expoConfig?.extra?.eas?.projectId ??
|
|
Constants?.easConfig?.projectId;
|
|
if (!projectId) {
|
|
throw new Error("Project ID not found");
|
|
}
|
|
try {
|
|
const pushTokenString = (
|
|
await Notifications.getExpoPushTokenAsync({
|
|
projectId,
|
|
})
|
|
).data;
|
|
// const pushTokenString = await Notifications.getDevicePushTokenAsync();
|
|
// return pushTokenString.data;
|
|
} catch (e: unknown) {
|
|
throw new Error(`${e}`);
|
|
}
|
|
} else {
|
|
throw new Error("Must use physical device for push notifications");
|
|
}
|
|
} |