]> git.openstreetmap.org Git - rails.git/blob - app/helpers/application_helper.rb
Merge branch 'pull/4985'
[rails.git] / app / helpers / application_helper.rb
1 module ApplicationHelper
2   require "rexml/document"
3   include SocialShareButtonHelper
4
5   def linkify(text)
6     if text.html_safe?
7       Rinku.auto_link(text, :urls, tag_builder.tag_options(:rel => "nofollow")).html_safe
8     else
9       Rinku.auto_link(ERB::Util.h(text), :urls, tag_builder.tag_options(:rel => "nofollow")).html_safe
10     end
11   end
12
13   def rss_link_to(args = {})
14     link_to image_tag("RSS.png", :size => "16x16", :class => "align-text-bottom"), args
15   end
16
17   def atom_link_to(args = {})
18     link_to image_tag("RSS.png", :size => "16x16", :class => "align-text-bottom"), args
19   end
20
21   def dir
22     if dir = params[:dir]
23       dir == "rtl" ? "rtl" : "ltr"
24     else
25       I18n.t("html.dir")
26     end
27   end
28
29   def friendly_date(date)
30     tag.time(time_ago_in_words(date), :title => l(date, :format => :friendly), :datetime => date.xmlschema)
31   end
32
33   def friendly_date_ago(date)
34     tag.time(time_ago_in_words(date, :scope => :"datetime.distance_in_words_ago"), :title => l(date, :format => :friendly), :datetime => date.xmlschema)
35   end
36
37   def body_class
38     if content_for? :body_class
39       content_for :body_class
40     else
41       "#{params[:controller]} #{params[:controller]}-#{params[:action]}"
42     end
43   end
44
45   def header_nav_link_class(path)
46     ["nav-link", current_page?(path) ? "text-secondary-emphasis" : "text-secondary"]
47   end
48
49   def application_data
50     data = {
51       :locale => I18n.locale,
52       :preferred_editor => preferred_editor,
53       :preferred_languages => preferred_languages.expand.map(&:to_s)
54     }
55
56     if current_user
57       data[:user] = current_user.id.to_json
58
59       data[:user_home] = { :lat => current_user.home_lat, :lon => current_user.home_lon } if current_user.home_location?
60     end
61
62     data[:location] = session[:location] if session[:location]
63     data[:oauth_token] = oauth_token.token if oauth_token
64
65     data
66   end
67
68   # If the flash is a hash, then it will be a partial with a hash of locals, so we can call `render` on that
69   # This allows us to render html into a flash message in a safe manner.
70   def render_flash(flash)
71     if flash.is_a?(Hash)
72       render flash.with_indifferent_access
73     else
74       flash
75     end
76   rescue StandardError
77     flash.inspect if Rails.env.development?
78   end
79
80   # Generates a set of social share buttons based on the specified options.
81   def render_social_share_buttons(opts = {})
82     sites = opts.fetch(:allow_sites, [])
83     valid_sites, invalid_sites = SocialShareButtonHelper.filter_allowed_sites(sites)
84
85     # Log invalid sites
86     invalid_sites.each do |invalid_site|
87       Rails.logger.error("Invalid site or icon not configured: #{invalid_site}")
88     end
89
90     tag.div(
91       :class => "social-share-button d-flex gap-1 align-items-end flex-wrap mb-3"
92     ) do
93       valid_sites.map do |site|
94         link_options = {
95           :rel => ["nofollow", opts[:rel]].compact,
96           :class => "ssb-icon rounded-circle",
97           :title => I18n.t("application.share.#{site}.title"),
98           :target => "_blank"
99         }
100
101         link_to SocialShareButtonHelper.generate_share_url(site, opts), link_options do
102           image_tag(SocialShareButtonHelper.icon_path(site), :alt => I18n.t("application.share.#{site}.alt"), :size => 28)
103         end
104       end.join.html_safe
105     end
106   end
107 end