-
-
Notifications
You must be signed in to change notification settings - Fork 33
[WIP]Move FormField's custom option validation to field construction #304
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
Draft
ElijahAhianyo
wants to merge
5
commits into
cot-rs:master
Choose a base branch
from
ElijahAhianyo:validate_options
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3036946
Move OptionField validation to Option Initialization
ElijahAhianyo 8f7f34b
add a validation test for email
ElijahAhianyo ed7a058
remove dead test
ElijahAhianyo 13ff380
Merge branch 'master' into validate_options
ElijahAhianyo fd69bff
add some docs to please clippy
ElijahAhianyo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
I think adding a new trait for this isn't ideal. The problem is that it has to be implemented for each
Optionsstruct, and it's not even very useful for the end users—note we only use it in a helper macro (not even a public one). This means that the documentation "The validation is performed whenFormField::with_optionsis called" is not really true, as you can always provide your ownwith_optionsimplementation.I can see the following alternatives, in the order of my preference:
validate()or some similar method (not defined in any trait) on the options struct, if needed (the macro call would change to something likeimpl_form_field!(StringField, StringFieldOptions, "a string", with_validate)for the structs that need to be validated, fro instance.implfor every options struct)What do you think?
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.
I like option 2 the most and it might not require as much work in the end, we could incorporate the default implementation into the
impl_form_field!macro, but leave an escape hatch for custom validation.Go from this:
To this:
Uh oh!
There was an error while loading. Please reload this page.
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.
@seqre
how do you specify custom validation code with your approach?ah, I see thecustom-validationpart. In this case, it's okay (although I don't have a strong preference of 1 or 2).