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.

47 lines
3.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. = link_to TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
  7. .status__avatar
  8. %div
  9. - if current_account&.user&.setting_auto_play_gif || autoplay
  10. = image_tag status.account.avatar_original_url, width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
  11. - else
  12. = image_tag status.account.avatar_static_url, width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
  13. %span.display-name
  14. %bdi
  15. %strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true, autoplay: autoplay)
  16. %span.display-name__account
  17. = acct(status.account)
  18. = fa_icon('lock') if status.account.locked?
  19. .status__content.emojify<
  20. - if status.spoiler_text?
  21. %p{ :style => ('margin-bottom: 0' unless current_account&.user&.setting_expand_spoilers) }<
  22. %span.p-summary> #{Formatter.instance.format_spoiler(status, autoplay: autoplay)}&nbsp;
  23. %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
  24. .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)
  25. - unless status.media_attachments.empty?
  26. - if status.media_attachments.first.video?
  27. - video = status.media_attachments.first
  28. = react_component :video, src: video.file.url(:original), preview: video.file.url(:small), sensitive: !current_account&.user&.show_all_media? && status.sensitive? || current_account&.user&.hide_all_media?, width: 610, height: 343, inline: true, alt: video.description
  29. - else
  30. = 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 }
  31. .status__action-bar
  32. .status__action-bar__counter
  33. = link_to remote_interaction_path(status), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
  34. = fa_icon 'reply fw'
  35. .status__action-bar__counter__label= obscured_counter status.replies_count
  36. = link_to remote_interaction_path(status), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
  37. - if status.public_visibility? || status.unlisted_visibility?
  38. = fa_icon 'retweet fw'
  39. - elsif status.private_visibility?
  40. = fa_icon 'lock fw'
  41. - else
  42. = fa_icon 'envelope fw'
  43. = link_to remote_interaction_path(status), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
  44. = fa_icon 'star fw'