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