* Revert "Fix some icon names changed by the Font Awesome 5. (#8796)" This reverts commit3f9ec3de82. * Revert "Migrate to font-awesome 5.0. (#8799)" This reverts commit8bae14591b. * Revert "Fix some icons names, unavailable in fontawesome5 (free license). (#8792)" This reverts commitb9c727a945. * Revert "Update the icon name changed by the Font Awesome 5. (#8776)" This reverts commit17af4d27da. * Revert "Add bot icon to bot avatars and migrate to newer version of Font Awesome (#8484)" This reverts commit4b794e134d.
		
			
				
	
	
		
			132 lines
		
	
	
	
		
			4.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
	
		
			4.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import PropTypes from 'prop-types';
 | |
| import ImmutablePropTypes from 'react-immutable-proptypes';
 | |
| import Avatar from '../../../components/avatar';
 | |
| import DisplayName from '../../../components/display_name';
 | |
| import StatusContent from '../../../components/status_content';
 | |
| import MediaGallery from '../../../components/media_gallery';
 | |
| import AttachmentList from '../../../components/attachment_list';
 | |
| import { Link } from 'react-router-dom';
 | |
| import { FormattedDate, FormattedNumber } from 'react-intl';
 | |
| import CardContainer from '../containers/card_container';
 | |
| import ImmutablePureComponent from 'react-immutable-pure-component';
 | |
| import Video from '../../video';
 | |
| 
 | |
| export default class DetailedStatus extends ImmutablePureComponent {
 | |
| 
 | |
|   static contextTypes = {
 | |
|     router: PropTypes.object,
 | |
|   };
 | |
| 
 | |
|   static propTypes = {
 | |
|     status: ImmutablePropTypes.map.isRequired,
 | |
|     onOpenMedia: PropTypes.func.isRequired,
 | |
|     onOpenVideo: PropTypes.func.isRequired,
 | |
|     onToggleHidden: PropTypes.func.isRequired,
 | |
|   };
 | |
| 
 | |
|   handleAccountClick = (e) => {
 | |
|     if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
 | |
|       e.preventDefault();
 | |
|       this.context.router.history.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
 | |
|     }
 | |
| 
 | |
|     e.stopPropagation();
 | |
|   }
 | |
| 
 | |
|   handleOpenVideo = (media, startTime) => {
 | |
|     this.props.onOpenVideo(media, startTime);
 | |
|   }
 | |
| 
 | |
|   handleExpandedToggle = () => {
 | |
|     this.props.onToggleHidden(this.props.status);
 | |
|   }
 | |
| 
 | |
|   render () {
 | |
|     const status = this.props.status.get('reblog') ? this.props.status.get('reblog') : this.props.status;
 | |
| 
 | |
|     let media           = '';
 | |
|     let applicationLink = '';
 | |
|     let reblogLink = '';
 | |
|     let reblogIcon = 'retweet';
 | |
| 
 | |
|     if (status.get('media_attachments').size > 0) {
 | |
|       if (status.get('media_attachments').some(item => item.get('type') === 'unknown')) {
 | |
|         media = <AttachmentList media={status.get('media_attachments')} />;
 | |
|       } else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
 | |
|         const video = status.getIn(['media_attachments', 0]);
 | |
| 
 | |
|         media = (
 | |
|           <Video
 | |
|             preview={video.get('preview_url')}
 | |
|             src={video.get('url')}
 | |
|             alt={video.get('description')}
 | |
|             width={300}
 | |
|             height={150}
 | |
|             inline
 | |
|             onOpenVideo={this.handleOpenVideo}
 | |
|             sensitive={status.get('sensitive')}
 | |
|           />
 | |
|         );
 | |
|       } else {
 | |
|         media = (
 | |
|           <MediaGallery
 | |
|             standalone
 | |
|             sensitive={status.get('sensitive')}
 | |
|             media={status.get('media_attachments')}
 | |
|             height={300}
 | |
|             onOpenMedia={this.props.onOpenMedia}
 | |
|           />
 | |
|         );
 | |
|       }
 | |
|     } else if (status.get('spoiler_text').length === 0) {
 | |
|       media = <CardContainer onOpenMedia={this.props.onOpenMedia} statusId={status.get('id')} />;
 | |
|     }
 | |
| 
 | |
|     if (status.get('application')) {
 | |
|       applicationLink = <span> · <a className='detailed-status__application' href={status.getIn(['application', 'website'])} target='_blank' rel='noopener'>{status.getIn(['application', 'name'])}</a></span>;
 | |
|     }
 | |
| 
 | |
|     if (status.get('visibility') === 'direct') {
 | |
|       reblogIcon = 'envelope';
 | |
|     } else if (status.get('visibility') === 'private') {
 | |
|       reblogIcon = 'lock';
 | |
|     }
 | |
| 
 | |
|     if (status.get('visibility') === 'private') {
 | |
|       reblogLink = <i className={`fa fa-${reblogIcon}`} />;
 | |
|     } else {
 | |
|       reblogLink = (<Link to={`/statuses/${status.get('id')}/reblogs`} className='detailed-status__link'>
 | |
|         <i className={`fa fa-${reblogIcon}`} />
 | |
|         <span className='detailed-status__reblogs'>
 | |
|           <FormattedNumber value={status.get('reblogs_count')} />
 | |
|         </span>
 | |
|       </Link>);
 | |
|     }
 | |
| 
 | |
|     return (
 | |
|       <div className='detailed-status'>
 | |
|         <a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='detailed-status__display-name'>
 | |
|           <div className='detailed-status__display-avatar'><Avatar account={status.get('account')} size={48} /></div>
 | |
|           <DisplayName account={status.get('account')} />
 | |
|         </a>
 | |
| 
 | |
|         <StatusContent status={status} expanded={!status.get('hidden')} onExpandedToggle={this.handleExpandedToggle} />
 | |
| 
 | |
|         {media}
 | |
| 
 | |
|         <div className='detailed-status__meta'>
 | |
|           <a className='detailed-status__datetime' href={status.get('url')} target='_blank' rel='noopener'>
 | |
|             <FormattedDate value={new Date(status.get('created_at'))} hour12={false} year='numeric' month='short' day='2-digit' hour='2-digit' minute='2-digit' />
 | |
|           </a>{applicationLink} · {reblogLink} · <Link to={`/statuses/${status.get('id')}/favourites`} className='detailed-status__link'>
 | |
|             <i className='fa fa-star' />
 | |
|             <span className='detailed-status__favorites'>
 | |
|               <FormattedNumber value={status.get('favourites_count')} />
 | |
|             </span>
 | |
|           </Link>
 | |
|         </div>
 | |
|       </div>
 | |
|     );
 | |
|   }
 | |
| 
 | |
| }
 |