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.

59 lines
4.5 KiB

  1. .status
  2. .status__info
  3. = link_to TagManager.instance.url_for(status), class: 'status__relative-time u-url u-uid', target: stream_link_target, rel: 'noopener' 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 TagManager.instance.url_for(status.account), class: 'status__display-name u-url', target: stream_link_target, rel: 'noopener' 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. %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
  26. .e-content{ lang: status.language, style: "display: #{!current_account&.user&.setting_expand_spoilers && status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status, custom_emojify: true, autoplay: autoplay)
  27. - if status.preloadable_poll
  28. = 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
  29. = render partial: 'stream_entries/poll', locals: { status: status, poll: status.preloadable_poll, autoplay: autoplay }
  30. - elsif !status.media_attachments.empty?
  31. - if status.media_attachments.first.video?
  32. - video = status.media_attachments.first
  33. = 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
  34. = render partial: 'stream_entries/attachment_list', locals: { attachments: status.media_attachments }
  35. - else
  36. = 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
  37. = render partial: 'stream_entries/attachment_list', locals: { attachments: status.media_attachments }
  38. - elsif status.preview_card
  39. = react_component :card, 'maxDescription': 160, card: ActiveModelSerializers::SerializableResource.new(status.preview_card, serializer: REST::PreviewCardSerializer).as_json
  40. .status__action-bar
  41. .status__action-bar__counter
  42. = 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
  43. - if status.in_reply_to_id.nil?
  44. = fa_icon 'reply fw'
  45. - else
  46. = fa_icon 'reply-all fw'
  47. .status__action-bar__counter__label= obscured_counter status.replies_count
  48. = 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
  49. - if status.public_visibility? || status.unlisted_visibility?
  50. = fa_icon 'retweet fw'
  51. - elsif status.private_visibility?
  52. = fa_icon 'lock fw'
  53. - else
  54. = fa_icon 'envelope fw'
  55. = 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
  56. = fa_icon 'star fw'