Sha256: 99a2903ea4920c642861144295ed2305023f8fc06136edfb8658ac8eff0a53fb

Contents?: true

Size: 860 Bytes

Versions: 6

Compression:

Stored size: 860 Bytes

Contents

module NotificationsHelper

  # An activity object title
  def title_of(act_obj)
    if act_obj.is_a? Comment
      'Re: ' + title_of(act_obj.parent_post)
    elsif act_obj.respond_to? :title and (not act_obj.title.nil?)
      act_obj.title.truncate(30, :separator => ' ')
    elsif act_obj.respond_to? :url and (not act_obj.url.nil?)
      act_obj.url.truncate(30, :separator => ' ')
    else I18n.t('notification.default')
    end
  end

  # An activity object description
  def description_of(act_obj)
    if act_obj.respond_to? :description and (not act_obj.description.nil?)
      sanitize(act_obj.description)
    else
      I18n.t('notification.watch_it')
    end
  end

  # Set locale as per subject preference
  def locale_as(subject)
    if subject.respond_to? :language
      I18n.locale = subject.language || I18n.default_locale
    end
  end

end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
social_stream-0.21.3 base/app/helpers/notifications_helper.rb
social_stream-0.21.2 base/app/helpers/notifications_helper.rb
social_stream-0.21.1 base/app/helpers/notifications_helper.rb
social_stream-base-0.16.1 app/helpers/notifications_helper.rb
social_stream-0.21.0 base/app/helpers/notifications_helper.rb
social_stream-base-0.16.0 app/helpers/notifications_helper.rb