blob: 1f903e94fb6ed18321726311816585e2c87c521b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
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 { api } from "@/lib/trpc";
export default function AddNote() {
const [text, setText] = useState("");
const [error, setError] = useState<string | undefined>();
const router = useRouter();
const invalidateAllBookmarks =
api.useUtils().bookmarks.getBookmarks.invalidate;
const { mutate } = api.bookmarks.createBookmark.useMutation({
onSuccess: () => {
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
className="bg-white"
value={text}
onChangeText={setText}
multiline
placeholder="What's on your mind?"
autoFocus
/>
<Button onPress={() => mutate({ type: "text", text })} label="Add Note" />
</View>
);
}
|