The Hidrosaver web app is a water tracker. Hidrosaver's purpose is to help people to organize, track and measure their current water consumption.
RM | Name |
---|---|
RM86786 | Arthur Sales Guilherme |
RM89336 | Derek Seiji Lima Sadakane |
RM88426 | Nathália Ferreira Borges |
https://hidrosaver.vercel.app/
The user can add new metrics to his homepage, based on the action. After adding his action, the user can access metrics, and graphs about his consumption.
Clone the repository and inside project folder, you must run npm i && npm run serve
on the terminal and access the Hidrosaver, by default, on http://localhost:8080/
All data about the user and his metrics are saved in the localStorage inside the web browser. The data structure looks like this:
[
{
"day": "05/06/23",
"metrics": {
"banho": { "quantity": 48, "liters": 336 },
"torneira": { "quantity": 220, "liters": 4400 },
"descarga": { "quantity": 0, "liters": 0 }
}
},
{
"day": "03/06/23",
"metrics": {
"banho": { "quantity": 100, "liters": 336 },
"torneira": { "quantity": 220, "liters": 4400 },
"descarga": { "quantity": 340, "liters": 100 }
}
},
{
"day": "02/06/23",
"metrics": {
"banho": { "quantity": 10, "liters": 10 },
"torneira": { "quantity": 200, "liters": 200 },
"descarga": { "quantity": 340, "liters": 400 }
}
},
{
"day": "01/06/23",
"metrics": {
"banho": { "quantity": 3, "liters": 3 },
"torneira": { "quantity": 123, "liters": 12 },
"descarga": { "quantity": 323, "liters": 32 }
}
}
]