|
37 | 37 | sorted by <%= sort.humanize.downcase %> <span class="caret"></span>
|
38 | 38 | </button>
|
39 | 39 | <ul class="dropdown-menu" role="menu">
|
40 |
| - <li><%= link_to "Sort by published on", search_path(params.except(:controller, :action).merge(s: 'published_on')), class: 'btn-xs' %></li> |
41 |
| - <li><%= link_to "Sort by relevancy", search_path(params.except(:controller, :action).merge(s: nil)), class: 'btn-xs' %></li> |
| 40 | + <li><%= link_to "Sort by published on", search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(s: 'published_on')), class: 'btn-xs' %></li> |
| 41 | + <li><%= link_to "Sort by relevancy", search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(s: nil)), class: 'btn-xs' %></li> |
42 | 42 | </ul>
|
43 | 43 | </div>
|
44 | 44 | </div>
|
|
47 | 47 | <hr>
|
48 | 48 | </div>
|
49 | 49 |
|
50 |
| -<% if @articles.size < 1 && @articles.response.suggest.present? %> |
| 50 | +<% if @articles.size < 1 && @articles.response.suggestions.present? %> |
51 | 51 | <div class="col-md-12">
|
52 | 52 | <p class="alert alert-warning">
|
53 | 53 | No documents have been found.
|
54 |
| - <% if @articles.response.suggest['suggest_title'].present? || @articles.response.suggest['suggest_body'].present? %> |
| 54 | + <% if @articles.response.suggestions['suggest_title'].present? || @articles.response.suggestions['suggest_body'].present? %> |
55 | 55 | Maybe you mean
|
56 |
| - <%= @articles.response.suggest.map { |k,v| v.first['options'] }.flatten.map {|v| v['text']}.uniq.map do |term| |
57 |
| - link_to term, search_path(params.except(:controller, :action).merge q: term) |
| 56 | + <%= @articles.response.suggestions.map { |k,v| v.first['options'] }.flatten.map {|v| v['text']}.uniq.map do |term| |
| 57 | + link_to term, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge q: term) |
58 | 58 | end.to_sentence(last_word_connector: ' or ').html_safe %>?
|
59 | 59 | <% end %>
|
60 | 60 | </p>
|
|
65 | 65 | <% unless @articles.size < 1 %>
|
66 | 66 |
|
67 | 67 | <div class="categories panel panel-default">
|
68 |
| - <p class="panel-heading"><%= link_to 'All Sections →'.html_safe, search_path(params.except(:controller, :action).merge(c: nil))%></p> |
| 68 | + <p class="panel-heading"><%= link_to 'All Sections →'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(c: nil))%></p> |
69 | 69 |
|
70 | 70 | <div class="list-group">
|
71 | 71 | <% @articles.response.response['aggregations']['categories']['categories']['buckets'].each do |c| %>
|
72 | 72 | <%=
|
73 |
| - link_to search_path(params.except(:controller, :action).merge(c: c['key'])), |
| 73 | + link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(c: c['key'])), |
74 | 74 | class: "list-group-item#{' active' if params[:c] == c['key']}" do
|
75 | 75 | c['key'].titleize.html_safe + content_tag(:small, c['doc_count'], class: 'badge').html_safe
|
76 | 76 | end
|
|
80 | 80 | </div>
|
81 | 81 |
|
82 | 82 | <div class="authors panel panel-default">
|
83 |
| - <p class="panel-heading"><%= link_to 'All Authors →'.html_safe, search_path(params.except(:controller, :action).merge(a: nil))%></p> |
| 83 | + <p class="panel-heading"><%= link_to 'All Authors →'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(a: nil))%></p> |
84 | 84 |
|
85 | 85 | <div class="list-group">
|
86 | 86 | <% @articles.response.response['aggregations']['authors']['authors']['buckets'].each do |a| %>
|
87 | 87 | <%=
|
88 |
| - link_to search_path(params.except(:controller, :action).merge(a: a['key'])), |
| 88 | + link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(a: a['key'])), |
89 | 89 | class: "list-group-item#{' active' if params[:a] == a['key']}" do
|
90 | 90 | a['key'].titleize.html_safe + content_tag(:small, a['doc_count'], class: 'badge').html_safe
|
91 | 91 | end
|
|
95 | 95 | </div>
|
96 | 96 |
|
97 | 97 | <div class="authors panel panel-default">
|
98 |
| - <p class="panel-heading"><%= link_to 'Any Date →'.html_safe, search_path(params.except(:controller, :action).merge(w: nil))%></p> |
| 98 | + <p class="panel-heading"><%= link_to 'Any Date →'.html_safe, search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(w: nil))%></p> |
99 | 99 |
|
100 | 100 | <div class="list-group">
|
101 | 101 | <% @articles.response.response['aggregations']['published']['published']['buckets'].each do |w| %>
|
|
104 | 104 | __end = __start.end_of_week
|
105 | 105 | __date = __start.to_date.to_s(:iso)
|
106 | 106 |
|
107 |
| - link_to search_path(params.except(:controller, :action).merge(w: __date)), |
| 107 | + link_to search_path(params.permit(:q, :a, :c, :s, :w, :comments).merge(w: __date)), |
108 | 108 | class: "list-group-item#{' active' if params[:w] == __date}" do
|
109 | 109 | "#{__start.to_date.to_s(:short)} — #{__end.to_date.to_s(:short)}".html_safe + \
|
110 | 110 | content_tag(:small, w['doc_count'], class: 'badge').html_safe
|
|
0 commit comments