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.

64 lines
4.9 KiB

  1. .status
  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. .p-author.h-card
  7. = link_to ActivityPub::TagManager.instance.url_for(status.account), class: 'status__display-name u-url', target: stream_link_target, rel: 'noopener noreferrer' do
  8. .status__avatar
  9. %div
  10. - if current_account&.user&.setting_auto_play_gif || autoplay
  11. = image_tag status.account.avatar_original_url, width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
  12. - else
  13. = image_tag status.account.avatar_static_url, width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
  14. %span.display-name
  15. %bdi
  16. %strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true, autoplay: autoplay)
  17.  
  18. %span.display-name__account
  19. = acct(status.account)
  20. = fa_icon('lock') if status.account.locked?
  21. .status__content.emojify<
  22. - if status.spoiler_text?
  23. %p{ :style => ('margin-bottom: 0' unless current_account&.user&.setting_expand_spoilers) }<
  24. %span.p-summary> #{Formatter.instance.format_spoiler(status, autoplay: autoplay)}&nbsp;
  25. %button.status__content__spoiler-link= t('statuses.show_more')
  26. .e-content{ style: "display: #{!current_account&.user&.setting_expand_spoilers && status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }
  27. = Formatter.instance.format(status, custom_emojify: true, autoplay: autoplay)
  28. - if status.preloadable_poll
  29. = 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
  30. = render partial: 'statuses/poll', locals: { status: status, poll: status.preloadable_poll, autoplay: autoplay }
  31. - if !status.media_attachments.empty?
  32. - if status.media_attachments.first.video?
  33. - video = status.media_attachments.first
  34. = react_component :video, src: video.file.url(:original), preview: video.file.url(:small), blurhash: video.blurhash, sensitive: !current_account&.user&.show_all_media? && status.sensitive? || current_account&.user&.hide_all_media?, width: 610, height: 343, inline: true, alt: video.description do
  35. = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
  36. - elsif status.media_attachments.first.audio?
  37. - audio = status.media_attachments.first
  38. = react_component :audio, src: audio.file.url(:original), height: 110, alt: audio.description, duration: audio.file.meta.dig(:original, :duration) do
  39. = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
  40. - else
  41. = react_component :media_gallery, height: 343, sensitive: !current_account&.user&.show_all_media? && status.sensitive? || current_account&.user&.hide_all_media?, 'autoPlayGif': current_account&.user&.setting_auto_play_gif || autoplay, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json } do
  42. = render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
  43. - elsif status.preview_card
  44. = react_component :card, 'maxDescription': 160, card: ActiveModelSerializers::SerializableResource.new(status.preview_card, serializer: REST::PreviewCardSerializer).as_json
  45. .status__action-bar
  46. .status__action-bar__counter
  47. = link_to remote_interaction_path(status, type: :reply), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
  48. - if status.in_reply_to_id.nil?
  49. = fa_icon 'reply fw'
  50. - else
  51. = fa_icon 'reply-all fw'
  52. .status__action-bar__counter__label= obscured_counter status.replies_count
  53. = link_to remote_interaction_path(status, type: :reblog), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
  54. - if status.distributable?
  55. = fa_icon 'retweet fw'
  56. - elsif status.private_visibility? || status.limited_visibility?
  57. = fa_icon 'lock fw'
  58. - else
  59. = fa_icon 'envelope fw'
  60. = link_to remote_interaction_path(status, type: :favourite), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
  61. = fa_icon 'star fw'