Add: - screens/Admin/AdminNotificationBell.tsx Fix: - app.config.js - app/(application)/(user)/home.tsx - app/(application)/(user)/test-notifications.tsx - app/(application)/admin/_layout.tsx - app/_layout.tsx - components/Notification/NotificationInitializer.tsx - context/AuthContext.tsx - hooks/use-notification-store.tsx - ios/HIPMIBadungConnect/Info.plist - screens/Home/HeaderBell.tsx - service/api-device-token.ts - service/api-notifications.ts ### No Issue
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
// components/HeaderBell.tsx
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { ICON_SIZE_SMALL } from "@/constants/constans-value";
|
|
import { useNotificationStore } from "@/hooks/use-notification-store";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import { router } from "expo-router";
|
|
import { Text, View } from "react-native";
|
|
|
|
export default function AdminNotificationBell() {
|
|
const { unreadCount } = useNotificationStore();
|
|
|
|
return (
|
|
<View style={{ position: "relative" }}>
|
|
<Ionicons
|
|
name="notifications"
|
|
size={ICON_SIZE_SMALL}
|
|
color={MainColor.white}
|
|
/>
|
|
{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>
|
|
);
|
|
}
|