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

Add support for decoration in base field handling #3765

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

enderahmetyurt
Copy link
Contributor

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:

  • Simplifies display-only customization.
  • Keeps form input behavior untouched.
  • Makes field declarations cleaner and easier to reason about.

#3728

Checklist:

  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • I have added tests that prove my fix is effective or that my feature works

Copy link

codeclimate bot commented Apr 2, 2025

Code Climate has analyzed commit 0e14524 and detected 0 issues on this pull request.

View more on Code Climate.

@Paul-Bob Paul-Bob added the Enhancement Not necessarily a feature, but something has improved label Apr 3, 2025
Copy link
Contributor

@Paul-Bob Paul-Bob left a 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

@enderahmetyurt
Copy link
Contributor Author

Cheers @Paul-Bob it was fun ❤️

Once we have a test and some documentation in place, this should be good to go. Would you be able to pick those up? I can do whatever we need. Do I need to write some tests and documentation?

@Paul-Bob
Copy link
Contributor

Paul-Bob commented Apr 3, 2025

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
Copy link
Collaborator

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.

Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement Not necessarily a feature, but something has improved
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants