2016-03-21 04:11:27 -07:00
|
|
|
- include_threads ||= false
|
|
|
|
- is_predecessor ||= false
|
|
|
|
- is_successor ||= false
|
2016-03-26 06:42:05 -07:00
|
|
|
- centered = include_threads && !is_predecessor && !is_successor
|
2016-03-21 04:11:27 -07:00
|
|
|
|
2016-02-28 05:02:53 -08:00
|
|
|
- if status.reply? && include_threads
|
2016-09-24 05:34:44 -07:00
|
|
|
= render partial: 'status', collection: @ancestors, as: :status, locals: { is_predecessor: true }
|
2016-02-28 05:02:53 -08:00
|
|
|
|
|
|
|
.entry{ class: entry_classes(status, is_predecessor, is_successor, include_threads) }
|
2016-02-26 12:11:52 -08:00
|
|
|
- if status.reblog?
|
|
|
|
.pre-header
|
|
|
|
%i.fa.fa-retweet
|
|
|
|
Shared by
|
2016-09-09 11:04:34 -07:00
|
|
|
= link_to display_name(status.account), TagManager.instance.url_for(status.account), class: 'name'
|
2016-02-29 10:42:08 -08:00
|
|
|
|
2016-02-28 05:02:53 -08:00
|
|
|
.entry__container
|
2016-02-27 15:51:05 -08:00
|
|
|
.avatar
|
2016-02-28 05:02:53 -08:00
|
|
|
= image_tag avatar_for_status_url(status)
|
2016-02-29 10:42:08 -08:00
|
|
|
|
2016-02-28 05:02:53 -08:00
|
|
|
.entry__container__container
|
2016-02-27 15:51:05 -08:00
|
|
|
.header
|
2016-03-06 08:52:23 -08:00
|
|
|
.header__left
|
2016-09-09 11:04:34 -07:00
|
|
|
= link_to TagManager.instance.url_for(proper_status(status).account), class: 'name' do
|
2016-03-26 06:42:05 -07:00
|
|
|
%strong= display_name(proper_status(status).account)
|
|
|
|
= "@#{proper_status(status).account.acct}"
|
2016-09-09 11:04:34 -07:00
|
|
|
= link_to TagManager.instance.url_for(proper_status(status)), class: 'time' do
|
2016-03-26 06:42:05 -07:00
|
|
|
%span{ title: proper_status(status).created_at }
|
|
|
|
= relative_time(proper_status(status).created_at)
|
|
|
|
|
2016-03-06 08:52:23 -08:00
|
|
|
.header__right
|
2016-03-26 06:42:05 -07:00
|
|
|
.counter-btn{ class: reblogged_by_me_class(proper_status(status)) }
|
2016-03-06 08:52:23 -08:00
|
|
|
%i.fa.fa-retweet
|
2016-03-26 06:42:05 -07:00
|
|
|
%span.counter-number= proper_status(status).reblogs_count
|
|
|
|
.counter-btn{ class: favourited_by_me_class(proper_status(status)) }
|
2016-03-06 08:52:23 -08:00
|
|
|
%i.fa.fa-star
|
2016-03-26 06:42:05 -07:00
|
|
|
%span.counter-number= proper_status(status).favourites_count
|
|
|
|
|
2016-09-09 11:04:34 -07:00
|
|
|
.content= Formatter.instance.format(proper_status(status))
|
2016-02-28 05:02:53 -08:00
|
|
|
|
2016-09-07 16:24:26 -07:00
|
|
|
%ul.media-attachments
|
|
|
|
- status.media_attachments.each do |media|
|
|
|
|
%li.transparent-background= link_to '', media.file.url, style: "background-image: url(#{media.file.url(:small)})", target: '_blank'
|
|
|
|
|
2016-02-28 05:02:53 -08:00
|
|
|
- if include_threads
|
2016-09-24 05:34:44 -07:00
|
|
|
= render partial: 'status', collection: @descendants, as: :status, locals: { is_successor: true }
|