Sha256: 4429d03e9bad19ab6a089062d2c1ed5835a15964a36ddc140aa2f4ada8691662

Contents?: true

Size: 1.34 KB

Versions: 11

Compression:

Stored size: 1.34 KB

Contents

<% if has_user_authentication_provider? and current_user %>
  <%- existing_bookmark = current_user.existing_bookmark_for(document.id) -%>
  <%- 
  # Note these two forms are pretty similar but for different :methods, classes, and labels. 
  # but it was simpler to leave them seperate instead of DRYing them, got confusing trying that.
  # the data-doc-id attribute is used by our JS that converts to a checkbox/label.
  -%>  
  <% unless existing_bookmark %>  

      <%= form_tag( bookmark_path( document ), :method => :put, :class => "bookmark_toggle", "data-doc-id" => document.id, :title=> document[document_show_link_field] ) do %>        
        <%= hidden_field(:bookmark, :title, :value => document[document_show_link_field] ) %>
        <%= submit_tag("Bookmark", :id => "bookmark_toggle_#{document.id.to_s.parameterize}", :class => "bookmark_add") %>
      <% end %>
  
  <% else %>
  
      <%= form_tag( bookmark_path( document ), :method => :delete, :class => "bookmark_toggle", "data-doc-id" => document.id, :title=> document[document_show_link_field]) do %>  
        <%= hidden_field(:bookmark, :title, :value => document[document_show_link_field] ) %>
        <%= submit_tag("Remove bookmark", :id => "bookmark_toggle_#{document.id.to_s.parameterize}", :class => "bookmark_remove") %>
      <% end %>
      
  <% end %>
<% else %>
  &nbsp;
<% end %>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
blacklight-3.4.2 app/views/catalog/_bookmark_control.html.erb
blacklight-3.4.1 app/views/catalog/_bookmark_control.html.erb
blacklight-3.4.0 app/views/catalog/_bookmark_control.html.erb
blacklight-3.3.2 app/views/catalog/_bookmark_control.html.erb
blacklight-3.3.1 app/views/catalog/_bookmark_control.html.erb
blacklight-3.3.0 app/views/catalog/_bookmark_control.html.erb
blacklight-3.2.2 app/views/catalog/_bookmark_control.html.erb
blacklight-3.2.1 app/views/catalog/_bookmark_control.html.erb
blacklight-3.2.0 app/views/catalog/_bookmark_control.html.erb
blacklight-3.2.0pre2 app/views/catalog/_bookmark_control.html.erb
blacklight-3.2.0pre1 app/views/catalog/_bookmark_control.html.erb