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.

51 lines
2.4 KiB

  1. .detailed-status.light
  2. = link_to TagManager.instance.url_for(status.account), class: 'detailed-status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
  3. %div
  4. .avatar
  5. = image_tag status.account.avatar.url(:original), width: 48, height: 48, alt: '', class: 'u-photo'
  6. %span.display-name
  7. %strong.p-name.emojify= display_name(status.account)
  8. %span= acct(status.account)
  9. .status__content.p-name.emojify<
  10. - if status.spoiler_text?
  11. %p{ style: 'margin-bottom: 0' }<
  12. %span.p-summary> #{status.spoiler_text}&nbsp;
  13. %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
  14. .e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }<
  15. = Formatter.instance.format(status)
  16. - unless status.media_attachments.empty?
  17. - if status.media_attachments.first.video?
  18. .video-player><
  19. = render partial: 'stream_entries/content_spoiler', locals: { sensitive: status.sensitive? }
  20. %video.u-video{ src: status.media_attachments.first.file.url(:original), loop: true }
  21. - else
  22. .detailed-status__attachments><
  23. = render partial: 'stream_entries/content_spoiler', locals: { sensitive: status.sensitive? }
  24. .status__attachments__inner<
  25. - status.media_attachments.each do |media|
  26. = render partial: 'stream_entries/media', locals: { media: media }
  27. .detailed-status__meta
  28. %data.dt-published{ value: status.created_at.to_time.iso8601 }
  29. = link_to TagManager.instance.url_for(status), class: 'detailed-status__datetime u-url u-uid', target: stream_link_target, rel: 'noopener' do
  30. %time.formatted{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
  31. ·
  32. - if status.application
  33. - if status.application.website.blank?
  34. %strong.detailed-status__application= status.application.name
  35. - else
  36. = link_to status.application.name, status.application.website, class: 'detailed-status__application', target: '_blank', rel: 'noopener'
  37. ·
  38. %span<
  39. = fa_icon('retweet')
  40. %span= status.reblogs_count
  41. ·
  42. %span<
  43. = fa_icon('star')
  44. %span= status.favourites_count
  45. - if user_signed_in?
  46. ·
  47. = link_to t('statuses.open_in_web'), web_url("statuses/#{status.id}"), class: 'open-in-web-link', target: '_blank'