2016-03-21 20:11:27 +09:00
|
|
|
- include_threads ||= false
|
|
|
|
- is_predecessor ||= false
|
|
|
|
- is_successor ||= false
|
2016-12-19 03:47:11 +09:00
|
|
|
- centered ||= include_threads && !is_predecessor && !is_successor
|
2016-03-21 20:11:27 +09:00
|
|
|
|
2017-01-07 00:08:40 +09:00
|
|
|
%div{ class: [is_predecessor && 'u-in-reply-to h-cite', is_successor && 'u-comment h-cite', !is_predecessor && !is_successor && 'h-entry'] }
|
|
|
|
- if status.reply? && include_threads
|
|
|
|
= render partial: 'status', collection: @ancestors, as: :status, locals: { is_predecessor: true }
|
2016-02-28 22:02:53 +09:00
|
|
|
|
2017-01-07 00:08:40 +09:00
|
|
|
.entry{ class: entry_classes(status, is_predecessor, is_successor, include_threads) }
|
|
|
|
- if status.reblog?
|
|
|
|
.pre-header
|
|
|
|
%div.pre-header__icon
|
|
|
|
= fa_icon('retweet fw')
|
|
|
|
%span
|
|
|
|
= link_to TagManager.instance.url_for(status.account), class: 'status__display-name muted' do
|
|
|
|
%strong= display_name(status.account)
|
|
|
|
= t('stream_entries.reblogged')
|
2016-03-01 03:42:08 +09:00
|
|
|
|
2017-01-07 00:08:40 +09:00
|
|
|
%div{ class: [status.reblog? && 'u-repost-of h-cite'] }
|
|
|
|
= render partial: centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status', locals: { status: proper_status(status) }
|
2016-09-08 08:24:26 +09:00
|
|
|
|
2017-01-07 00:08:40 +09:00
|
|
|
- if include_threads
|
|
|
|
= render partial: 'status', collection: @descendants, as: :status, locals: { is_successor: true }
|