sqm-dashboards/app/presenters/subcategory_card_presenter.rb
Liam Morley 4fafe2cb50 Display popover on harvey balls not in a zone
This wraps bootstrap styles in `sqm_bootstrap` which can now selectively
import specific desired pieces of bootstrap styling
2021-10-27 15:21:34 -04:00

35 lines
604 B
Ruby

class SubcategoryCardPresenter
attr_reader :name
def initialize(name:, scale:, score:)
@name = name
@scale = scale
@score = score
end
def harvey_ball_icon
icons_by_zone_type = {
ideal: "full-circle",
approval: "three-quarter-circle",
growth: "half-circle",
watch: "one-quarter-circle",
warning: "full-circle",
no_zone: "full-circle"
}
icons_by_zone_type[zone.type]
end
def color
zone.type.to_s
end
def insufficient_data?
zone.type == :no_zone
end
private
def zone
@scale.zone_for_score(@score)
end
end