2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 16:53:20 -05:00
|
|
|
module ApplicationHelper
|
2018-07-05 12:31:35 -04:00
|
|
|
DANGEROUS_SCOPES = %w(
|
|
|
|
read
|
|
|
|
write
|
|
|
|
follow
|
|
|
|
).freeze
|
|
|
|
|
2018-09-23 14:42:13 -04:00
|
|
|
def active_nav_class(*paths)
|
|
|
|
paths.any? { |path| current_page?(path) } ? 'active' : ''
|
2016-03-12 13:46:06 -05:00
|
|
|
end
|
2017-04-15 21:40:33 -04:00
|
|
|
|
2017-12-06 05:41:57 -05:00
|
|
|
def active_link_to(label, path, **options)
|
2017-08-16 11:12:58 -04:00
|
|
|
link_to label, path, options.merge(class: active_nav_class(path))
|
|
|
|
end
|
|
|
|
|
2017-04-15 21:40:33 -04:00
|
|
|
def show_landing_strip?
|
|
|
|
!user_signed_in? && !single_user_mode?
|
|
|
|
end
|
2017-04-24 12:03:53 -04:00
|
|
|
|
2017-05-15 18:41:09 -04:00
|
|
|
def open_registrations?
|
2019-03-14 00:28:30 -04:00
|
|
|
Setting.registrations_mode == 'open'
|
|
|
|
end
|
|
|
|
|
|
|
|
def approved_registrations?
|
|
|
|
Setting.registrations_mode == 'approved'
|
|
|
|
end
|
|
|
|
|
|
|
|
def closed_registrations?
|
|
|
|
Setting.registrations_mode == 'none'
|
|
|
|
end
|
|
|
|
|
|
|
|
def available_sign_up_path
|
|
|
|
if closed_registrations?
|
|
|
|
'https://joinmastodon.org/#getting-started'
|
|
|
|
else
|
|
|
|
new_user_registration_path
|
|
|
|
end
|
2017-05-15 18:41:09 -04:00
|
|
|
end
|
|
|
|
|
2017-06-19 09:12:31 -04:00
|
|
|
def open_deletion?
|
|
|
|
Setting.open_deletion
|
|
|
|
end
|
|
|
|
|
2018-01-28 18:22:20 -05:00
|
|
|
def locale_direction
|
|
|
|
if [:ar, :fa, :he].include?(I18n.locale)
|
|
|
|
'rtl'
|
|
|
|
else
|
|
|
|
'ltr'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-26 09:45:27 -04:00
|
|
|
def favicon_path
|
|
|
|
env_suffix = Rails.env.production? ? '' : '-dev'
|
2017-05-18 20:41:56 -04:00
|
|
|
"/favicon#{env_suffix}.ico"
|
2017-04-26 09:45:27 -04:00
|
|
|
end
|
2017-04-27 09:17:55 -04:00
|
|
|
|
|
|
|
def title
|
|
|
|
Rails.env.production? ? site_title : "#{site_title} (Dev)"
|
|
|
|
end
|
2017-05-02 20:04:16 -04:00
|
|
|
|
2018-07-05 12:31:35 -04:00
|
|
|
def class_for_scope(scope)
|
|
|
|
'scope-danger' if DANGEROUS_SCOPES.include?(scope.to_s)
|
|
|
|
end
|
|
|
|
|
2017-11-11 14:23:33 -05:00
|
|
|
def can?(action, record)
|
|
|
|
return false if record.nil?
|
|
|
|
policy(record).public_send("#{action}?")
|
|
|
|
end
|
|
|
|
|
2017-07-03 05:04:35 -04: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-02 20:04:16 -04:00
|
|
|
end
|
2017-09-11 23:39:38 -04:00
|
|
|
|
2019-09-10 14:56:07 -04:00
|
|
|
def custom_emoji_tag(custom_emoji, animate = true)
|
|
|
|
if animate
|
|
|
|
image_tag(custom_emoji.image.url, class: 'emojione', alt: ":#{custom_emoji.shortcode}:")
|
|
|
|
else
|
|
|
|
image_tag(custom_emoji.image.url(:static), class: 'emojione custom-emoji', alt: ":#{custom_emoji.shortcode}", 'data-original' => full_asset_url(custom_emoji.image.url), 'data-static' => full_asset_url(custom_emoji.image.url(:static)))
|
|
|
|
end
|
2017-11-07 08:49:32 -05:00
|
|
|
end
|
|
|
|
|
2017-09-11 23:39:38 -04:00
|
|
|
def opengraph(property, content)
|
|
|
|
tag(:meta, content: content, property: property)
|
|
|
|
end
|
2018-04-19 20:28:48 -04:00
|
|
|
|
2019-01-13 04:23:54 -05:00
|
|
|
def react_component(name, props = {}, &block)
|
|
|
|
if block.nil?
|
|
|
|
content_tag(:div, nil, data: { component: name.to_s.camelcase, props: Oj.dump(props) })
|
|
|
|
else
|
|
|
|
content_tag(:div, data: { component: name.to_s.camelcase, props: Oj.dump(props) }, &block)
|
|
|
|
end
|
2018-04-19 20:28:48 -04:00
|
|
|
end
|
2018-08-25 16:55:25 -04:00
|
|
|
|
|
|
|
def body_classes
|
|
|
|
output = (@body_classes || '').split(' ')
|
2018-08-26 07:52:12 -04:00
|
|
|
output << "flavour-#{current_flavour.parameterize}"
|
|
|
|
output << "skin-#{current_skin.parameterize}"
|
2018-08-25 16:55:25 -04:00
|
|
|
output << 'system-font' if current_account&.user&.setting_system_font_ui
|
2018-08-26 08:29:58 -04:00
|
|
|
output << (current_account&.user&.setting_reduce_motion ? 'reduce-motion' : 'no-reduce-motion')
|
2018-08-25 16:55:25 -04:00
|
|
|
output << 'rtl' if locale_direction == 'rtl'
|
|
|
|
output.reject(&:blank?).join(' ')
|
|
|
|
end
|
2018-10-09 19:31:10 -04:00
|
|
|
|
|
|
|
def cdn_host
|
2018-10-11 20:19:10 -04:00
|
|
|
Rails.configuration.action_controller.asset_host
|
2018-10-09 19:31:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def cdn_host?
|
|
|
|
cdn_host.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def storage_host
|
2018-10-11 20:19:10 -04:00
|
|
|
"https://#{ENV['S3_ALIAS_HOST'].presence || ENV['S3_CLOUDFRONT_HOST']}"
|
2018-10-09 19:31:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def storage_host?
|
2018-10-11 20:19:10 -04:00
|
|
|
ENV['S3_ALIAS_HOST'].present? || ENV['S3_CLOUDFRONT_HOST'].present?
|
2018-10-09 19:31:10 -04:00
|
|
|
end
|
2019-04-09 18:36:01 -04:00
|
|
|
|
|
|
|
def quote_wrap(text, line_width: 80, break_sequence: "\n")
|
|
|
|
text = word_wrap(text, line_width: line_width - 2, break_sequence: break_sequence)
|
|
|
|
text.split("\n").map { |line| '> ' + line }.join("\n")
|
|
|
|
end
|
2019-08-16 13:15:05 -04:00
|
|
|
|
|
|
|
def render_initial_state
|
|
|
|
state_params = {
|
|
|
|
settings: {
|
|
|
|
known_fediverse: Setting.show_known_fediverse_at_about_page,
|
|
|
|
},
|
|
|
|
|
|
|
|
text: [params[:title], params[:text], params[:url]].compact.join(' '),
|
|
|
|
}
|
|
|
|
|
|
|
|
if user_signed_in?
|
|
|
|
state_params[:settings] = state_params[:settings].merge(Web::Setting.find_by(user: current_user)&.data || {})
|
|
|
|
state_params[:push_subscription] = current_account.user.web_push_subscription(current_session)
|
|
|
|
state_params[:current_account] = current_account
|
|
|
|
state_params[:token] = current_session.token
|
|
|
|
state_params[:admin] = Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, ''))
|
|
|
|
end
|
|
|
|
|
|
|
|
json = ActiveModelSerializers::SerializableResource.new(InitialStatePresenter.new(state_params), serializer: InitialStateSerializer).to_json
|
|
|
|
content_tag(:script, json_escape(json).html_safe, id: 'initial-state', type: 'application/json')
|
|
|
|
end
|
2016-02-20 16:53:20 -05:00
|
|
|
end
|