2016-12-18 10:47:11 -08:00
|
|
|
.status.light
|
|
|
|
.status__header
|
|
|
|
.status__meta
|
2017-05-07 06:22:54 -07: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 07:08:40 -08:00
|
|
|
%data.dt-published{ value: status.created_at.to_time.iso8601 }
|
2016-12-18 10:47:11 -08:00
|
|
|
|
2017-04-12 07:12:42 -07: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 10:47:11 -08:00
|
|
|
.status__avatar
|
|
|
|
%div
|
2017-01-06 07:08:40 -08:00
|
|
|
= image_tag status.account.avatar(:original), width: 48, height: 48, alt: '', class: 'u-photo'
|
2016-12-18 10:47:11 -08:00
|
|
|
%span.display-name
|
2017-01-09 19:40:45 -08:00
|
|
|
%strong.p-name.emojify= display_name(status.account)
|
2017-04-12 11:04:33 -07:00
|
|
|
%span= acct(status.account)
|
2016-12-18 10:47:11 -08:00
|
|
|
|
2017-04-12 11:04:33 -07:00
|
|
|
.status__content.p-name.emojify<
|
2017-04-12 09:24:18 -07:00
|
|
|
- if status.spoiler_text?
|
2017-03-31 04:54:36 -07:00
|
|
|
%p{ style: 'margin-bottom: 0' }<
|
2017-09-22 16:50:17 -07:00
|
|
|
%span.p-summary> #{Formatter.instance.format_spoiler(status)}
|
2017-03-31 04:54:36 -07:00
|
|
|
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
|
2017-09-18 17:42:40 -07: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 10:47:11 -08:00
|
|
|
|
|
|
|
- unless status.media_attachments.empty?
|
2017-09-13 18:39:10 -07:00
|
|
|
- if status.media_attachments.first.video?
|
|
|
|
- video = status.media_attachments.first
|
|
|
|
%div{ data: { component: 'Video', props: Oj.dump(src: video.file.url(:original), preview: video.file.url(:small), sensitive: status.sensitive?, width: 610, height: 343) }}
|
|
|
|
- else
|
2017-09-19 07:03:45 -07:00
|
|
|
%div{ data: { component: 'MediaGallery', props: Oj.dump(height: 343, sensitive: status.sensitive?, 'autoPlayGif': current_account&.user&.setting_auto_play_gif, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }) }}
|