You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
5.1 KiB

  1. :ruby
  2. hide_show_thread ||= false
  3. .status{ class: "status-#{status.visibility}" }
  4. .status__info
  5. = link_to ActivityPub::TagManager.instance.url_for(status), class: 'status__relative-time u-url u-uid', target: stream_link_target, rel: 'noopener noreferrer' do
  6. %span.status__visibility-icon><
  7. = visibility_icon status
  8. %time.time-ago{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
  9. %data.dt-published{ value: status.created_at.to_time.iso8601 }
  10. .p-author.h-card
  11. = link_to ActivityPub::TagManager.instance.url_for(status.account), class: 'status__display-name u-url', target: stream_link_target, rel: 'noopener noreferrer' do
  12. .status__avatar
  13. %div
  14. - if current_account&.user&.setting_auto_play_gif || autoplay
  15. = image_tag status.account.avatar_original_url, alt: '', class: 'u-photo account__avatar'
  16. - else
  17. = image_tag status.account.avatar_static_url, alt: '', class: 'u-photo account__avatar'
  18. %span.display-name
  19. %bdi
  20. %strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true, autoplay: autoplay)
  21. = ' '
  22. %span.display-name__account
  23. = acct(status.account)
  24. = fa_icon('lock') if status.account.locked?
  25. .status__content.emojify{ :data => ({ spoiler: current_account&.user&.setting_expand_spoilers ? 'expanded' : 'folded' } if status.spoiler_text?) }<
  26. - if status.spoiler_text?
  27. %p<
  28. %span.p-summary> #{Formatter.instance.format_spoiler(status, autoplay: autoplay)}&nbsp;
  29. %button.status__content__spoiler-link= t('statuses.show_more')
  30. .e-content
  31. = Formatter.instance.format(status, custom_emojify: true, autoplay: autoplay)
  32. - if status.preloadable_poll
  33. = react_component :poll, disabled: true, poll: ActiveModelSerializers::SerializableResource.new(status.preloadable_poll, serializer: REST::PollSerializer, scope: current_user, scope_name: :current_user).as_json do
  34. = render partial: 'statuses/poll', locals: { status: status, poll: status.preloadable_poll, autoplay: autoplay }
  35. - if !status.media_attachments.empty?
  36. - if status.media_attachments.first.video?
  37. - video = status.media_attachments.first
  38. = react_component :video, src: full_asset_url(video.file.url(:original)), preview: full_asset_url(video.thumbnail.present? ? video.thumbnail.url : video.file.url(:small)), blurhash: video.blurhash, sensitive: sensitized?(status, current_account), width: 610, height: 343, inline: true, alt: video.description do
  39. = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
  40. - elsif status.media_attachments.first.audio?
  41. - audio = status.media_attachments.first
  42. = react_component :audio, src: full_asset_url(audio.file.url(:original)), poster: full_asset_url(audio.thumbnail.present? ? audio.thumbnail.url : status.account.avatar_static_url), backgroundColor: audio.file.meta.dig('colors', 'background'), foregroundColor: audio.file.meta.dig('colors', 'foreground'), accentColor: audio.file.meta.dig('colors', 'accent'), width: 610, height: 343, alt: audio.description, duration: audio.file.meta.dig('original', 'duration') do
  43. = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
  44. - else
  45. = react_component :media_gallery, height: 343, sensitive: sensitized?(status, current_account), autoplay: autoplay, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json } do
  46. = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
  47. - elsif status.preview_card
  48. = react_component :card, sensitive: sensitized?(status, current_account), 'maxDescription': 160, card: ActiveModelSerializers::SerializableResource.new(status.preview_card, serializer: REST::PreviewCardSerializer).as_json
  49. - if !status.in_reply_to_id.nil? && status.in_reply_to_account_id == status.account.id && !hide_show_thread
  50. = link_to ActivityPub::TagManager.instance.url_for(status), class: 'status__content__read-more-button', target: stream_link_target, rel: 'noopener noreferrer' do
  51. = t 'statuses.show_thread'
  52. .status__action-bar
  53. = link_to remote_interaction_path(status, type: :reply), class: 'status__action-bar-button icon-button icon-button--with-counter modal-button' do
  54. - if status.in_reply_to_id.nil?
  55. = fa_icon 'reply fw'
  56. - else
  57. = fa_icon 'reply-all fw'
  58. %span.icon-button__counter= obscured_counter status.replies_count
  59. = link_to remote_interaction_path(status, type: :reblog), class: 'status__action-bar-button icon-button modal-button' do
  60. - if status.distributable?
  61. = fa_icon 'retweet fw'
  62. - elsif status.private_visibility? || status.limited_visibility?
  63. = fa_icon 'lock fw'
  64. - else
  65. = fa_icon 'envelope fw'
  66. = link_to remote_interaction_path(status, type: :favourite), class: 'status__action-bar-button icon-button modal-button' do
  67. = fa_icon 'star fw'