* significant improvement in microformats markup This is a huge improvement and I believe will close #965. Had these microformats reviewed by others in the community to help ensure they are at least correct, if not complete. I did not want to change the structure of the page, and so there it does not fully mark up the entire ancestry chain, or reply chain, only the direct decendants and direct ancestors are correctly associated, but this is likely fine as the most important bit is to have access to the urls for those toots which are now correctly fetchable. * improve code climate * trying to pass code climate tests * code climate * fix p-summary for content warning posts * fix error introduced when merging via github
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| - 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
 | |
| - parent_id       ||= false
 | |
| - 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
 | |
|   = 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
 | |
|       %div.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')
 | |
| 
 | |
|   = render partial: centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status', locals: { status: status.proper }
 | |
| 
 | |
| - if include_threads
 | |
|   = render partial: 'stream_entries/status', collection: @descendants, as: :status, locals: { is_successor: true, parent_id: status.id}
 |