2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-07 07:16:51 -07:00
|
|
|
module StatusesHelper
|
2017-08-30 01:23:43 -07:00
|
|
|
EMBEDDED_CONTROLLER = 'statuses'
|
2017-06-08 04:24:28 -07:00
|
|
|
EMBEDDED_ACTION = 'embed'
|
2017-04-22 21:05:52 -07:00
|
|
|
|
2018-07-28 10:25:33 -07:00
|
|
|
def nothing_here(extra_classes = '')
|
|
|
|
content_tag(:div, class: "nothing-here #{extra_classes}") do
|
|
|
|
t('accounts.nothing_here')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-18 12:33:07 -07:00
|
|
|
def media_summary(status)
|
2020-06-24 16:33:01 -07:00
|
|
|
attachments = { image: 0, video: 0, audio: 0 }
|
2018-03-18 12:33:07 -07:00
|
|
|
|
2022-12-15 08:41:20 -08:00
|
|
|
status.ordered_media_attachments.each do |media|
|
2018-03-18 12:33:07 -07:00
|
|
|
if media.video?
|
|
|
|
attachments[:video] += 1
|
2020-06-24 16:33:01 -07:00
|
|
|
elsif media.audio?
|
|
|
|
attachments[:audio] += 1
|
2018-03-18 12:33:07 -07:00
|
|
|
else
|
|
|
|
attachments[:image] += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-24 17:10:02 -07:00
|
|
|
text = attachments.to_a.reject { |_, value| value.zero? }.map { |key, value| I18n.t("statuses.attached.#{key}", count: value) }.join(' · ')
|
2018-03-18 12:33:07 -07:00
|
|
|
|
|
|
|
return if text.blank?
|
|
|
|
|
2018-04-24 17:10:02 -07:00
|
|
|
I18n.t('statuses.attached.description', attached: text)
|
2018-03-18 12:33:07 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def status_text_summary(status)
|
|
|
|
return if status.spoiler_text.blank?
|
2019-07-07 07:16:51 -07:00
|
|
|
|
2018-04-24 17:10:02 -07:00
|
|
|
I18n.t('statuses.content_warning', warning: status.spoiler_text)
|
2018-03-18 12:33:07 -07:00
|
|
|
end
|
|
|
|
|
2019-03-04 18:51:18 -08:00
|
|
|
def poll_summary(status)
|
2019-03-27 20:44:59 -07:00
|
|
|
return unless status.preloadable_poll
|
2019-07-07 07:16:51 -07:00
|
|
|
|
2019-03-27 20:44:59 -07:00
|
|
|
status.preloadable_poll.options.map { |o| "[ ] #{o}" }.join("\n")
|
2019-03-04 18:51:18 -08:00
|
|
|
end
|
|
|
|
|
2018-03-18 12:33:07 -07:00
|
|
|
def status_description(status)
|
2023-04-30 05:07:21 -07:00
|
|
|
components = [[media_summary(status), status_text_summary(status)].compact_blank.join(' · ')]
|
2019-03-04 18:51:18 -08:00
|
|
|
|
|
|
|
if status.spoiler_text.blank?
|
|
|
|
components << status.text
|
|
|
|
components << poll_summary(status)
|
|
|
|
end
|
|
|
|
|
2023-04-30 05:07:21 -07:00
|
|
|
components.compact_blank.join("\n\n")
|
2018-03-18 12:33:07 -07:00
|
|
|
end
|
|
|
|
|
2017-04-12 07:12:42 -07:00
|
|
|
def stream_link_target
|
|
|
|
embedded_view? ? '_blank' : nil
|
|
|
|
end
|
|
|
|
|
2018-04-19 17:28:48 -07:00
|
|
|
def fa_visibility_icon(status)
|
|
|
|
case status.visibility
|
|
|
|
when 'public'
|
|
|
|
fa_icon 'globe fw'
|
|
|
|
when 'unlisted'
|
2019-01-31 04:45:15 -08:00
|
|
|
fa_icon 'unlock fw'
|
2018-04-19 17:28:48 -07:00
|
|
|
when 'private'
|
|
|
|
fa_icon 'lock fw'
|
|
|
|
when 'direct'
|
2022-05-05 15:41:56 -07:00
|
|
|
fa_icon 'at fw'
|
2018-04-19 17:28:48 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-12 07:12:42 -07:00
|
|
|
def embedded_view?
|
2017-04-22 21:05:52 -07:00
|
|
|
params[:controller] == EMBEDDED_CONTROLLER && params[:action] == EMBEDDED_ACTION
|
2017-04-12 07:12:42 -07:00
|
|
|
end
|
2021-05-05 12:16:55 -07:00
|
|
|
|
|
|
|
def prefers_autoplay?
|
|
|
|
ActiveModel::Type::Boolean.new.cast(params[:autoplay]) || current_user&.setting_auto_play_gif
|
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|