2016-03-21 11:11:27 +00:00
|
|
|
- include_threads ||= false
|
|
|
|
- is_predecessor ||= false
|
|
|
|
- is_successor ||= false
|
2016-12-18 18:47:11 +00:00
|
|
|
- centered ||= include_threads && !is_predecessor && !is_successor
|
2016-03-21 11:11:27 +00:00
|
|
|
|
2017-01-06 19:24:51 +00:00
|
|
|
- if status.reply? && include_threads
|
2017-03-22 18:26:22 +00:00
|
|
|
= render partial: 'stream_entries/status', collection: @ancestors, as: :status, locals: { is_predecessor: true }
|
2016-02-28 13:02:53 +00:00
|
|
|
|
2017-01-06 19:24:51 +00: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-02-29 18:42:08 +00:00
|
|
|
|
2017-04-07 18:18:30 +00:00
|
|
|
= render partial: centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status', locals: { status: status.proper }
|
2016-09-07 23:24:26 +00:00
|
|
|
|
2017-01-06 19:24:51 +00:00
|
|
|
- if include_threads
|
2017-03-22 18:26:22 +00:00
|
|
|
= render partial: 'stream_entries/status', collection: @descendants, as: :status, locals: { is_successor: true }
|