2024-12-12 18:10:21 +00:00
|
|
|
import { useGame } from "@/hooks/useGame"
|
|
|
|
import { FontAwesome6 } from "@expo/vector-icons"
|
|
|
|
import { useEffect, useMemo, useState } from "react"
|
|
|
|
import { View } from "react-native"
|
|
|
|
import { Banner, MD3Colors, ProgressBar, Text } from "react-native-paper"
|
2024-12-12 17:43:56 +00:00
|
|
|
|
|
|
|
export default function PenaltyBanner() {
|
2024-12-12 18:10:21 +00:00
|
|
|
const game = useGame()
|
|
|
|
const penaltyEnd = game.penaltyEnd
|
|
|
|
const hasPenalty = penaltyEnd !== null
|
|
|
|
const penaltyEndDate = useMemo(() => new Date(penaltyEnd || 0), [penaltyEnd])
|
|
|
|
const penaltyEndPretty = penaltyEndDate.toLocaleTimeString(undefined, { hour: '2-digit', minute: '2-digit' })
|
|
|
|
const [remainingTime, setRemainingTime] = useState(0)
|
|
|
|
const prettyRemainingTime = useMemo(() => `${Math.floor(remainingTime / 60).toString().padStart(2, '0')}:${Math.floor(remainingTime % 60).toString().padStart(2, '0')}`, [remainingTime])
|
|
|
|
const iconName = useMemo(() => {
|
|
|
|
switch (Math.abs(remainingTime % 4)) {
|
|
|
|
case 0: return 'hourglass-empty'
|
|
|
|
case 1: return 'hourglass-end'
|
|
|
|
case 2: return 'hourglass-half'
|
|
|
|
case 3: return 'hourglass-start'
|
|
|
|
}
|
|
|
|
}, [remainingTime])
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!hasPenalty)
|
|
|
|
return
|
|
|
|
const interval = setInterval(() => setRemainingTime(Math.floor((penaltyEndDate.getTime() - new Date().getTime()) / 1000)), 1000)
|
|
|
|
return () => clearInterval(interval)
|
|
|
|
}, [hasPenalty, penaltyEndDate])
|
|
|
|
|
2024-12-12 17:43:56 +00:00
|
|
|
return (
|
|
|
|
<View>
|
|
|
|
<Banner
|
2024-12-12 18:10:21 +00:00
|
|
|
visible={hasPenalty}
|
|
|
|
icon={({ size }) => <FontAwesome6 name={iconName} size={size} color={MD3Colors.tertiary80} />}
|
2024-12-12 17:43:56 +00:00
|
|
|
style={{ backgroundColor: MD3Colors.primary30 }}>
|
|
|
|
<View>
|
2024-12-12 18:10:21 +00:00
|
|
|
<Text variant='titleMedium'>Vous avez actuellement une pénalité jusqu'à {penaltyEndPretty}.</Text>
|
|
|
|
<Text variant='titleSmall'>Temps restant : {prettyRemainingTime}</Text>
|
2024-12-12 17:43:56 +00:00
|
|
|
</View>
|
|
|
|
</Banner>
|
2024-12-12 18:10:21 +00:00
|
|
|
<ProgressBar
|
|
|
|
visible={hasPenalty}
|
2024-12-12 23:02:58 +00:00
|
|
|
animatedValue={1 - remainingTime / (30 * 60)}
|
2024-12-12 18:10:21 +00:00
|
|
|
color={MD3Colors.error40}
|
|
|
|
style={{ height: 6 }} />
|
2024-12-12 17:43:56 +00:00
|
|
|
</View>
|
|
|
|
)
|
|
|
|
}
|