Module: Hyrax::TrophyHelper
- Defined in:
- app/helpers/hyrax/trophy_helper.rb
Instance Method Summary collapse
-
#display_trophy_link(user, id, args = {}, &_block) ⇒ Object
rubocop:disable Metrics/MethodLength.
Instance Method Details
#display_trophy_link(user, id, args = {}, &_block) ⇒ Object
rubocop:disable Metrics/MethodLength
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'app/helpers/hyrax/trophy_helper.rb', line 5 def display_trophy_link(user, id, args = {}, &_block) return unless user trophy = user.trophies.where(work_id: id).exists? trophyclass = trophy ? "trophy-on" : "trophy-off" args[:add_text] ||= t("hyrax.dashboard.my.action.highlight") args[:remove_text] ||= t("hyrax.dashboard.my.action.unhighlight") text = trophy ? args[:remove_text] : args[:add_text] args[:class] = [args[:class], "trophy-class #{trophyclass}"].compact.join(' ') args[:data] ||= {} args[:data]['add-text'] = args[:add_text] args[:data]['remove-text'] = args[:remove_text] args[:data][:url] = hyrax.trophy_work_path(id) link_to '#', class: args[:class], data: args[:data] do yield(text) end end |