Sha256: 73b6271df7e060b782fac44ed74e2882fb95f0a5beae24e06dac94efd095d19b

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

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.is_a? Post and (not act_obj.text.nil?)
      act_obj.text.truncate(30, :separator => ' ')
    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 t('notification.default')
    end
  end

  # An activity object description
  def description_of(act_obj)
    if act_obj.respond_to? :text and (not act_obj.text.nil?)
      sanitize(act_obj.text.truncate(100, :separator =>' '))
    elsif act_obj.respond_to? :description and (not act_obj.description.nil?)
      sanitize(act_obj.description.truncate(100, :separator =>' '))
    else
      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

2 entries across 2 versions & 2 rubygems

Version Path
social_stream-0.18.2 base/app/helpers/notifications_helper.rb
social_stream-base-0.13.2 app/helpers/notifications_helper.rb