Sha256: 3143f89c0960a88ffe0fcd57ff5e0c77878ff820092577c86d2f1115c7514fb3

Contents?: true

Size: 1.74 KB

Versions: 7

Compression:

Stored size: 1.74 KB

Contents

require 'ostruct'

module SearchHelper

  def search_result_target_window
    umlaut_config.lookup!("search.result_link_target","")
  end

  # pass in an openurl context obj.
  # return an OpenStruct with atitle_label, title_label
  def referent_labels(context_obj = @current_context_object)
    ref_meta = context_obj.referent.metadata
    result = OpenStruct.new
    if ref_meta['genre'].blank?
      case @current_context_object.referent.format 
      when  'book'
        result.atitle = 'Chapter/Part Title'
      when @current_context_object.referent.format == 'journal'
        result.atitle = 'Article Title'
      end
      result.title = 'Title'      
    else
      case ref_meta["genre"]
      when /article|journal|issue/
        result.atitle = 'Article Title'
        result.title = 'Journal Title'
      when /bookitem|book/
        result.atitle = 'Chapter/Part Title'
        result.title = 'Book Title'
      when /proceeding|conference/
        result.atitle = 'Proceeding Title'
        result.title = 'Conference Name'
      when 'report'
        result.atitle = 'Report Title'
        result.title = 'Report'
      end
    end
    return result    
  end
  
  # A-Z buttons in search page
  def group_list
    group_list ||= ('A'..'Z').to_a.push('0-9').push('Other')  
  end

  # Date dropdowns in search page
  def date
    years + months + days
  end

  def years
    select_year(nil, {:prompt => true, :start_year => Date.today.year, :end_year => 1950}, {:name => "__year", :class=>"year input-small"})
  end

  def months
    select_month(nil, {:prompt => true, :use_short_month => true}, {:name => "__month", :class=>"month input-small"})
  end

  def days
    select_day(nil, {:prompt => true}, {:name => "__day", :class=>"day input-small"})
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
umlaut-3.3.1 app/helpers/search_helper.rb
umlaut-3.3.0 app/helpers/search_helper.rb
umlaut-3.2.0 app/helpers/search_helper.rb
umlaut-3.1.1 app/helpers/search_helper.rb
umlaut-3.1.0 app/helpers/search_helper.rb
umlaut-3.1.0.pre2 app/helpers/search_helper.rb
umlaut-3.1.0.pre1 app/helpers/search_helper.rb