Sha256: 74980c528facfa3c6683b81e2bbda2fddeeb50b3f6acef65ce1356140427745c

Contents?: true

Size: 1.21 KB

Versions: 11

Compression:

Stored size: 1.21 KB

Contents

require "simple_form/map_type"

module Plutonium
  module Core
    module Associations
      module Renderers
        class Factory
          extend ::SimpleForm::MapType

          map_type :has_many, to: Plutonium::Core::Associations::Renderers::HasManyRenderer

          def self.build(name, type:, **)
            mapping = mappings[type]
            raise ArgumentError, "Unknown association renderer type #{type}" unless mapping.present?

            mapping.new(name, **)
          end

          def self.for_resource_association(resource_class, attr_name, **options)
            association = resource_class.try(:reflect_on_association, attr_name)
            raise ArgumentError, "#{attr_name} is not a valid association of #{resource_class}" unless association.present?
            raise ArgumentError, "#{association.klass} does is not a resource record" unless association.klass.include?(Plutonium::Resource::Record)

            type = association.macro
            raise NotImplementedError, "#{macro} associations are currently not supported." unless type == :has_many

            options[:reflection] = association
            build(attr_name, type:, **options)
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
plutonium-0.14.1 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.14.0 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.13.3 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.13.2 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.13.1 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.13.0 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.12.14 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.12.13 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.12.12 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.12.11 lib/plutonium/core/associations/renderers/factory.rb
plutonium-0.12.10 lib/plutonium/core/associations/renderers/factory.rb