-
-
Notifications
You must be signed in to change notification settings - Fork 277
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
Add support for decoration in base field handling #3765
base: main
Are you sure you want to change the base?
Conversation
Code Climate has analyzed commit 0e14524 and detected 0 issues on this pull request. View more on Code Climate. |
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.
Hey @enderahmetyurt, this is looking great, thanks a lot for submitting this contribution!
I've just pushed a few small tweaks.
Once we have a test and some documentation in place, this should be good to go. Would you be able to pick those up?
Really appreciate your work on this
Cheers @Paul-Bob it was fun ❤️
|
Yes, @enderahmetyurt Including documentation and tests in each PR is essential. It ensures others are aware of the option and helps guarantee it continues to behave as expected with future changes. |
@placeholder = args[:placeholder] | ||
@autocomplete = args[:autocomplete] || nil |
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.
Do we need the || nil
? I thought they defaulted to nil
.
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.
{}[:autocomplete]
already returns nil
That is, accessing a non-existent key in a hash yields nil
by default.
So if args
doesn't contain :autocomplete
, then args[:autocomplete]
is already nil
.
The expression args[:autocomplete] || nil
is therefore equivalent to nil || nil
, which is redundant.
Description
This PR introduces a new decorate option for field definitions, allowing developers to format the display output only (e.g., in Show and Index views) without affecting the edit forms.
Previously, this was only achievable using the
format_using
option, which applies formatting to both display and edit contexts.This improves code clarity and developer experience by removing unnecessary conditional logic and making the intent more explicit.
Why this is useful:
#3728
Checklist: