2016-03-21 20:11:27 +09:00
|
|
|
- include_threads ||= false
|
|
|
|
- is_predecessor ||= false
|
|
|
|
- is_successor ||= false
|
2016-03-26 22:42:05 +09:00
|
|
|
- centered = include_threads && !is_predecessor && !is_successor
|
2016-03-21 20:11:27 +09:00
|
|
|
|
2016-02-28 22:02:53 +09:00
|
|
|
- if status.reply? && include_threads
|
2016-09-24 21:34:44 +09:00
|
|
|
= render partial: 'status', collection: @ancestors, as: :status, locals: { is_predecessor: true }
|
2016-02-28 22:02:53 +09:00
|
|
|
|
|
|
|
.entry{ class: entry_classes(status, is_predecessor, is_successor, include_threads) }
|
2016-02-27 05:11:52 +09:00
|
|
|
- if status.reblog?
|
|
|
|
.pre-header
|
|
|
|
%i.fa.fa-retweet
|
|
|
|
Shared by
|
2016-09-10 03:04:34 +09:00
|
|
|
= link_to display_name(status.account), TagManager.instance.url_for(status.account), class: 'name'
|
2016-03-01 03:42:08 +09:00
|
|
|
|
2016-02-28 22:02:53 +09:00
|
|
|
.entry__container
|
2016-02-28 08:51:05 +09:00
|
|
|
.avatar
|
2016-02-28 22:02:53 +09:00
|
|
|
= image_tag avatar_for_status_url(status)
|
2016-03-01 03:42:08 +09:00
|
|
|
|
2016-02-28 22:02:53 +09:00
|
|
|
.entry__container__container
|
2016-02-28 08:51:05 +09:00
|
|
|
.header
|
2016-03-07 01:52:23 +09:00
|
|
|
.header__left
|
2016-09-10 03:04:34 +09:00
|
|
|
= link_to TagManager.instance.url_for(proper_status(status).account), class: 'name' do
|
2016-03-26 22:42:05 +09:00
|
|
|
%strong= display_name(proper_status(status).account)
|
|
|
|
= "@#{proper_status(status).account.acct}"
|
2016-10-03 07:26:00 +09:00
|
|
|
|
|
|
|
.header__right
|
2016-09-10 03:04:34 +09:00
|
|
|
= link_to TagManager.instance.url_for(proper_status(status)), class: 'time' do
|
2016-03-26 22:42:05 +09:00
|
|
|
%span{ title: proper_status(status).created_at }
|
|
|
|
= relative_time(proper_status(status).created_at)
|
|
|
|
|
2016-09-10 03:04:34 +09:00
|
|
|
.content= Formatter.instance.format(proper_status(status))
|
2016-02-28 22:02:53 +09:00
|
|
|
|
2016-11-16 02:45:54 +09:00
|
|
|
- if (status.reblog? ? status.reblog : status).media_attachments.size > 0
|
|
|
|
%ul.media-attachments
|
|
|
|
- (status.reblog? ? status.reblog : status).media_attachments.each do |media|
|
2016-12-04 21:02:43 +09:00
|
|
|
%li.transparent-background= link_to '', media.file.url( :original), style: "background-image: url(#{media.file.url( :small)})", target: '_blank'
|
2016-09-08 08:24:26 +09:00
|
|
|
|
2016-02-28 22:02:53 +09:00
|
|
|
- if include_threads
|
2016-09-24 21:34:44 +09:00
|
|
|
= render partial: 'status', collection: @descendants, as: :status, locals: { is_successor: true }
|