Sha256: bc6c33c76c6e423934adc9eb28df4048102ae7c53055f6a7524caf0896c19f4d

Contents?: true

Size: 1.58 KB

Versions: 12

Compression:

Stored size: 1.58 KB

Contents

module Locomotive
  module Wagon

    class ContentTypeFieldDecorator < SimpleDelegator

      include ToHashConcern

      def initialize(entity, persisted = false)
        @persisted = persisted
        super(entity)
      end

      def __attributes__
        %i(name type label hint required localized unique position
          text_formatting select_options
          target inverse_of order_by ui_enabled default group)
      end

      def group
        self[:group] || 'main'
      end

      def type
        self[:type]
      end

      def hint
        self[:hint]
      end

      def position
        self[:position]
      end

      def text_formatting
        self[:text_formatting]
      end

      def target
        return nil unless is_relationship?
        self.target_id
      end

      def inverse_of
        return nil unless is_relationship?
        self[:inverse_of]
      end

      def order_by
        return nil unless is_relationship?
        self[:order_by]
      end

      def ui_enabled
        return nil if self[:ui_enabled].nil?
        self[:ui_enabled]
      end

      def select_options
        return nil if type.to_sym != :select || @persisted

        @_select_options ||= __getobj__.select_options.all.map { |o| SelectOptionDecorator.new(o) }
      end

      class SelectOptionDecorator < SimpleDelegator

        include ToHashConcern

        def __attributes__
          %i(name)
        end

        def name
          translations = __getobj__.name.translations
          translations.empty? ? translations[:any] : translations
        end

      end

    end

  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
locomotivecms_wagon-3.2.0.alpha2 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.2.0.alpha1 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.1.1 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.1.0 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.1.0.beta1 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.0.5 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.0.4 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.0.3 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.0.2 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.0.0 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.0.0.rc0 lib/locomotive/wagon/decorators/content_type_field_decorator.rb
locomotivecms_wagon-3.0.0.beta2 lib/locomotive/wagon/decorators/content_type_field_decorator.rb