aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/add-link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/app/dashboard/add-link.tsx')
-rw-r--r--apps/mobile/app/dashboard/add-link.tsx64
1 files changed, 0 insertions, 64 deletions
diff --git a/apps/mobile/app/dashboard/add-link.tsx b/apps/mobile/app/dashboard/add-link.tsx
deleted file mode 100644
index d9773fb4..00000000
--- a/apps/mobile/app/dashboard/add-link.tsx
+++ /dev/null
@@ -1,64 +0,0 @@
-import { useState } from "react";
-import { Text, View } from "react-native";
-import { useRouter } from "expo-router";
-import { Button } from "@/components/ui/Button";
-import { Input } from "@/components/ui/Input";
-import { useToast } from "@/components/ui/Toast";
-import { api } from "@/lib/trpc";
-
-import { BookmarkTypes } from "@hoarder/shared/types/bookmarks";
-
-export default function AddNote() {
- const [text, setText] = useState("");
- const [error, setError] = useState<string | undefined>();
- const { toast } = useToast();
- const router = useRouter();
- const invalidateAllBookmarks =
- api.useUtils().bookmarks.getBookmarks.invalidate;
-
- const { mutate } = api.bookmarks.createBookmark.useMutation({
- onSuccess: (resp) => {
- if (resp.alreadyExists) {
- toast({
- message: "Bookmark already exists",
- });
- }
- invalidateAllBookmarks();
- if (router.canGoBack()) {
- router.replace("../");
- } else {
- router.replace("dashboard");
- }
- },
- onError: (e) => {
- let message;
- if (e.data?.zodError) {
- const zodError = e.data.zodError;
- message = JSON.stringify(zodError);
- } else {
- message = `Something went wrong: ${e.message}`;
- }
- setError(message);
- },
- });
-
- return (
- <View className="flex gap-2 p-4">
- {error && (
- <Text className="w-full text-center text-red-500">{error}</Text>
- )}
- <Input
- value={text}
- onChangeText={setText}
- placeholder="Link"
- autoCapitalize="none"
- inputMode="url"
- autoFocus
- />
- <Button
- onPress={() => mutate({ type: BookmarkTypes.LINK, url: text })}
- label="Add Link"
- />
- </View>
- );
-}