Sha256: bc8273013673b8ebc5f5f22b3bdde57706e85c03d455fc1b242314759cfd654c

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

module Locomotive::Steam
  module Models

    class I18nField

      extend Forwardable

      def_delegators :@translations, :values, :default

      attr_reader :name, :translations

      def initialize(name, translations)
        @name = name
        self.translations = translations
      end

      def initialize_copy(field)
        super
        self.translations = field.translations.dup
      end

      def [](locale)
        @translations[locale]
      end

      def []=(locale, value)
        @translations[locale] = value
      end

      def translations=(translations)
        @translations = (if translations.respond_to?(:fetch)
          translations
        else
          Hash.new { translations }
        end).with_indifferent_access
      end

      def each(&block)
        @translations.each(&block)
      end

      def blank?
        @translations.blank? && @translations[:anything].blank?
      end

      def apply(&block)
        if default
          @translations = Hash.new(yield(default))
        else
          each do |l, _value|
            self[l] = block.arity == 2 ? yield(_value, l) : yield(_value)
          end
        end
        self
      end

      alias :__translations__ :translations

      alias :to_hash :translations

      def serialize(attributes)
        attributes[@name] = @translations
      end

      def to_json
        to_hash.to_json
      end

    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
locomotivecms_steam-1.1.2 lib/locomotive/steam/models/i18n_field.rb
locomotivecms_steam-1.2.0.beta1 lib/locomotive/steam/models/i18n_field.rb
locomotivecms_steam-1.1.1 lib/locomotive/steam/models/i18n_field.rb
locomotivecms_steam-1.1.0 lib/locomotive/steam/models/i18n_field.rb