Skip to content

Commit

Permalink
AC-234 description and styles from dashboard page updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Minotriz02 authored and Minotriz02 committed Sep 20, 2024
1 parent 974de96 commit ba7ee84
Showing 1 changed file with 31 additions and 6 deletions.
37 changes: 31 additions & 6 deletions src/src/pages/dashboard/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,20 +166,31 @@ const Dashboard = () => {
</div>
) : (
<>
<Col className="bg-white rounded p-4 my-2">
<Col className="bg-white rounded p-4 my-2 text-dark">
<div className="d-flex justify-content-between mb-2">
<Form.Select aria-label="Periodo de tiempo" className="w-auto">
<option>Últimos 7 días</option>
<option value="1">Últimos 15 días</option>
<option value="2">Últimos 30 días</option>
</Form.Select>
<Button variant="primary">
<Button variant="primary text-light">
Comparar con datos satelitales
</Button>
</div>

<h4>{currentStation?.name}</h4>
<hr />
<p>
La estación meteorológica <b>{currentStation?.name}</b> está
ubicada en{" "}
<b>
{currentStation?.latitude + ", " + currentStation?.longitude}.
</b>
Su principal objetivo es monitorear y registrar las condiciones
climáticas locales, proporcionando datos precisos y en tiempo
real sobre la temperatura, humedad, velocidad del viento,
presión atmosférica y precipitación.
</p>
{currentStation?.latitude && currentStation?.longitude ? (
<MapContainer
center={[currentStation.latitude, currentStation.longitude]}
Expand Down Expand Up @@ -209,9 +220,23 @@ const Dashboard = () => {
</Col>
<Row>
<Col md={6} className="mb-4">
<div className="bg-light rounded p-4">
<div className="bg-white rounded p-4 text-dark">
<h5>Temperatura máxima</h5>
<hr />
{/* <p>
La gráfica muestra la evolución de la temperatura máxima
registrada en la estación meteorológica{" "}
<b>{currentStation?.name}</b> durante los últimos{" "}
<b>7 días</b> días. En ella se destaca que el día con la
temperatura más alta fue el <b>{}</b>,
alcanzando un máximo de{" "}
<b>{Math.max(...data.tempMax.map((item) => item.value))}</b>
°C, mientras que el día más frío fue el [Fecha del día más
frío], con una temperatura de [Temperatura mínima]°C. Esta
visualización permite analizar las variaciones diarias de
temperatura y ofrece una referencia clara para identificar
patrones climáticos recientes en la región.
</p> */}
<Line
data={chartConfig(
"Temperatura Máxima (°C)",
Expand All @@ -224,7 +249,7 @@ const Dashboard = () => {
</Col>

<Col md={6} className="mb-4">
<div className="bg-light rounded p-4">
<div className="bg-white rounded p-4 text-dark">
<h5>Temperatura mínima</h5>
<hr />
<Line
Expand All @@ -240,7 +265,7 @@ const Dashboard = () => {
</Row>
<Row>
<Col md={6} className="mb-4">
<div className="bg-light rounded p-4">
<div className="bg-white rounded p-4 text-dark">
<h5>Precipitación</h5>
<hr />
<Line
Expand All @@ -255,7 +280,7 @@ const Dashboard = () => {
</Col>

<Col md={6} className="mb-4">
<div className="bg-light rounded p-4">
<div className="bg-white rounded p-4 text-dark">
<h5>Radiación Solar</h5>
<hr />
<Line
Expand Down

0 comments on commit ba7ee84

Please sign in to comment.