about summary refs log tree commit diff
path: root/app/views/stream_entries/_status.html.haml
blob: 9764bc74da5870c96c26c4433ab8011c95a7166a (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
:ruby
  pinned          ||= false
  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

- if status.reply? && include_threads
  - if @next_ancestor
    .entry{ class: entry_classes }
      = render 'stream_entries/more', url: TagManager.instance.url_for(@next_ancestor)

  = render partial: 'stream_entries/status', collection: @ancestors, as: :status, locals: { is_predecessor: true, direct_reply_id: status.in_reply_to_id }

.entry{ class: entry_classes }

  - if status.reblog?
    .pre-header
      .pre-header__icon
        = fa_icon('retweet fw')
      %span
        = link_to TagManager.instance.url_for(status.account), class: 'status__display-name muted' do
          %strong.emojify= display_name(status.account)
        = t('stream_entries.reblogged')
  - elsif pinned
    .pre-header
      .pre-header__icon
        = fa_icon('thumb-tack fw')
      %span
        = t('stream_entries.pinned')

  = render (centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status'), status: status.proper

- if include_threads
  - if @since_descendant_thread_id
    .entry{ class: entry_classes }
      = render 'stream_entries/more', url: short_account_status_url(status.account.username, status, max_descendant_thread_id: @since_descendant_thread_id + 1)
  - @descendant_threads.each do |thread|
    = render partial: 'stream_entries/status', collection: thread[:statuses], as: :status, locals: { is_successor: true, parent_id: status.id }

    - if thread[:next_status]
      .entry{ class: entry_classes }
        = render 'stream_entries/more', url: TagManager.instance.url_for(thread[:next_status])
  - if @next_descendant_thread
    .entry{ class: entry_classes }
      = render 'stream_entries/more', url: short_account_status_url(status.account.username, status, since_descendant_thread_id: @max_descendant_thread_id - 1)