Sha256: 3b4e5f326bae4ac4bb126cc010fd2079b48d1cd7c14717b8a044d59cea790d3b

Contents?: true

Size: 854 Bytes

Versions: 1

Compression:

Stored size: 854 Bytes

Contents

require_relative "base"
require "administrate/page/table"

module Administrate
  module Field
    class HasMany < Field::Base
      def associated_table
        Administrate::Page::Table.new(associated_dashboard)
      end

      def self.permitted_attribute(attribute)
        { "#{attribute.to_s.singularize}_ids".to_sym => [] }
      end

      def permitted_attribute
        self.class.permitted_attribute(attribute)
      end

      def attribute_key
        permitted_attribute.keys.first
      end

      def candidate_records
        Object.const_get(associated_class_name).all
      end

      private

      def associated_dashboard
        Object.const_get("#{associated_class_name}Dashboard").new
      end

      def associated_class_name
        options.fetch(:class_name, attribute.to_s.singularize.camelcase)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
administrate-0.0.11 lib/administrate/fields/has_many.rb