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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
import { Platform, View } from "react-native";
import * as Haptics from "expo-haptics";
import * as ImagePicker from "expo-image-picker";
import { useRouter } from "expo-router";
import UpdatingBookmarkList from "@/components/bookmarks/UpdatingBookmarkList";
import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView";
import PageTitle from "@/components/ui/PageTitle";
import { useToast } from "@/components/ui/Toast";
import useAppSettings from "@/lib/settings";
import { useUploadAsset } from "@/lib/upload";
import { MenuView } from "@react-native-menu/menu";
import { SquarePen } from "lucide-react-native";
function HeaderRight() {
const { toast } = useToast();
const router = useRouter();
const { settings } = useAppSettings();
const { uploadAsset } = useUploadAsset(settings, {
onError: (e) => {
toast({ message: e, variant: "destructive" });
},
});
return (
<MenuView
onPressAction={async ({ nativeEvent }) => {
Haptics.selectionAsync();
if (nativeEvent.event === "note") {
router.navigate("dashboard/add-note");
} else if (nativeEvent.event === "link") {
router.navigate("dashboard/add-link");
} else if (nativeEvent.event === "library") {
const result = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.Images,
quality: 0,
allowsMultipleSelection: false,
});
if (!result.canceled) {
uploadAsset({
type: result.assets[0].mimeType ?? "",
name: result.assets[0].fileName ?? "",
uri: result.assets[0].uri,
});
}
}
}}
actions={[
{
id: "link",
title: "New Link",
image: Platform.select({
ios: "link",
}),
},
{
id: "note",
title: "New Note",
image: Platform.select({
ios: "note.text",
}),
},
{
id: "library",
title: "Photo Library",
image: Platform.select({
ios: "photo",
}),
},
]}
shouldOpenOnLongPress={false}
>
<View className="my-auto px-4">
<SquarePen
color="rgb(0, 122, 255)"
onPress={() => Haptics.selectionAsync()}
/>
</View>
</MenuView>
);
}
export default function Home() {
return (
<CustomSafeAreaView>
<UpdatingBookmarkList
query={{ archived: false }}
header={
<View className="flex flex-row justify-between">
<PageTitle title="Home" />
<HeaderRight />
</View>
}
/>
</CustomSafeAreaView>
);
}
|