impress/app/helpers/contribution_helper.rb

60 lines
2.2 KiB
Ruby
Raw Normal View History

2010-11-06 08:52:58 -07:00
module ContributionHelper
def contributed_description(contributed, show_image = true)
2010-11-06 08:52:58 -07:00
case contributed
when Item
contributed_item('item', contributed, show_image)
2010-11-06 08:52:58 -07:00
when SwfAsset
contributed_item('swf_asset', contributed.item, show_image)
2010-11-06 08:52:58 -07:00
when PetType
contributed_pet_type('pet_type', contributed, show_image)
2010-11-06 08:52:58 -07:00
when PetState
contributed_pet_type('pet_state', contributed.pet_type, show_image)
2024-01-24 03:54:43 -08:00
when AltStyle
contributed_alt_style(contributed, show_image)
2010-11-06 08:52:58 -07:00
end
end
def contributed_item(main_key, item, show_image)
2010-11-15 13:44:57 -08:00
if item
link = link_to(item.name, item, :class => 'contributed-name')
description = translate('contributions.contributed_description.parents.item.present_html',
:item_link => link)
output = translate("contributions.contributed_description.main.#{main_key}_html",
:item_description => description)
output << image_tag(item.thumbnail_url) if show_image
output
2010-11-15 13:44:57 -08:00
else
translate('contributions.contributed_description.parents.item.blank')
2010-11-06 08:52:58 -07:00
end
end
PET_TYPE_IMAGE_FORMAT = 'https://pets.neopets.com/cp/%s/1/3.png'
def contributed_pet_type(main_key, pet_type, show_image)
span = content_tag(:span, pet_type.human_name, :class => 'contributed-name')
description = translate('contributions.contributed_description.parents.pet_type_html',
:pet_type_name => span)
output = translate("contributions.contributed_description.main.#{main_key}_html",
:pet_type_description => description)
output << image_tag(sprintf(PET_TYPE_IMAGE_FORMAT, pet_type.image_hash)) if show_image
output
2010-11-06 08:52:58 -07:00
end
2024-01-24 03:54:43 -08:00
def contributed_alt_style(alt_style, show_image)
span = content_tag(:span, alt_style.name, class: 'contributed-name')
output = translate("contributions.contributed_description.main.alt_style_html",
alt_style_name: span)
output << image_tag(alt_style.thumbnail_url) if show_image
2024-01-24 03:54:43 -08:00
output
end
2010-11-06 08:52:58 -07:00
private
def output(&block)
raw([].tap(&block).join(' '))
end
def translate_contributed_suffix(key)
translate "contributions.contributed_description.suffix.#{key}"
end
2010-11-06 08:52:58 -07:00
end