-
-
Notifications
You must be signed in to change notification settings - Fork 301
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
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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 |
There was a problem hiding this comment.
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:
bookbrainz-site/src/client/entity-editor/validators/edition.ts
Lines 36 to 38 in 739b264
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.
There was a problem hiding this comment.
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.
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:
For number 1. your changes using 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. 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: First, create a new test helper for validator functions, based on the existing 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. Finally, let's modify the validators themselves: Now running the edition tests should pass and that's the end of the road! |
Didn't we agree not to allow float values for dimensions and weights the last time this came up? |
Problem
[BB-806]
Can't submit entries with float values for dimensions
Solution
Updated input parsing from
parseInt()
toparseFloat()
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.