Sha256: d50a9f355832ccb66d9b3ec5dd04e34182e058a3335fb985df92095d7bd45e0b

Contents?: true

Size: 1.67 KB

Versions: 9

Compression:

Stored size: 1.67 KB

Contents

module Representable
  module Declarative
    def representation_wrap=(name)
      heritage.record(:representation_wrap=, name)

      definitions.wrap = name
    end

    def collection(name, options={}, &block)
      property(name, options.merge(collection: true), &block)
    end

    def hash(name=nil, options={}, &block)
      return super() unless name  # allow Object.hash.

      options[:hash] = true
      property(name, options, &block)
    end

    # Allows you to nest a block of properties in a separate section while still mapping
    # them to the original object.
    def nested(name, options={}, &block)
      options = options.merge(
        getter:   ->(options) { self },
        setter:   ->(options) { },
        instance: ->(options) { self },
      )

      if block
        options[:_nested_builder] = Decorator.nested_builder
        options[:_base]           = Decorator.default_nested_class
      end

      property(name, options, &block)
    end


    include ::Declarative::Schema::DSL # ::property
    include ::Declarative::Schema::Feature
    include ::Declarative::Heritage::DSL

    def default_nested_class
      Module.new # FIXME: make that unnecessary in Declarative
    end


    NestedBuilder = ->(options) do
      Module.new do
        include Representable # FIXME: do we really need this?
        feature *options[:_features]
        include *options[:_base] # base when :inherit, or in decorator.

        module_eval &options[:_block]
      end
    end

    def nested_builder
      NestedBuilder
    end

    def definitions
      @definitions ||= Config.new(Representable::Definition)
    end

    alias_method :representable_attrs, :definitions
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
representable-3.0.1 lib/representable/declarative.rb
representable-3.0.0 lib/representable/declarative.rb
representable-2.4.1 lib/representable/declarative.rb
representable-2.4.0 lib/representable/declarative.rb
representable-2.4.0.rc5 lib/representable/declarative.rb
representable-2.4.0.rc4 lib/representable/declarative.rb
representable-2.4.0.rc3 lib/representable/declarative.rb
representable-2.4.0.rc2 lib/representable/declarative.rb
representable-2.4.0.rc1 lib/representable/declarative.rb