2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 22:53:20 +01:00
|
|
|
module ApplicationHelper
|
2018-07-05 18:31:35 +02:00
|
|
|
DANGEROUS_SCOPES = %w(
|
|
|
|
read
|
|
|
|
write
|
|
|
|
follow
|
|
|
|
).freeze
|
|
|
|
|
2016-03-12 19:46:06 +01:00
|
|
|
def active_nav_class(path)
|
|
|
|
current_page?(path) ? 'active' : ''
|
|
|
|
end
|
2017-04-16 03:40:33 +02:00
|
|
|
|
2017-12-06 11:41:57 +01:00
|
|
|
def active_link_to(label, path, **options)
|
2017-08-16 17:12:58 +02:00
|
|
|
link_to label, path, options.merge(class: active_nav_class(path))
|
|
|
|
end
|
|
|
|
|
2017-04-16 03:40:33 +02:00
|
|
|
def show_landing_strip?
|
|
|
|
!user_signed_in? && !single_user_mode?
|
|
|
|
end
|
2017-04-24 18:03:53 +02:00
|
|
|
|
2017-05-16 00:41:09 +02:00
|
|
|
def open_registrations?
|
|
|
|
Setting.open_registrations
|
|
|
|
end
|
|
|
|
|
2017-06-19 15:12:31 +02:00
|
|
|
def open_deletion?
|
|
|
|
Setting.open_deletion
|
|
|
|
end
|
|
|
|
|
2017-04-24 18:03:53 +02:00
|
|
|
def add_rtl_body_class(other_classes)
|
2018-01-29 00:22:20 +01:00
|
|
|
other_classes = "#{other_classes} rtl" if locale_direction == 'rtl'
|
2017-04-24 18:03:53 +02:00
|
|
|
other_classes
|
|
|
|
end
|
2017-04-26 15:45:27 +02:00
|
|
|
|
2018-01-29 00:22:20 +01:00
|
|
|
def locale_direction
|
|
|
|
if [:ar, :fa, :he].include?(I18n.locale)
|
|
|
|
'rtl'
|
|
|
|
else
|
|
|
|
'ltr'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-26 15:45:27 +02:00
|
|
|
def favicon_path
|
|
|
|
env_suffix = Rails.env.production? ? '' : '-dev'
|
2017-05-19 02:41:56 +02:00
|
|
|
"/favicon#{env_suffix}.ico"
|
2017-04-26 15:45:27 +02:00
|
|
|
end
|
2017-04-27 15:17:55 +02:00
|
|
|
|
|
|
|
def title
|
|
|
|
Rails.env.production? ? site_title : "#{site_title} (Dev)"
|
|
|
|
end
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2018-07-05 18:31:35 +02:00
|
|
|
def class_for_scope(scope)
|
|
|
|
'scope-danger' if DANGEROUS_SCOPES.include?(scope.to_s)
|
|
|
|
end
|
|
|
|
|
2017-11-11 20:23:33 +01:00
|
|
|
def can?(action, record)
|
|
|
|
return false if record.nil?
|
|
|
|
policy(record).public_send("#{action}?")
|
|
|
|
end
|
|
|
|
|
2017-07-03 11:04:35 +02:00
|
|
|
def fa_icon(icon, attributes = {})
|
|
|
|
class_names = attributes[:class]&.split(' ') || []
|
|
|
|
class_names << 'fa'
|
|
|
|
class_names += icon.split(' ').map { |cl| "fa-#{cl}" }
|
|
|
|
|
|
|
|
content_tag(:i, nil, attributes.merge(class: class_names.join(' ')))
|
2017-05-03 02:04:16 +02:00
|
|
|
end
|
2017-09-12 05:39:38 +02:00
|
|
|
|
2017-11-07 14:49:32 +01:00
|
|
|
def custom_emoji_tag(custom_emoji)
|
|
|
|
image_tag(custom_emoji.image.url, class: 'emojione', alt: ":#{custom_emoji.shortcode}:")
|
|
|
|
end
|
|
|
|
|
2017-09-12 05:39:38 +02:00
|
|
|
def opengraph(property, content)
|
|
|
|
tag(:meta, content: content, property: property)
|
|
|
|
end
|
2018-04-20 02:28:48 +02:00
|
|
|
|
|
|
|
def react_component(name, props = {})
|
|
|
|
content_tag(:div, nil, data: { component: name.to_s.camelcase, props: Oj.dump(props) })
|
|
|
|
end
|
2016-02-20 22:53:20 +01:00
|
|
|
end
|