You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

search_helper.rb 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # frozen_string_literal: true
  2. # Redmine - project management software
  3. # Copyright (C) 2006-2021 Jean-Philippe Lang
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU General Public License
  7. # as published by the Free Software Foundation; either version 2
  8. # of the License, or (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. module SearchHelper
  19. def highlight_tokens(text, tokens)
  20. return text unless text && tokens && !tokens.empty?
  21. re_tokens = tokens.collect {|t| Regexp.escape(t)}
  22. regexp = Regexp.new "(#{re_tokens.join('|')})", Regexp::IGNORECASE
  23. result = +''
  24. text.split(regexp).each_with_index do |words, i|
  25. if result.length > 1200
  26. # maximum length of the preview reached
  27. result << '...'
  28. break
  29. end
  30. if i.even?
  31. result << h(words.length > 100 ? "#{words.slice(0..44)} ... #{words.slice(-45..-1)}" : words)
  32. else
  33. t = (tokens.index(words.downcase) || 0) % 4
  34. result << content_tag('span', h(words), :class => "highlight token-#{t}")
  35. end
  36. end
  37. result.html_safe
  38. end
  39. def type_label(t)
  40. l("label_#{t.singularize}_plural", :default => t.to_s.humanize)
  41. end
  42. def project_select_tag
  43. options = [[l(:label_project_all), 'all']]
  44. options << [l(:label_my_projects), 'my_projects'] unless User.current.memberships.empty?
  45. options << [l(:label_and_its_subprojects, @project.name), 'subprojects'] unless @project.nil? || @project.descendants.active.empty?
  46. options << [@project.name, ''] unless @project.nil?
  47. label_tag("scope", l(:description_project_scope), :class => "hidden-for-sighted") +
  48. select_tag('scope', options_for_select(options, params[:scope].to_s)) if options.size > 1
  49. end
  50. def render_results_by_type(results_by_type)
  51. links = []
  52. # Sorts types by results count
  53. results_by_type.keys.sort_by {|k| results_by_type[k]}.reverse_each do |t|
  54. c = results_by_type[t]
  55. next if c == 0
  56. text = "#{type_label(t)} (#{c})"
  57. links << link_to(h(text), :q => params[:q], :titles_only => params[:titles_only],
  58. :all_words => params[:all_words], :scope => params[:scope], t => 1)
  59. end
  60. ('<ul>'.html_safe +
  61. links.map {|link| content_tag('li', link)}.join(' ').html_safe +
  62. '</ul>'.html_safe) unless links.empty?
  63. end
  64. end