Add: - service/api-device-token.ts Fix: - app/(application)/(user)/home.tsx - app/(application)/(user)/test-notifications.tsx - app/_layout.tsx - components/_ShareComponent/NotificationInitializer.tsx - context/AuthContext.tsx - hooks/use-foreground-notifications.ts - screens/Home/HeaderBell.tsx - service/api-notifications.ts ### No Issue
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { apiConfig } from "./api-config";
|
|
|
|
type DeviceTokenData = {
|
|
fcmToken: string;
|
|
platform: string;
|
|
deviceId: string;
|
|
model: string;
|
|
appVersion: string;
|
|
userId: string;
|
|
};
|
|
|
|
export async function apiDeviceRegisterToken({
|
|
data,
|
|
}: {
|
|
data: DeviceTokenData;
|
|
}) {
|
|
try {
|
|
const response = await apiConfig.post(`/mobile/auth/device-tokens`, {
|
|
data: data,
|
|
});
|
|
console.log(
|
|
"Device token registered:",
|
|
JSON.stringify(response.data, null, 2)
|
|
);
|
|
return response.data;
|
|
} catch (error) {
|
|
console.error("Failed to register device token:", error);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
export async function apiDeviceTokenDeleted({ userId }: { userId: string }) {
|
|
try {
|
|
const response = await apiConfig.delete(
|
|
`/mobile/auth/device-tokens/${userId}`
|
|
);
|
|
console.log("Device token deleted:", response.data);
|
|
return response.data;
|
|
} catch (error) {
|
|
console.error("Failed to delete device token:", error);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
export async function apiGetAllTokenDevice() {
|
|
try {
|
|
const response = await apiConfig.get(`/mobile/auth/device-tokens`);
|
|
console.log("Device token deleted:", response.data);
|
|
return response.data;
|
|
} catch (error) {
|
|
console.error("Failed to delete device token:", error);
|
|
throw error;
|
|
}
|
|
}
|