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 attributes presets #109

Open
Bhacaz opened this issue Mar 24, 2023 · 0 comments
Open

Add attributes presets #109

Bhacaz opened this issue Mar 24, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@Bhacaz
Copy link
Collaborator

Bhacaz commented Mar 24, 2023

The idea is to able to define a subset/preset/view of attributes. It may reduce the number of if are very similaire Serializer class to define.

Example

class UserSerializer
  include BrightSerializer::Serializer
  attributes :id, :name

  view :edit do
    attribute :email, :updated_at, :created_at
  end
end

UserSerializer.new(User.all).serializable_hash
# => {:id=>1, :name=>"John"}
UserSerializer.new(User.find(1), view: :edit).serializable_hash
# => {:id=>1, :name=>"John", :email=>"[email protected]", :updated_at=>"2020-06-21T20:51:10.000Z", :created_at=>"2020-06-21T20:51:10.000Z"}

Idea from https://github.com/procore/blueprinter

@Bhacaz Bhacaz added the enhancement New feature or request label Mar 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant