Fix #552 - Replace image links with image icons in status text in the UI
This commit is contained in:
		
							parent
							
								
									ff2da21d3c
								
							
						
					
					
						commit
						87830f99e7
					
				| 
						 | 
				
			
			@ -42,11 +42,14 @@ const StatusContent = React.createClass({
 | 
			
		|||
    for (var i = 0; i < links.length; ++i) {
 | 
			
		||||
      let link    = links[i];
 | 
			
		||||
      let mention = this.props.status.get('mentions').find(item => link.href === item.get('url'));
 | 
			
		||||
      let media   = this.props.status.get('media_attachments').find(item => link.href === item.get('text_url') || link.href === item.get('remote_url'));
 | 
			
		||||
 | 
			
		||||
      if (mention) {
 | 
			
		||||
        link.addEventListener('click', this.onMentionClick.bind(this, mention), false);
 | 
			
		||||
      } else if (link.textContent[0] === '#' || (link.previousSibling && link.previousSibling.textContent && link.previousSibling.textContent[link.previousSibling.textContent.length - 1] === '#')) {
 | 
			
		||||
        link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false);
 | 
			
		||||
      } else if (media) {
 | 
			
		||||
        link.innerHTML = '<i class="fa fa-fw fa-photo"></i>';
 | 
			
		||||
      } else {
 | 
			
		||||
        link.setAttribute('target', '_blank');
 | 
			
		||||
        link.setAttribute('rel', 'noopener');
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -125,6 +125,10 @@
 | 
			
		|||
 | 
			
		||||
    &:hover {
 | 
			
		||||
      text-decoration: underline;
 | 
			
		||||
 | 
			
		||||
      .fa {
 | 
			
		||||
        color: lighten($color1, 40%);
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    &.mention {
 | 
			
		||||
| 
						 | 
				
			
			@ -136,6 +140,10 @@
 | 
			
		|||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .fa {
 | 
			
		||||
      color: lighten($color1, 30%);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .status__content__spoiler-link {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,3 +2,4 @@ attributes :id, :remote_url, :type
 | 
			
		|||
 | 
			
		||||
node(:url)         { |media| full_asset_url(media.file.url(:original)) }
 | 
			
		||||
node(:preview_url) { |media| full_asset_url(media.file.url(:small)) }
 | 
			
		||||
node(:text_url)    { |media| media.local? ? medium_url(media) : nil }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,12 +2,12 @@ object @status
 | 
			
		|||
 | 
			
		||||
extends 'api/v1/statuses/_show'
 | 
			
		||||
 | 
			
		||||
node(:favourited, if: proc { !current_account.nil? }) { |status| defined?(@favourites_map) ? !!@favourites_map[status.id] : current_account.favourited?(status) }
 | 
			
		||||
node(:reblogged,  if: proc { !current_account.nil? }) { |status| defined?(@reblogs_map)    ? !!@reblogs_map[status.id]    : current_account.reblogged?(status) }
 | 
			
		||||
node(:favourited, if: proc { !current_account.nil? }) { |status| defined?(@favourites_map) ? @favourites_map[status.id] : current_account.favourited?(status) }
 | 
			
		||||
node(:reblogged,  if: proc { !current_account.nil? }) { |status| defined?(@reblogs_map)    ? @reblogs_map[status.id]    : current_account.reblogged?(status) }
 | 
			
		||||
 | 
			
		||||
child :reblog => :reblog do
 | 
			
		||||
child reblog: :reblog do
 | 
			
		||||
  extends 'api/v1/statuses/_show'
 | 
			
		||||
 | 
			
		||||
  node(:favourited, if: proc { !current_account.nil? }) { |status| defined?(@favourites_map) ? !!@favourites_map[status.id] : current_account.favourited?(status) }
 | 
			
		||||
  node(:reblogged,  if: proc { !current_account.nil? }) { |status| defined?(@reblogs_map)    ? !!@reblogs_map[status.id]    : current_account.reblogged?(status) }
 | 
			
		||||
  node(:favourited, if: proc { !current_account.nil? }) { |status| defined?(@favourites_map) ? @favourites_map[status.id] : current_account.favourited?(status) }
 | 
			
		||||
  node(:reblogged,  if: proc { !current_account.nil? }) { |status| defined?(@reblogs_map)    ? @reblogs_map[status.id]    : current_account.reblogged?(status) }
 | 
			
		||||
end
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue