import { View, TouchableOpacity, Image as NativeImage, Text, Animated, useWindowDimensions, } from "react-native"; import React, { useState, useRef, useCallback } from "react"; import { useTailwind } from "tailwind-rn"; import { useSafeAreaInsets } from "react-native-safe-area-context"; import { Badge } from "@rneui/themed"; import { TabView, SceneMap, TabBar } from "react-native-tab-view"; import MessageList from "../components/MessageList"; export default function NoticeNav({ navigation }) { const [data, setData] = useState([]); const [openNotices, setOpenNotices] = useState(false); const tailwind = useTailwind(); const insets = useSafeAreaInsets(); const mesListEl = useRef(null); //tab组件相关 const layout = useWindowDimensions(); const [index, setIndex] = useState(0); const [routes] = useState([{ key: "list", title: "消息" }]); const renderScene = useCallback( SceneMap({ list: () => , }), [] ); const handleReadAll = useCallback(() => { mesListEl.current.readAllMsg(); }, []); const renderIndicator = useCallback((props) => { const { position, navigationState, getTabWidth } = props; const inputRange = [0, 1]; const translateX = position.interpolate({ inputRange: inputRange, outputRange: inputRange.map((x) => { return x * getTabWidth(navigationState.index); }), }); return ( ); }, []); const renderTabBar = useCallback( (props) => ( navigation.navigate("Search")} > ), [] ); return ( // // {/* 广告轮播 */} // // {/* 官方消息 */} // // navigation.navigate("SystemNotice")} // style={{ // ...tailwind("flex flex-row items-center py-4 mb-2 rounded-xl"), // backgroundColor: "#ffffff1a", // }} // > // // // // // // // // 系统通知 // // // 官方 // // // // 官方消息通知 // // // // // 11:00 // // // // 1 // // // // // // navigation.navigate("ActiveNotice")} // style={{ // ...tailwind("flex flex-row items-center py-4 rounded-xl"), // backgroundColor: "#ffffff1a", // }} // > // // // // // // // // 活动消息 // // // 官方 // // // // 展示相关活动推送信息 // // // // // 11:00 // // // // 99 // // // // // // // {/* 私聊消息 */} // // // navigation.navigate("MessageDetail", { // mid: 1, // }) // } // style={{ // ...tailwind("flex flex-row items-center py-4 mb-2 rounded-xl"), // backgroundColor: "#333333", // }} // > // // // // // // // // 铁粉空间官网 // // // 官方客服 // // // // 请回复您的相关消息 // // // // // 11:00 // // // // 1 // // // // // // // ); } const MessageItem = ({ title, newestContent, time, count, backgroundColor, paddingVertical, navigation, badge, icon, }) => { const tailwind = useTailwind(); return ( {title} {badge && ( {badge} )} {newestContent} {time} ); };