mirror of
https://github.com/mastodon/mastodon.git
synced 2025-10-05 00:22:42 +00:00

Some checks are pending
Check i18n / check-i18n (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.2) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
80 lines
2.0 KiB
Ruby
80 lines
2.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module StatusesHelper
|
|
VISIBLITY_ICONS = {
|
|
public: 'globe',
|
|
unlisted: 'lock_open',
|
|
private: 'lock',
|
|
direct: 'alternate_email',
|
|
}.freeze
|
|
|
|
def nothing_here(extra_classes = '')
|
|
tag.div(class: ['nothing-here', extra_classes]) do
|
|
t('accounts.nothing_here')
|
|
end
|
|
end
|
|
|
|
def media_summary(status)
|
|
attachments = { image: 0, video: 0, audio: 0 }
|
|
|
|
status.ordered_media_attachments.each do |media|
|
|
if media.video?
|
|
attachments[:video] += 1
|
|
elsif media.audio?
|
|
attachments[:audio] += 1
|
|
else
|
|
attachments[:image] += 1
|
|
end
|
|
end
|
|
|
|
text = attachments.to_a.reject { |_, value| value.zero? }.map { |key, value| I18n.t("statuses.attached.#{key}", count: value) }.join(' · ')
|
|
|
|
return if text.blank?
|
|
|
|
I18n.t('statuses.attached.description', attached: text)
|
|
end
|
|
|
|
def status_text_summary(status)
|
|
return if status.spoiler_text.blank?
|
|
|
|
I18n.t('statuses.content_warning', warning: status.spoiler_text)
|
|
end
|
|
|
|
def poll_summary(status)
|
|
return unless status.preloadable_poll
|
|
|
|
status.preloadable_poll.options.map { |o| "[ ] #{o}" }.join("\n")
|
|
end
|
|
|
|
def status_description(status)
|
|
components = [[media_summary(status), status_text_summary(status)].compact_blank.join(' · ')]
|
|
|
|
if status.spoiler_text.blank?
|
|
components << status.text
|
|
components << poll_summary(status)
|
|
end
|
|
|
|
components.compact_blank.join("\n\n")
|
|
end
|
|
|
|
def visibility_icon(status)
|
|
VISIBLITY_ICONS[status.visibility.to_sym]
|
|
end
|
|
|
|
def prefers_autoplay?
|
|
ActiveModel::Type::Boolean.new.cast(params[:autoplay]) || current_user&.setting_auto_play_gif
|
|
end
|
|
|
|
def render_seo_schema(status)
|
|
json = ActiveModelSerializers::SerializableResource.new(
|
|
status,
|
|
serializer: SEO::SocialMediaPostingSerializer,
|
|
adapter: SEO::Adapter
|
|
).to_json
|
|
|
|
# rubocop:disable Rails/OutputSafety
|
|
content_tag(:script, json_escape(json).html_safe, type: 'application/ld+json')
|
|
# rubocop:enable Rails/OutputSafety
|
|
end
|
|
end
|