]> cat aescling's git repositories - mastodon.git/commitdiff
Fix h-card classes and remote follow button appearing when it shouldn't
authorEugen Rochko <eugen@zeonfederated.com>
Fri, 6 Jan 2017 19:15:24 +0000 (20:15 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Fri, 6 Jan 2017 19:15:24 +0000 (20:15 +0100)
app/views/accounts/_header.html.haml
app/views/accounts/show.html.haml
app/views/stream_entries/_status.html.haml

index e410ff72cbfd9b545f677796a914c3d405ce708e..7a5cea7abc4813e74c4ca0031a3c07c35484d6e4 100644 (file)
@@ -1,11 +1,11 @@
-.card.h-card{ class: [local_assigns[:in_feed] && 'p-author'], style: "background-image: url(#{@account.header.url( :original)})" }
+.card.h-card.p-author{ style: "background-image: url(#{@account.header.url( :original)})" }
   - if user_signed_in? && current_account.id != @account.id && !current_account.requested?(@account)
     .controls
       - if current_account.following?(@account)
         = link_to t('accounts.unfollow'), unfollow_account_path(@account), data: { method: :post }, class: 'button'
       - else
         = link_to t('accounts.follow'), follow_account_path(@account), data: { method: :post }, class: 'button'
-  - else
+  - elsif !user_signed_in?
     .controls
       .remote-follow
         = link_to t('accounts.remote_follow'), account_remote_follow_path(@account), class: 'button'
index 8840b5503de92c9eba3feae14091d4d680f094d3..c194ce33dd3a23e7949ae39ae213ec283237a159 100644 (file)
@@ -15,8 +15,9 @@
   %meta{ property: 'twitter:card', content: 'summary' }/
 
 .h-feed
-  %data.p-name{ value: "#{@account.username} on #{Rails.configuration.x.local_domain}" }
-  = render partial: 'header', locals: {in_feed: true}
+  %data.p-name{ value: "#{@account.username} on #{Rails.configuration.x.local_domain}" }/
+
+  = render partial: 'header'
 
   - if @statuses.empty?
     .accounts-grid
index eeb2fec00a19e51f9ebb00c11c76ee5efe9a33ad..29dcd6081c83a8e0ba71933ae1149abb8dd106d8 100644 (file)
@@ -3,7 +3,7 @@
 - is_successor    ||= false
 - centered        ||= include_threads && !is_predecessor && !is_successor
 
-%div{ class: [is_predecessor && 'u-in-reply-to h-cite', is_successor && 'u-comment h-cite', !is_predecessor && !is_successor && 'h-entry'] }
+%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 }
 
@@ -17,7 +17,7 @@
             %strong= display_name(status.account)
           = t('stream_entries.reblogged')
 
-    %div{ class: [status.reblog? && 'u-repost-of h-cite'] }
+    %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