闭社主体 forked from https://github.com/tootsuite/mastodon
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.

50 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'}" }= Formatter.instance.format(status)
  15. - unless status.media_attachments.empty?
  16. - if status.media_attachments.first.video?
  17. .video-player
  18. = render partial: 'stream_entries/content_spoiler', locals: { sensitive: status.sensitive? }
  19. %video.u-video{ src: status.media_attachments.first.file.url(:original), loop: true }
  20. - else
  21. .detailed-status__attachments
  22. = render partial: 'stream_entries/content_spoiler', locals: { sensitive: status.sensitive? }
  23. .status__attachments__inner
  24. - status.media_attachments.each do |media|
  25. = render partial: 'stream_entries/media', locals: { media: media }
  26. .detailed-status__meta
  27. %data.dt-published{ value: status.created_at.to_time.iso8601 }
  28. = link_to TagManager.instance.url_for(status), class: 'detailed-status__datetime u-url u-uid', target: stream_link_target, rel: 'noopener' do
  29. %time.formatted{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
  30. ·
  31. - if status.application
  32. - if status.application.website.blank?
  33. %strong.detailed-status__application= status.application.name
  34. - else
  35. = link_to status.application.name, status.application.website, class: 'detailed-status__application', target: '_blank', rel: 'noopener'
  36. ·
  37. %span<
  38. = fa_icon('retweet')
  39. %span= status.reblogs_count
  40. ·
  41. %span<
  42. = fa_icon('star')
  43. %span= status.favourites_count
  44. - if user_signed_in?
  45. ·
  46. = link_to t('statuses.open_in_web'), web_url("statuses/#{status.id}"), class: 'open-in-web-link', target: '_blank'