1 # frozen_string_literal: true
3 module ApplicationHelper
5 link_attr = 'rel="nofollow" dir="auto"'
7 Rinku.auto_link(text, :urls, link_attr).html_safe
9 Rinku.auto_link(ERB::Util.h(text), :urls, link_attr).html_safe
13 def rss_link_to(args = {})
14 link_to tag.i(:class => "bi bi-rss-fill fs-6", :aria => { :hidden => "true" }), args
19 dir == "rtl" ? "rtl" : "ltr"
25 def friendly_date(date)
26 tag.time(time_ago_in_words(date), :title => l(date, :format => :friendly), :datetime => date.xmlschema)
29 def friendly_date_ago(date)
30 tag.time(time_ago_in_words(date, :scope => :"datetime.distance_in_words_ago"), :title => l(date, :format => :friendly), :datetime => date.xmlschema)
34 if content_for? :body_class
35 content_for :body_class
37 controller_part = params[:controller].tr("/", "-")
38 "#{controller_part} #{controller_part}-#{params[:action]}"
42 def header_nav_link_class(path)
43 ["nav-link", current_page?(path) ? "active text-secondary-emphasis" : "text-secondary"]
48 :locale => I18n.locale,
49 :preferred_editor => preferred_editor,
50 :preferred_languages => preferred_languages.expand.map(&:to_s)
54 data[:user] = current_user.id.to_json
56 data[:user_home] = { :lat => current_user.home_lat, :lon => current_user.home_lon } if current_user.home_location?
59 data[:location] = session[:location] if session[:location]
60 data[:oauth_token] = oauth_token.token if oauth_token
65 # If the flash is a hash, then it will be a partial with a hash of locals, so we can call `render` on that
66 # This allows us to render html into a flash message in a safe manner.
67 def render_flash(flash)
69 render flash.with_indifferent_access
74 flash.inspect if Rails.env.development?