Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementation WeatherForecast #468

Merged
merged 95 commits into from
Jun 15, 2023
Merged

Implementation WeatherForecast #468

merged 95 commits into from
Jun 15, 2023

Conversation

fdelcampo
Copy link
Contributor

No description provided.

Copy link
Contributor

@sebastian-aranda sebastian-aranda left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job @fdelcampo ! I really appreciate you improved and refactored several things. I left comments regarding code quality and a few suggestion, please take a look to them 🙏️

@@ -0,0 +1,10 @@
.svg{
height: 35px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In base to the latest work we are doing with screen sizes... Do you think this should be set with em units?

}

.icon {
width: 50px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In base to the latest work we are doing with screen sizes... Do you think this should be set with em units?

@@ -0,0 +1,10 @@
.svg{
height: 35px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In base to the latest work we are doing with screen sizes... Do you think this should be set with em units?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Commented lines should be removed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this moment not used with a refactor. This file removed

const currentTemperature = this.props.weather?.ambient_temp?.value;
const currentHumidity = this.props.weather?.humidity?.value;
const currentPressure = Math.round(this.props.weather?.pressure?.value * 100) / 100;
const currentPressure = this.props.weather?.pressure?.value; // Math.round(this.props.weather?.pressure?.value * 100) / 100;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment should be removed.

Comment on lines 689 to 691
/* bar: {
continuousBandSize: 5,
}, */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These lines should be removed.

};
}

makeAxisTitle = (title, units) => {
return `${title.toUpperCase()} ${units ? `[${units}]` : ''}`;
return `${title} ${units ? `[${units}]` : ''}`;
// return `${title.toUpperCase()} ${units ? `[${units}]` : ''}`;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line should be removed.

Comment on lines 330 to 333
// {
// calculate: 'datum.colors[datum.name]',
// as: 'color'
// }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These lines should be removed.

Comment on lines +1073 to +1074
// domain: [-1, 10],
// rangeMin: 0,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These lines should be removed.

Comment on lines +1081 to +1082
// domain: [-1, 10],
// rangeMin: 0,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These lines should be removed.

Copy link
Contributor

@sebastian-aranda sebastian-aranda left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to be merged 👍

…ue for angle of arrow, and second position in area
fdelcampo and others added 27 commits June 15, 2023 15:53
…e plot line. Change the plot of the MTDome and Dome, for add axis-y left and right
…the height plot line < 240, when it's without the rule of hover
@fdelcampo fdelcampo merged commit 31163b1 into develop Jun 15, 2023
@sebastian-aranda sebastian-aranda deleted the tickets/LOVE-121 branch September 14, 2023 15:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants