Emi Matchu
2667ed49ba
Now that DTI 2020 has been deployed without references to the translations tables, we can stop keeping them in sync! Next step is to drop the tables and be done with them altogether! (I have a backup of the public data for this too, as does this repo!)
36 lines
901 B
Ruby
36 lines
901 B
Ruby
class Color < ApplicationRecord
|
|
has_many :pet_types
|
|
|
|
scope :alphabetical, -> { order(:name) }
|
|
scope :basic, -> { where(basic: true) }
|
|
scope :standard, -> { where(standard: true) }
|
|
scope :nonstandard, -> { where(standard: false) }
|
|
scope :funny, -> { order(:prank) unless pranks_funny? }
|
|
|
|
validates :name, presence: true
|
|
|
|
def as_json(options={})
|
|
{id: id, name: name, human_name: human_name}
|
|
end
|
|
|
|
def human_name
|
|
if prank? && !Color.pranks_funny?
|
|
unfunny_human_name + ' ' + I18n.translate('colors.prank_suffix')
|
|
else
|
|
unfunny_human_name
|
|
end
|
|
end
|
|
|
|
def unfunny_human_name
|
|
if name
|
|
name.split(' ').map { |word| word.capitalize }.join(' ')
|
|
else
|
|
I18n.translate('colors.default_human_name')
|
|
end
|
|
end
|
|
|
|
def self.pranks_funny?
|
|
now = Time.now.in_time_zone('Pacific Time (US & Canada)')
|
|
now.month == 4 && now.day == 1
|
|
end
|
|
end
|