docbrown/app/models/reaction_category.rb

84 lines
2 KiB
Ruby

# See also reactions.yml and initializers/load_reaction_category_list.rb
class ReactionCategory
class << self
def [](slug)
hash[slug.to_sym]
end
def all_slugs
list.map(&:slug)
end
def negative_privileged
list.filter_map { |category| category.slug if category.privileged? && category.negative? }
end
def for_view
list.sort_by(&:position).filter_map { |category| category if category.visible_to_public? }
end
def public
list.sort_by(&:position).filter_map { |category| category.slug if category.visible_to_public? }
end
def notifiable
public
end
def privileged
list.filter_map { |category| category.slug if category.privileged? }
end
def list
@list ||= hash.values
end
def hash
@hash ||= REACTION_CATEGORY_LIST.each_pair.to_h do |slug, category_or_attributes|
as_category = if category_or_attributes.is_a?(ReactionCategory)
category_or_attributes
else
new(**category_or_attributes.merge(slug: slug))
end
[slug.to_sym, as_category]
end
end
end
attr_reader :color, :icon, :name, :position, :privileged, :published, :score, :slug
alias privileged? privileged
alias published? published
def initialize(attributes = {})
attributes.symbolize_keys!
@slug = attributes[:slug]&.to_sym
@name = attributes[:name] || slug.to_s.titleize
@icon = attributes[:icon]
@position = attributes[:position] || 99
@score = attributes[:score] || 1.0
@privileged = attributes[:privileged] || false
@published = attributes.fetch(:published, true)
@color = attributes[:color] || "000000"
end
def positive?
score > 0.0
end
def negative?
score < 0.0
end
def visible_to_public?
!privileged? && published?
end
def as_json(_options = nil)
{
slug: slug,
name: name,
icon: icon,
position: position
}
end
end