about summary refs log tree commit diff
path: root/app/views/stream_entries/_status.html.haml
blob: 29dcd6081c83a8e0ba71933ae1149abb8dd106d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
- include_threads ||= false
- is_predecessor  ||= false
- is_successor    ||= false
- centered        ||= include_threads && !is_predecessor && !is_successor

%div{ class: [is_predecessor ? 'u-in-reply-to h-cite' : nil, is_successor ? 'u-comment h-cite' : nil, !is_predecessor && !is_successor ? 'h-entry' : nil].compact }
  - if status.reply? && include_threads
    = render partial: 'status', collection: @ancestors, as: :status, locals: { is_predecessor: true }

  .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')

    %div{ class: status.reblog? ? 'u-repost-of h-cite' : nil }
      = render partial: centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status', locals: { status: proper_status(status) }

  - if include_threads
    = render partial: 'status', collection: @descendants, as: :status, locals: { is_successor: true }