mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-22 22:06:50 +00:00
Implement a NullAdapter.
This adapter basically doesn't do anything, and just serializes the attributes into plain old JSON.
This commit is contained in:
parent
c6eea916ad
commit
1ea83c8bee
@ -10,6 +10,13 @@ module ActiveModel
|
||||
|
||||
def self.attributes(*attrs)
|
||||
@_attributes.concat attrs
|
||||
|
||||
|
||||
attrs.each do |attr|
|
||||
define_method attr do
|
||||
object.read_attribute_for_serialization(attr)
|
||||
end unless method_defined?(attr)
|
||||
end
|
||||
end
|
||||
|
||||
attr_accessor :object
|
||||
@ -17,5 +24,11 @@ module ActiveModel
|
||||
def initialize(object)
|
||||
@object = object
|
||||
end
|
||||
|
||||
def attributes
|
||||
self.class._attributes.dup.each_with_object({}) do |name, hash|
|
||||
hash[name] = send(name)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
17
lib/active_model/serializer/adapter/null_adapter.rb
Normal file
17
lib/active_model/serializer/adapter/null_adapter.rb
Normal file
@ -0,0 +1,17 @@
|
||||
module ActiveModel
|
||||
class Serializer
|
||||
class Adapter
|
||||
class NullAdapter
|
||||
def initialize(serializer)
|
||||
@serializer = serializer
|
||||
end
|
||||
|
||||
def to_json
|
||||
@serializer.attributes.each_with_object({}) do |(attr, value), h|
|
||||
h[attr] = value
|
||||
end.to_json
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@ -3,3 +3,4 @@ require "active_model/serializer/version"
|
||||
|
||||
require "active_model/serializer"
|
||||
|
||||
require "active_model/serializer/adapter/null_adapter"
|
||||
|
||||
24
test/adapters/null_adapter_test.rb
Normal file
24
test/adapters/null_adapter_test.rb
Normal file
@ -0,0 +1,24 @@
|
||||
require 'test_helper'
|
||||
|
||||
module ActiveModel
|
||||
class Serializer
|
||||
class Adapter
|
||||
class NullAdapterTest < Minitest::Test
|
||||
def setup
|
||||
@profile = Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' })
|
||||
@profile_serializer = ProfileSerializer.new(@profile)
|
||||
|
||||
@adapter = NullAdapter.new(@profile_serializer)
|
||||
end
|
||||
|
||||
def test_null_adapter
|
||||
assert_equal('{"name":"Name 1","description":"Description 1"}',
|
||||
@adapter.to_json)
|
||||
|
||||
JSON
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
8
test/fixtures/poro.rb
vendored
8
test/fixtures/poro.rb
vendored
@ -2,6 +2,14 @@ class Model
|
||||
def initialize(hash={})
|
||||
@attributes = hash
|
||||
end
|
||||
|
||||
def read_attribute_for_serialization(name)
|
||||
if name == :id || name == 'id'
|
||||
object_id
|
||||
else
|
||||
@attributes[name]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
class Profile < Model
|
||||
|
||||
Loading…
Reference in New Issue
Block a user