-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
787 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[Back to Guides](../README.md) | ||
|
||
# Key Transforms | ||
|
||
Key transforms modify the keys in serialized responses. | ||
|
||
Provided key transforms: | ||
|
||
- `:camel` - ExampleKey | ||
- `:camel_lower` - exampleKey | ||
- `:dashed` - example-key | ||
- `:unaltered` - the original, unaltered key | ||
|
||
|
||
Key translation precedence is as follows: | ||
|
||
##### SerializableResource option | ||
|
||
`key_transform` is provided as an option via render. | ||
|
||
```render json: posts, each_serializer: PostSerializer, key_transform: :camel_lower``` | ||
|
||
##### Configuration option | ||
|
||
`key_transform` is set in `ActiveModelSerializers.config.key_transform`. | ||
|
||
```ActiveModelSerializers.config.key_transform = :camel_lower``` | ||
|
||
##### Adapter default | ||
|
||
Each adapter has a default key transform configured: | ||
|
||
- `Json` - `:unaltered` | ||
- `JsonApi` - `:dashed` |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
module ActiveModelSerializers | ||
module KeyTransform | ||
# Transforms keys to UpperCamelCase or PascalCase. | ||
# | ||
# @example: | ||
# "some_key" => "SomeKey", | ||
# @see {https://github.com/rails/rails/blob/master/activesupport/lib/active_support/inflector/methods.rb#L66-L76 ActiveSupport::Inflector.camelize} | ||
def camel(hash) | ||
hash.deep_transform_keys! { |key| key.to_s.camelize.to_sym } | ||
end | ||
|
||
# Transforms keys to camelCase. | ||
# | ||
# @example: | ||
# "some_key" => "someKey", | ||
# @see {https://github.com/rails/rails/blob/master/activesupport/lib/active_support/inflector/methods.rb#L66-L76 ActiveSupport::Inflector.camelize} | ||
def camel_lower(hash) | ||
hash.deep_transform_keys! { |key| key.to_s.camelize(:lower).to_sym } | ||
end | ||
|
||
# Transforms keys to dashed-case. | ||
# This is the default case for the JsonApi adapter. | ||
# | ||
# @example: | ||
# "some_key" => "some-key", | ||
# @see {https://github.com/rails/rails/blob/master/activesupport/lib/active_support/inflector/methods.rb#L185-L187 ActiveSupport::Inflector.dasherize} | ||
def dashed(hash) | ||
hash.deep_transform_keys! { |key| key.to_s.dasherize.to_sym } | ||
end | ||
|
||
# Returns the hash unaltered | ||
def unaltered(hash) | ||
hash | ||
end | ||
|
||
module_function :camel, :camel_lower, :dashed, :unaltered | ||
end | ||
end |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
require 'test_helper' | ||
|
||
module ActiveModelSerializers | ||
module Adapter | ||
class Json | ||
class KeyCaseTest < ActiveSupport::TestCase | ||
def mock_request(key_transform = nil) | ||
context = Minitest::Mock.new | ||
context.expect(:request_url, URI) | ||
context.expect(:query_parameters, {}) | ||
context.expect(:key_transform, key_transform) | ||
@options = {} | ||
@options[:serialization_context] = context | ||
end | ||
|
||
Post = Class.new(::Model) | ||
class PostSerializer < ActiveModel::Serializer | ||
attributes :id, :title, :body, :publish_at | ||
end | ||
|
||
def setup | ||
ActionController::Base.cache_store.clear | ||
@blog = Blog.new(id: 1, name: 'My Blog!!', special_attribute: 'neat') | ||
serializer = CustomBlogSerializer.new(@blog) | ||
@adapter = ActiveModelSerializers::Adapter::Json.new(serializer) | ||
end | ||
|
||
def test_key_transform_default | ||
mock_request | ||
assert_equal({ | ||
blog: { id: 1, special_attribute: 'neat', articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
|
||
def test_key_transform_global_config | ||
mock_request | ||
result = with_config(key_transform: :camel_lower) do | ||
@adapter.serializable_hash(@options) | ||
end | ||
assert_equal({ | ||
blog: { id: 1, specialAttribute: 'neat', articles: nil } | ||
}, result) | ||
end | ||
|
||
def test_key_transform_serialization_ctx_overrides_global_config | ||
mock_request(:camel) | ||
result = with_config(key_transform: :camel_lower) do | ||
@adapter.serializable_hash(@options) | ||
end | ||
assert_equal({ | ||
Blog: { Id: 1, SpecialAttribute: 'neat', Articles: nil } | ||
}, result) | ||
end | ||
|
||
def test_key_transform_undefined | ||
mock_request(:blam) | ||
result = nil | ||
assert_raises NoMethodError do | ||
result = @adapter.serializable_hash(@options) | ||
end | ||
end | ||
|
||
def test_key_transform_dashed | ||
mock_request(:dashed) | ||
assert_equal({ | ||
blog: { id: 1, :"special-attribute" => 'neat', articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
|
||
def test_key_transform_unaltered | ||
mock_request(:unaltered) | ||
assert_equal({ | ||
blog: { id: 1, special_attribute: 'neat', articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
|
||
def test_key_transform_camel | ||
mock_request(:camel) | ||
assert_equal({ | ||
Blog: { Id: 1, SpecialAttribute: 'neat', Articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
|
||
def test_key_transform_camel_lower | ||
mock_request(:camel_lower) | ||
assert_equal({ | ||
blog: { id: 1, specialAttribute: 'neat', articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.