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

BB-806: add validation for float values in width, height, depth fields #1137

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Monika-Dangar
Copy link

Problem

[BB-806]
Can't submit entries with float values for dimensions

Solution

Updated input parsing from parseInt() to parseFloat() to accept float values so validation can notify users of invalid inputs.

Areas of Impact

  • edition-section.tsx: Modified input parsing and validation for dimensions.
  • edition-section-merge.tsx: Applied the same changes for consistency.

Copy link
Member

@MonkeyDo MonkeyDo left a comment

Choose a reason for hiding this comment

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

The config/config.json.example file should not be deleted

@@ -333,13 +333,13 @@ function mapDispatchToProps(dispatch: Dispatch<Action>): DispatchProps {
dispatch(updateAuthorCredit(selectedAuthorCredit));
},
onDepthChange: (event) => dispatch(debouncedUpdateDepth(
event.target.value ? parseInt(event.target.value, 10) : null
event.target.value ? parseFloat(event.target.value) : null
Copy link
Member

Choose a reason for hiding this comment

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

These few changes are not going to be sufficient, as we have data validators running on the back-end after the submission.

See for example:

export function validateEditionSectionDepth(value: any): boolean {
return validatePositiveInteger(value);
}

Note that it validates integer value, so the code changes here will make submissions fail.

Please set up the project on your local machine so that you can run your changes and test them, before submitting PRs for the same.

Copy link
Author

Choose a reason for hiding this comment

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

Regarding the issue with the validation not working properly, I understand that the changes I made won't work due to the back-end validation. I am currently looking into it and figuring out a proper solution so that it works seamlessly with the back-end as well. I'll update the PR as soon as I have a fix for that.

…pth fields

Previously, the form rejected decimal values for dimensions without any visual feedback.
@MonkeyDo
Copy link
Member

Hi! Responding here to your message in chat, so that it's not lost in the noise, and because I have a lot to write :)

So there are three parts you're looking at:

  1. one is inputing float values in the website page ()
  2. one is validating the data (on the server) when you create/edit an entity
  3. finally there is storing the value in the database

For number 1. your changes using parseFloat should do the trick 👍


For number 3, indeed there is a change needed to the database schema, as these values are currently set as SMALLINT which can only store integers: https://github.com/metabrainz/bookbrainz-site/blob/3c448384a167abc32bf9402b8fd14f7fd476caf5/sql/schemas/bookbrainz.sql#L349-L352 We can use the REAL type instead: https://www.postgresql.org/docs/current/datatype-numeric.html#DATATYPE-FLOAT

To achieve this, you will need to modify the lines in the bookbrainz.sql schema file I linked to above, but also create a database update file that we can run to modify our DBs (locally and in production) in both directions.
Take for example the last migration script:
https://github.com/metabrainz/bookbrainz-site/tree/master/sql/migrations/2024-02-07-credit-section
The up.sql file should change the type of the relevant columns to REAL, while the down.sql file should change from REAL to INT (in case we need to revert the migration).


For number 2, the best advice I have is to first work on the tests, which will show you the issue, and confirm future changes don't break anything:
To run the Edition validators test file, run the command yarn test test/src/client/entity-editor/validators/test-edition.js.

First, create a new test helper for validator functions, based on the existing testValidatePositiveIntegerFunc: the new testValidatePositiveFloatFunc helper function should test more or less the same test, but adapted to float values.

Then, in the test/src/client/entity-editor/validators/test-edition.js file, you can modify the relevant tests (only for the columns you modified) to use your new testValidatePositiveFloatFunc.
At that point, tests will fail, which is what we expect.

Finally, let's modify the validators themselves:
create a new validator based on validatePositiveInteger called validatePositiveFloat.
Then, in the edition validators file, modify the relevant functions (validateEditionSectionDepth, validateEditionSectionWidth, etc.) to use your new validatePositiveFloat.

Now running the edition tests should pass and that's the end of the road!

@MonkeyDo MonkeyDo changed the title fix(BB-806): add validation for float values in width, height, depth fields BB-806: add validation for float values in width, height, depth fields Mar 20, 2025
@kellnerd
Copy link
Contributor

Didn't we agree not to allow float values for dimensions and weights the last time this came up?
I still don't see the point to capture anything with sub-millimeter accuracy.

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.

None yet

3 participants