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.

70 lines
4.9 KiB

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