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.

69 lines
5.1 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. %span.status__visibility-icon><
  5. = visibility_icon status
  6. %time.time-ago{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
  7. %data.dt-published{ value: status.created_at.to_time.iso8601 }
  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: 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
  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: 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
  41. = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
  42. - else
  43. = 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
  44. = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
  45. - elsif status.preview_card
  46. = react_component :card, sensitive: sensitized?(status, current_account), '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. = link_to remote_interaction_path(status, type: :reply), class: 'status__action-bar-button icon-button icon-button--with-counter modal-button' do
  52. - if status.in_reply_to_id.nil?
  53. = fa_icon 'reply fw'
  54. - else
  55. = fa_icon 'reply-all fw'
  56. %span.icon-button__counter= obscured_counter status.replies_count
  57. = link_to remote_interaction_path(status, type: :reblog), class: 'status__action-bar-button icon-button modal-button' do
  58. - if status.distributable?
  59. = fa_icon 'retweet fw'
  60. - elsif status.private_visibility? || status.limited_visibility?
  61. = fa_icon 'lock fw'
  62. - else
  63. = fa_icon 'envelope fw'
  64. = link_to remote_interaction_path(status, type: :favourite), class: 'status__action-bar-button icon-button modal-button' do
  65. = fa_icon 'star fw'