| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- //the size of the TabView will follow its parent-container's size.
- import * as React from 'react';
- import { View, Text, useWindowDimensions, StyleSheet, ScrollView, ActivityIndicator, Pressable } from 'react-native';
- import { TabView, SceneMap, TabBar } from 'react-native-tab-view';
- import { formatToChineseDateTime } from '../../util/lib';
- import { useCallback, useMemo, useEffect, useState } from 'react';
- import { notificationStorage } from '../notificationStorage';
- import { router, useFocusEffect } from 'expo-router';
- export interface TabItem {
- title: string;
- description: string;
- date: string;
- }
- interface TabViewComponentProps {
- titles: string[];
- reservationAfter2025: any;
- passingThisPromotionToBell: any;
- }
- const NotificationRow = ({
- promotionObj,
- index,
- viewedNotifications
- }: {
- promotionObj: any;
- index: number;
- viewedNotifications: any;
- }) => {
- const isViewed = viewedNotifications.some(
- (notification: any) => notification.id === promotionObj.id && notification.type === 'promotion'
- );
- const handlePress = async () => {
- // Mark promotion as viewed
- await notificationStorage.markAsViewed(promotionObj.id, 'promotion');
- router.push({
- pathname: '/notificationDetailPage',
- params: { promotion: JSON.stringify(promotionObj) }
- });
- };
- return (
- <Pressable
- onPress={handlePress}
- style={{ opacity: isViewed ? 0.5 : 1 }}
- className={`flex flex-col w-full bg-white space-y-2 p-2 ${index % 2 === 0 ? 'bg-[#e7f2f8]' : 'bg-white'}`}
- >
- <View className="flex flex-row justify-between">
- <Text className="font-[500] text-base">{promotionObj.title}</Text>
- <Text>{formatToChineseDateTime(promotionObj.createdAt)}</Text>
- </View>
- <View>
- <Text numberOfLines={2} ellipsizeMode="tail" className="text-sm">
- {promotionObj.text}
- </Text>
- </View>
- </Pressable>
- );
- };
- const ReservationRow = ({
- reservationObj,
- index,
- viewedNotifications
- }: {
- reservationObj: any;
- index: number;
- viewedNotifications: any;
- }) => {
- const isViewed = viewedNotifications.some(
- (notification: any) => notification?.id === reservationObj?.id && notification.type === 'reservation'
- );
- const handlePress = async () => {
- await notificationStorage.markAsViewed(reservationObj.id, 'reservation');
- if (reservationObj.status.id === '7') {
- router.push({ pathname: '/chargingPage' });
- } else {
- router.push({ pathname: '/chargingDetailPage', params: { promotion: JSON.stringify(reservationObj) } });
- }
- };
- const title =
- reservationObj.status.id === '8' || reservationObj.status.id === '13'
- ? '充電完成'
- : reservationObj.status.id === '7'
- ? '充電進行中'
- : '';
- const text =
- reservationObj.status.id === '8' || reservationObj.status.id === '13'
- ? '親愛的用戶,您的愛車已充滿電完成!請盡快駛離充電站,以便其他車輛使用。感謝您的配合!'
- : reservationObj.status.id === '7'
- ? `您的車輛正在充電中,當時充電百分比為${reservationObj.Soc}%。詳情請按我進入充電頁面查看。`
- : '';
- return (
- <Pressable
- onPress={handlePress}
- style={{ opacity: isViewed ? 0.5 : 1 }}
- className={`flex flex-col w-full bg-white space-y-2 p-2 ${index % 2 === 0 ? 'bg-[#e7f2f8]' : 'bg-white'}`}
- >
- <View className="flex flex-row justify-between">
- <Text className={`font-[400] text-base ${reservationObj.status.id === '7' ? 'font-[700]' : ''}`}>
- {title}
- </Text>
- <Text>{formatToChineseDateTime(reservationObj.createdAt)}</Text>
- </View>
- <View>
- <Text numberOfLines={2} ellipsizeMode="tail" className="text-sm">
- {text}
- </Text>
- </View>
- </Pressable>
- );
- };
- const FirstRoute = ({ loading, reservationAfter2025 }: { loading: boolean; reservationAfter2025: any }) => {
- const [viewedNotifications, setViewedNotifications] = useState([]);
- useFocusEffect(
- useCallback(() => {
- const getViewedNotifications = async () => {
- const notifications = await notificationStorage.getViewedNotifications();
- setViewedNotifications(notifications);
- };
- getViewedNotifications();
- }, [])
- );
- return (
- <ScrollView
- style={{ flex: 1, backgroundColor: 'white', marginTop: 14 }}
- contentContainerStyle={{ paddingBottom: 120 }}
- >
- <View className="flex-1 flex-col">
- {loading ? (
- <View className="items-center justify-center">
- <ActivityIndicator />
- </View>
- ) : (
- <View>
- <View>
- {reservationAfter2025.length === 0 ? (
- <Text className="pl-4">暫時沒有充電資訊。</Text>
- ) : (
- reservationAfter2025
- .sort(
- (a: any, b: any) =>
- new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()
- )
- .filter(
- (reservationObj: any) =>
- reservationObj.status.id === '7' ||
- reservationObj.status.id === '8' ||
- reservationObj.status.id === '13'
- )
- .slice(0, 30)
- .map((reservationObj: any, index: any) => (
- <ReservationRow
- reservationObj={reservationObj}
- index={index}
- key={reservationObj.id}
- viewedNotifications={viewedNotifications}
- />
- ))
- )}
- </View>
- </View>
- )}
- </View>
- </ScrollView>
- );
- };
- const SecondRoute = ({ promotions, loading }: { promotions: TabItem[]; loading: boolean }) => {
- const [viewedNotifications, setViewedNotifications] = useState([]);
- useFocusEffect(
- useCallback(() => {
- const getViewedNotifications = async () => {
- const notifications = await notificationStorage.getViewedNotifications();
- setViewedNotifications(notifications);
- };
- getViewedNotifications();
- }, [])
- );
- return (
- <ScrollView
- style={{ flex: 1, backgroundColor: 'white', marginTop: 14 }}
- contentContainerStyle={{ paddingBottom: 120 }}
- >
- <View className="flex-1 flex-col">
- {loading ? (
- <View className="items-center justify-center">
- <ActivityIndicator />
- </View>
- ) : (
- <View>
- <View>
- {promotions.length === 0 ? (
- <Text className="pl-4">暫時沒有通知消息。</Text>
- ) : (
- promotions
- .sort(
- (a: any, b: any) =>
- new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()
- )
- .slice(0, 30)
- .map((promotionObj: any, index: any) => (
- <NotificationRow
- promotionObj={promotionObj}
- index={index}
- key={promotionObj.id}
- viewedNotifications={viewedNotifications}
- />
- ))
- )}
- </View>
- </View>
- )}
- </View>
- </ScrollView>
- );
- };
- const NotificationTabView: React.FC<TabViewComponentProps> = ({
- titles,
- reservationAfter2025,
- passingThisPromotionToBell
- }) => {
- const layout = useWindowDimensions();
- const [loading, setLoading] = useState(true);
- const renderScene = useCallback(
- ({ route }: { route: any }) => {
- switch (route.key) {
- case 'firstRoute':
- return <FirstRoute loading={loading} reservationAfter2025={reservationAfter2025} />;
- case 'secondRoute':
- return <SecondRoute promotions={passingThisPromotionToBell} loading={loading} />;
- default:
- return null;
- }
- },
- [reservationAfter2025, passingThisPromotionToBell]
- );
- useEffect(() => {
- setLoading(false)
- }, [reservationAfter2025, passingThisPromotionToBell]);
- const [routes] = React.useState([
- { key: 'firstRoute', title: titles[0] },
- { key: 'secondRoute', title: titles[1] }
- ]);
- const [index, setIndex] = React.useState(0);
- const renderTabBar = (props: any) => (
- <TabBar
- {...props}
- indicatorStyle={{
- backgroundColor: '#025c72'
- }}
- style={{
- backgroundColor: 'white',
- borderColor: '#DBE4E8',
- elevation: 0,
- marginHorizontal: 15,
- borderBottomWidth: 0.5
- }}
- />
- );
- return (
- <TabView
- navigationState={{ index, routes }}
- renderTabBar={renderTabBar}
- renderScene={renderScene}
- onIndexChange={setIndex}
- initialLayout={{ width: layout.width }}
- commonOptions={{
- label: ({ route, focused }) => (
- <Text
- style={{
- color: focused ? '#025c72' : '#888888',
- fontWeight: focused ? '900' : 'thin',
- fontSize: 20
- }}
- >
- {route.title}
- </Text>
- )
- }}
- lazy
- />
- );
- };
- export default NotificationTabView;
- const styles = StyleSheet.create({
- container: { flexDirection: 'row' },
- image: { width: 100, height: 100, margin: 15, borderRadius: 10 },
- textContainer: { flexDirection: 'column', gap: 8, marginTop: 20 },
- floatingButton: {
- elevation: 5,
- shadowColor: '#000',
- shadowOffset: { width: 0, height: 2 },
- shadowOpacity: 0.25,
- shadowRadius: 3.84
- }
- });
|