From 5ee7d92337197ebb09ff802f9943e9692cb88f1e Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 23 Sep 2024 10:31:38 +0200 Subject: Use alertd service --- app/(tabs)/_layout.tsx | 6 +++--- app/(tabs)/alerts/[id].tsx | 8 -------- app/(tabs)/index.tsx | 25 +++++++------------------ 3 files changed, 10 insertions(+), 29 deletions(-) (limited to 'app') diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index e6852d9..71673d1 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -34,15 +34,15 @@ export default function TabLayout() { /> ); diff --git a/app/(tabs)/alerts/[id].tsx b/app/(tabs)/alerts/[id].tsx index 554c1ed..506d282 100644 --- a/app/(tabs)/alerts/[id].tsx +++ b/app/(tabs)/alerts/[id].tsx @@ -219,14 +219,6 @@ export default function AlertIdScreen() { /> {formatDate(alert.createdAt)} - - - )} diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx index 4168c8f..6344a22 100644 --- a/app/(tabs)/index.tsx +++ b/app/(tabs)/index.tsx @@ -346,33 +346,22 @@ export default function HomeScreen() { movingActivity = "IN_VEHICLE"; } - const response = await fetch( - `${process.env.EXPO_PUBLIC_API_URL}/graphql`, + await fetch( + `${process.env.EXPO_PUBLIC_ALERTD_URL}`, { method: "POST", headers: { - Authorization: `Bearer ${token}`, "Content-Type": "application/json", }, body: JSON.stringify({ - query: ` - mutation NewPosition($input: PositionInput!) { - newPosition(input: $input) { - id userId createdAt latitude longitude movingActivity - } - } - `, - variables: { - input: { - latitude: coords.latitude, - longitude: coords.longitude, - movingActivity, - }, - }, + latitude: coords.latitude, + longitude: coords.longitude, + login: token, + uid: userId, + movingActivity, }), }, ); - const data = await response.json(); } catch (err) { console.error("Error on updating position"); } -- cgit v1.2.3-18-g5258