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
|
import { Platform, View } from "react-native";
import * as Haptics from "expo-haptics";
import { Stack, useRouter } from "expo-router";
import BookmarkList from "@/components/bookmarks/BookmarkList";
import { MenuView } from "@react-native-menu/menu";
import { SquarePen } from "lucide-react-native";
function HeaderRight() {
const router = useRouter();
return (
<MenuView
onPressAction={({ nativeEvent }) => {
Haptics.selectionAsync();
if (nativeEvent.event === "note") {
router.navigate("dashboard/add-note");
} else if (nativeEvent.event === "link") {
router.navigate("dashboard/add-link");
}
}}
actions={[
{
id: "link",
title: "New Link",
image: Platform.select({
ios: "link",
android: "ic_menu_link",
}),
},
{
id: "note",
title: "New Note",
image: Platform.select({
ios: "note",
android: "ic_menu_note",
}),
},
]}
shouldOpenOnLongPress={false}
>
<View className="mt-2 px-2">
<SquarePen
onPress={() => Haptics.selectionAsync()}
/>
</View>
</MenuView>
);
}
export default function Home() {
return (
<>
<Stack.Screen
options={{
headerRight: () => <HeaderRight />,
}}
/>
<BookmarkList archived={false} />
</>
);
}
|