Add: - app/(application)/(user)/test-notifications.tsx - components/_ShareComponent/NotificationInitializer.tsx - screens/Home/HeaderBell.tsx - service/api-notifications.ts Fix: - app/(application)/(user)/home.tsx - app/_layout.tsx - screens/Authentication/LoginView.tsx ### No Issue
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
// components/HeaderBell.tsx
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import { View, Text } from "react-native";
|
|
import { router } from "expo-router";
|
|
import { useNotificationStore } from "@/hooks/use-notification-store";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
|
|
export default function HeaderBell() {
|
|
const { notifications } = useNotificationStore();
|
|
const unreadCount = notifications.filter((n) => !n.read).length;
|
|
console.log("NOTIF:", JSON.stringify(notifications, null, 2));
|
|
|
|
return (
|
|
<View style={{ position: "relative" }}>
|
|
<Ionicons
|
|
name="notifications"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => {
|
|
router.push("/notifications");
|
|
}}
|
|
/>
|
|
{unreadCount > 0 && (
|
|
<View
|
|
style={{
|
|
position: "absolute",
|
|
top: -4,
|
|
right: -4,
|
|
backgroundColor: "red",
|
|
borderRadius: 8,
|
|
minWidth: 16,
|
|
height: 16,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
paddingHorizontal: 2,
|
|
}}
|
|
>
|
|
<Text style={{ color: "white", fontSize: 10, fontWeight: "bold" }}>
|
|
{unreadCount > 9 ? "9+" : unreadCount}
|
|
</Text>
|
|
</View>
|
|
)}
|
|
</View>
|
|
);
|
|
}
|