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