2017-05-08 10:35:25 +09:00
|
|
|
:ruby
|
|
|
|
include_threads ||= false
|
|
|
|
is_predecessor ||= false
|
|
|
|
is_successor ||= false
|
|
|
|
direct_reply_id ||= false
|
|
|
|
parent_id ||= false
|
|
|
|
is_direct_parent = direct_reply_id == status.id
|
|
|
|
is_direct_child = parent_id == status.in_reply_to_id
|
|
|
|
centered ||= include_threads && !is_predecessor && !is_successor
|
|
|
|
h_class = microformats_h_class(status, is_predecessor, is_successor, include_threads)
|
|
|
|
style_classes = style_classes(status, is_predecessor, is_successor, include_threads)
|
|
|
|
mf_classes = microformats_classes(status, is_direct_parent, is_direct_child)
|
|
|
|
entry_classes = h_class + ' ' + mf_classes + ' ' + style_classes
|
2016-03-21 20:11:27 +09:00
|
|
|
|
2017-01-07 04:24:51 +09:00
|
|
|
- if status.reply? && include_threads
|
2017-05-08 10:35:25 +09:00
|
|
|
= render partial: 'stream_entries/status', collection: @ancestors, as: :status, locals: { is_predecessor: true, direct_reply_id: status.in_reply_to_id }
|
2017-04-13 03:04:33 +09:00
|
|
|
|
|
|
|
.entry{ class: entry_classes }
|
2016-02-28 22:02:53 +09:00
|
|
|
|
2017-01-07 04:24:51 +09:00
|
|
|
- if status.reblog?
|
|
|
|
.pre-header
|
2017-05-08 10:35:25 +09:00
|
|
|
.pre-header__icon
|
2017-01-07 04:24:51 +09:00
|
|
|
= fa_icon('retweet fw')
|
|
|
|
%span
|
|
|
|
= link_to TagManager.instance.url_for(status.account), class: 'status__display-name muted' do
|
2017-04-11 04:27:52 +09:00
|
|
|
%strong.emojify= display_name(status.account)
|
2017-01-07 04:24:51 +09:00
|
|
|
= t('stream_entries.reblogged')
|
2016-03-01 03:42:08 +09:00
|
|
|
|
2017-04-19 00:15:30 +09:00
|
|
|
= render (centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status'), status: status.proper
|
2016-09-08 08:24:26 +09:00
|
|
|
|
2017-01-07 04:24:51 +09:00
|
|
|
- if include_threads
|
2017-05-08 10:35:25 +09:00
|
|
|
= render partial: 'stream_entries/status', collection: @descendants, as: :status, locals: { is_successor: true, parent_id: status.id }
|