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