Sha256: ff7121d7fca7349d19bddac1e65d24e4ba1f4687b307b721ccf3c1436a915a2d

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

# View Helpers for Hydra Batch Edit functionality
module BatchEditHelper 
  
  # determines if the given document id is in the batch
  def item_in_batch?(doc_id)
    session[:batch_document_ids] && session[:batch_document_ids].include?(doc_id) ? true : false
  end

  # Returns true if user has activated batch edit mode in session
  def batch_edit_state
    session[:batch_edit_state] ||= 'off'
  end

  # Displays the batch edit tools.  Put this in your search result page template.  We recommend putting it in catalog/_sort_and_per_page.html.erb
  def batch_edit_tools
    render :partial=>'/batch_edits/tools'
  end
  
  # Displays the button that users click when they are done selecting items for a batch.  Put this in your search result page template.  We put it in catalog/index.html
  def batch_edit_continue 
    render :partial => '/batch_edits/next_page' 
  end

  # Displays the button to select/deselect items for your batch.  Call this in the index partial that's rendered for each search result.
  # @param [Hash] document the Hash (aka Solr hit) for one Solr document
  def batch_edit_select(document)
    render :partial=>'/batch_edits/add_button', :locals=>{:document=>document}
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hydra-batch-edit-0.0.4 app/helpers/batch_edit_helper.rb
hydra-batch-edit-0.0.3 app/helpers/batch_edit_helper.rb
hydra-batch-edit-0.0.2 app/helpers/batch_edit_helper.rb