Sha256: cd9b68d639328f895e21794d862c2ab3c959563bf9d3825efb16ab58d5ed276d

Contents?: true

Size: 1.5 KB

Versions: 2

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true

module Importo
  class ImportColumn
    attr_accessor :proc, :options
    attr_writer :name, :hint, :explanation

    def initialize(name, hint, explanation, options, &block)
      @name = name
      @hint = hint
      @explanation = explanation
      @options = options || {}
      @proc = block
    end

    def attribute
      options[:attribute] || @name
    end

    def name
      name = options[:attribute] || @name
      I18n.t(".column.#{name}", scope: [:importers, options[:scope]], default: name)
    end

    def allowed_names
      return @allowed_names if @allowed_names.present?

      name = options[:attribute] || @name

      @allowed_names = I18n.available_locales.map do |locale|
        I18n.t(".column.#{name}", scope: [:importers, options[:scope]], locale: locale, default: name)
      end.compact.uniq
    end

    def hint
      I18n.t(".hint.#{options[:attribute]}", scope: [:importers, options[:scope]], default: '') if options[:attribute]
    end

    def explanation
      I18n.t(".explanation.#{options[:attribute]}", scope: [:importers, options[:scope]], default: '') if options[:attribute]
    end

    ##
    # If set this allows the user to set a value during upload that overrides the uploaded values.
    def overridable?
      options[:overridable]
    end

    ##
    # Collection of values (name, id) that are valid for this field, if a name is entered it will be replaced by the id during pre-processing
    def collection
      options[:collection]
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
importo-2.0.5 lib/importo/import_column.rb
importo-2.0.4 lib/importo/import_column.rb