From b9c7857c5bb16d024fed6544eebf0ef6cd10390f Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sat, 14 Sep 2024 13:26:50 +0100 Subject: feature(mobile): Add proper error handling for server errors --- apps/mobile/app/dashboard/lists/[slug].tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'apps/mobile/app/dashboard/lists') diff --git a/apps/mobile/app/dashboard/lists/[slug].tsx b/apps/mobile/app/dashboard/lists/[slug].tsx index 10b9243d..72e3d0ae 100644 --- a/apps/mobile/app/dashboard/lists/[slug].tsx +++ b/apps/mobile/app/dashboard/lists/[slug].tsx @@ -2,6 +2,7 @@ import { Alert, Platform, View } from "react-native"; import * as Haptics from "expo-haptics"; import { router, Stack, useLocalSearchParams } from "expo-router"; import UpdatingBookmarkList from "@/components/bookmarks/UpdatingBookmarkList"; +import FullPageError from "@/components/FullPageError"; import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView"; import FullPageSpinner from "@/components/ui/FullPageSpinner"; import PageTitle from "@/components/ui/PageTitle"; @@ -14,7 +15,11 @@ export default function ListView() { if (typeof slug !== "string") { throw new Error("Unexpected param type"); } - const { data: list } = api.lists.get.useQuery({ listId: slug }); + const { + data: list, + error, + refetch, + } = api.lists.get.useQuery({ listId: slug }); return ( @@ -25,7 +30,9 @@ export default function ListView() { headerTransparent: true, }} /> - {list ? ( + {error ? ( + refetch()} /> + ) : list ? (