class Color < ApplicationRecord
  has_many :pet_types
  has_many :alt_styles
  
  scope :alphabetical, -> { order(:name) }
  scope :basic, -> { where(basic: true) }
  scope :standard, -> { where(standard: true) }
  scope :nonstandard, -> { where(standard: false) }

  validates :name, presence: true
  
  def as_json(options={})
    {id: id, name: name, human_name: human_name}
  end

  def human_name
    if name
      name.split(' ').map { |word| word.capitalize }.join(' ')
    else
      I18n.translate('colors.default_human_name')
    end
  end

  def to_param
    name? ? human_name : id.to_s
  end

  def example_pet_type(preferred_species: nil)
    preferred_species ||= Species.first
    pet_types.order([Arel.sql("species_id = ? DESC"), preferred_species.id],
      "species_id ASC").first
  end

  def default_gender_presentation
    if name.downcase.ends_with? "boy"
      :masc
    elsif name.downcase.ends_with? "girl"
      :fem
    else
      nil
    end
  end

  def self.param_to_id(param)
    param.match?(/\A\d+\Z/) ? param.to_i : find_by_name!(param).id
  end
end