logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

_simple_status.html.haml (2040B)


  1. .status.light
  2. .status__header
  3. .status__meta
  4. = link_to TagManager.instance.url_for(status), class: 'status__relative-time u-url u-uid', target: stream_link_target, rel: 'noopener' do
  5. %time.time-ago{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
  6. %data.dt-published{ value: status.created_at.to_time.iso8601 }
  7. = link_to TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
  8. .status__avatar
  9. %div
  10. = image_tag status.account.avatar(:original), width: 48, height: 48, alt: '', class: 'u-photo'
  11. %span.display-name
  12. %strong.p-name.emojify= display_name(status.account)
  13. %span= acct(status.account)
  14. .status__content.p-name.emojify<
  15. - if status.spoiler_text?
  16. %p{ style: 'margin-bottom: 0' }<
  17. %span.p-summary> #{Formatter.instance.format_spoiler(status)}&nbsp;
  18. %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
  19. .e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status, custom_emojify: true)
  20. - unless status.media_attachments.empty?
  21. - if status.media_attachments.first.video?
  22. - video = status.media_attachments.first
  23. %div{ data: { component: 'Video', props: Oj.dump(src: video.file.url(:original), preview: video.file.url(:small), sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, width: 610, height: 343, inline: true) }}
  24. - else
  25. %div{ data: { component: 'MediaGallery', props: Oj.dump(height: 343, sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, 'autoPlayGif': current_account&.user&.setting_auto_play_gif, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }) }}