| 
									
										
										
										
											2025-07-03 11:44:10 -03:00
										 |  |  | import { useState } from 'react'; | 
					
						
							|  |  |  | import { Box, Paper, Typography, ToggleButton, ToggleButtonGroup, CircularProgress, Alert } from '@mui/material'; | 
					
						
							|  |  |  | import ArrowUpwardIcon from '@mui/icons-material/ArrowUpward'; | 
					
						
							|  |  |  | import ArrowDownwardIcon from '@mui/icons-material/ArrowDownward'; | 
					
						
							|  |  |  | import RemoveIcon from '@mui/icons-material/Remove'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import type { CotizacionBolsa } from '../models/mercadoModels'; | 
					
						
							| 
									
										
										
										
											2025-07-14 11:20:57 -03:00
										 |  |  | import { formatCurrency, formatCurrency2Decimal } from '../utils/formatters'; | 
					
						
							| 
									
										
										
										
											2025-07-03 11:44:10 -03:00
										 |  |  | import { HistoricalChartWidget } from './HistoricalChartWidget'; | 
					
						
							|  |  |  | import { useApiData } from '../hooks/useApiData'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const VariacionMerval = ({ actual, anterior }: { actual: number, anterior: number }) => { | 
					
						
							|  |  |  |     if (anterior === 0) return null; // Evitar división por cero
 | 
					
						
							|  |  |  |     const variacionPuntos = actual - anterior; | 
					
						
							|  |  |  |     const variacionPorcentaje = (variacionPuntos / anterior) * 100; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const isPositive = variacionPuntos > 0; | 
					
						
							|  |  |  |     const isNegative = variacionPuntos < 0; | 
					
						
							|  |  |  |     const color = isPositive ? 'success.main' : isNegative ? 'error.main' : 'text.secondary'; | 
					
						
							|  |  |  |     const Icon = isPositive ? ArrowUpwardIcon : isNegative ? ArrowDownwardIcon : RemoveIcon; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ( | 
					
						
							|  |  |  |         <Box sx={{ display: 'flex', alignItems: 'center', gap: 2, color }}> | 
					
						
							|  |  |  |             <Icon sx={{ fontSize: '2rem' }} /> | 
					
						
							|  |  |  |             <Box> | 
					
						
							|  |  |  |                 <Typography component="span" sx={{ fontWeight: 'bold', fontSize: '1.2rem', display: 'block' }}> | 
					
						
							|  |  |  |                     {formatCurrency(variacionPuntos)} | 
					
						
							|  |  |  |                 </Typography> | 
					
						
							|  |  |  |                 <Typography component="span" sx={{ fontWeight: 'bold', fontSize: '1.2rem' }}> | 
					
						
							|  |  |  |                     ({variacionPorcentaje.toFixed(2)}%) | 
					
						
							|  |  |  |                 </Typography> | 
					
						
							|  |  |  |             </Box> | 
					
						
							|  |  |  |         </Box> | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export const MervalHeroCard = () => { | 
					
						
							|  |  |  |     const { data: allLocalData, loading, error } = useApiData<CotizacionBolsa[]>('/mercados/bolsa/local'); | 
					
						
							|  |  |  |     const [dias, setDias] = useState<number>(30); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const handleRangoChange = ( _event: React.MouseEvent<HTMLElement>, nuevoRango: number | null ) => { | 
					
						
							|  |  |  |         if (nuevoRango !== null) { setDias(nuevoRango); } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     const mervalData = allLocalData?.find(d => d.ticker === '^MERV'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (loading) { return <Box sx={{ display: 'flex', justifyContent: 'center', p: 4 }}><CircularProgress /></Box>; } | 
					
						
							|  |  |  |     if (error) { return <Alert severity="error">{error}</Alert>; } | 
					
						
							|  |  |  |     if (!mervalData) { return <Alert severity="info">No se encontraron datos para el índice MERVAL.</Alert>; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ( | 
					
						
							|  |  |  |         <Paper elevation={3} sx={{ p: 2, mb: 3 }}> | 
					
						
							|  |  |  |             <Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-start', mb: 2 }}> | 
					
						
							|  |  |  |                 <Box> | 
					
						
							| 
									
										
										
										
											2025-07-15 11:20:28 -03:00
										 |  |  |                     <Typography variant="h6" component="h2" sx={{ fontWeight: 'bold' }}>Índice S&P MERVAL</Typography> | 
					
						
							|  |  |  |                     <Typography variant="h4" component="p" sx={{ fontWeight: 'bold', mt:1 }}>{formatCurrency2Decimal(mervalData.precioActual)}</Typography> | 
					
						
							| 
									
										
										
										
											2025-07-03 11:44:10 -03:00
										 |  |  |                 </Box> | 
					
						
							|  |  |  |                 <Box sx={{ pt: 2 }}> | 
					
						
							|  |  |  |                     <VariacionMerval actual={mervalData.precioActual} anterior={mervalData.cierreAnterior} /> | 
					
						
							|  |  |  |                 </Box> | 
					
						
							|  |  |  |             </Box> | 
					
						
							|  |  |  |             <Box sx={{ mt: 2 }}> | 
					
						
							|  |  |  |                 <Box sx={{ display: 'flex', justifyContent: 'flex-end', mb: 1 }}> | 
					
						
							|  |  |  |                     <ToggleButtonGroup value={dias} exclusive onChange={handleRangoChange} size="small"> | 
					
						
							|  |  |  |                         <ToggleButton value={7}>Semanal</ToggleButton> | 
					
						
							|  |  |  |                         <ToggleButton value={30}>Mensual</ToggleButton> | 
					
						
							|  |  |  |                         <ToggleButton value={365}>Anual</ToggleButton> | 
					
						
							|  |  |  |                     </ToggleButtonGroup> | 
					
						
							|  |  |  |                 </Box> | 
					
						
							|  |  |  |                 <HistoricalChartWidget ticker={mervalData.ticker} mercado="Local" dias={dias} /> | 
					
						
							|  |  |  |             </Box> | 
					
						
							|  |  |  |         </Paper> | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | }; |