From 2fb85590271476a40c3d0d6a9cc4683576ff6074 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Mon, 26 Aug 2024 23:54:10 +0300 Subject: feature(mobile): Allow interacting with images in the app. Fixes #352 --- .../components/bookmarks/ViewBookmarkModal.tsx | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'apps/mobile/components/bookmarks/ViewBookmarkModal.tsx') diff --git a/apps/mobile/components/bookmarks/ViewBookmarkModal.tsx b/apps/mobile/components/bookmarks/ViewBookmarkModal.tsx index 318249eb..6bec88af 100644 --- a/apps/mobile/components/bookmarks/ViewBookmarkModal.tsx +++ b/apps/mobile/components/bookmarks/ViewBookmarkModal.tsx @@ -1,5 +1,7 @@ import React, { useState } from "react"; import { Keyboard, Pressable, Text } from "react-native"; +import ImageView from "react-native-image-viewing"; +import { useAssetUrl } from "@/lib/hooks"; import { BottomSheetBackdrop, BottomSheetModal, @@ -122,15 +124,27 @@ function BookmarkTextView({ bookmark }: { bookmark: ZBookmark }) { } function BookmarkAssetView({ bookmark }: { bookmark: ZBookmark }) { + const [imageZoom, setImageZoom] = useState(false); if (bookmark.content.type !== BookmarkTypes.ASSET) { throw new Error("Wrong content type rendered"); } + const assetSource = useAssetUrl(bookmark.content.assetId); return ( - setImageZoom(false)} + doubleTapToZoomEnabled={true} + images={[assetSource]} /> + + setImageZoom(true)}> + + ); } -- cgit v1.2.3-70-g09d2