2016-12-18 19:47:11 +01:00
|
|
|
.status.light
|
|
|
|
.status__header
|
|
|
|
.status__meta
|
2017-05-07 15:22:54 +02:00
|
|
|
= link_to TagManager.instance.url_for(status), class: 'status__relative-time u-url u-uid', target: stream_link_target, rel: 'noopener' do
|
|
|
|
%time.time-ago{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
|
2017-01-06 16:08:40 +01:00
|
|
|
%data.dt-published{ value: status.created_at.to_time.iso8601 }
|
2016-12-18 19:47:11 +01:00
|
|
|
|
2017-04-12 16:12:42 +02:00
|
|
|
= link_to TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
|
2016-12-18 19:47:11 +01:00
|
|
|
.status__avatar
|
|
|
|
%div
|
2017-01-06 16:08:40 +01:00
|
|
|
= image_tag status.account.avatar(:original), width: 48, height: 48, alt: '', class: 'u-photo'
|
2016-12-18 19:47:11 +01:00
|
|
|
%span.display-name
|
2018-05-06 11:48:51 +02:00
|
|
|
%strong.p-name.emojify= display_name(status.account, custom_emojify: true)
|
2017-04-12 20:04:33 +02:00
|
|
|
%span= acct(status.account)
|
2016-12-18 19:47:11 +01:00
|
|
|
|
2017-04-12 20:04:33 +02:00
|
|
|
.status__content.p-name.emojify<
|
2017-04-12 18:24:18 +02:00
|
|
|
- if status.spoiler_text?
|
2017-03-31 13:54:36 +02:00
|
|
|
%p{ style: 'margin-bottom: 0' }<
|
2017-09-23 01:50:17 +02:00
|
|
|
%span.p-summary> #{Formatter.instance.format_spoiler(status)}
|
2017-03-31 13:54:36 +02:00
|
|
|
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
|
2017-09-19 02:42:40 +02:00
|
|
|
.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)
|
2016-12-18 19:47:11 +01:00
|
|
|
|
|
|
|
- unless status.media_attachments.empty?
|
2017-09-14 03:39:10 +02:00
|
|
|
- if status.media_attachments.first.video?
|
|
|
|
- video = status.media_attachments.first
|
2018-04-20 02:28:48 +02:00
|
|
|
= react_component :video, 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
|
2017-09-14 03:39:10 +02:00
|
|
|
- else
|
2018-04-20 02:28:48 +02:00
|
|
|
= react_component :media_gallery, 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 }
|