* Replace browserify with webpack * Add react-intl-translations-manager * Do not minify in development, add offline-plugin for ServiceWorker background cache updates * Adjust tests and dependencies * Fix production deployments * Fix tests * More optimizations * Improve travis cache for npm stuff * Re-run travis * Add back support for custom.scss as before * Remove offline-plugin and babili * Fix issue with Immutable.List().unshift(...values) not working as expected * Make travis load schema instead of running all migrations in sequence * Fix missing React import in WarningContainer. Optimize rendering performance by using ImmutablePureComponent instead of React.PureComponent. ImmutablePureComponent uses Immutable.is() to compare props. Replace dynamic callback bindings in <UI /> * Add react definitions to places that use JSX * Add Procfile.dev for running rails, webpack and streaming API at the same time
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import ImmutablePropTypes from 'react-immutable-proptypes';
 | |
| import PropTypes from 'prop-types';
 | |
| import Avatar from '../../../components/avatar';
 | |
| import IconButton from '../../../components/icon_button';
 | |
| import DisplayName from '../../../components/display_name';
 | |
| import emojify from '../../../emoji';
 | |
| import { defineMessages, injectIntl } from 'react-intl';
 | |
| import ImmutablePureComponent from 'react-immutable-pure-component';
 | |
| 
 | |
| const messages = defineMessages({
 | |
|   cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' }
 | |
| });
 | |
| 
 | |
| class ReplyIndicator extends ImmutablePureComponent {
 | |
| 
 | |
|   constructor (props, context) {
 | |
|     super(props, context);
 | |
|     this.handleClick = this.handleClick.bind(this);
 | |
|     this.handleAccountClick = this.handleAccountClick.bind(this);
 | |
|   }
 | |
| 
 | |
|   handleClick () {
 | |
|     this.props.onCancel();
 | |
|   }
 | |
| 
 | |
|   handleAccountClick (e) {
 | |
|     if (e.button === 0) {
 | |
|       e.preventDefault();
 | |
|       this.context.router.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   render () {
 | |
|     const { status, intl } = this.props;
 | |
| 
 | |
|     if (!status) {
 | |
|       return null;
 | |
|     }
 | |
| 
 | |
|     const content  = { __html: emojify(status.get('content')) };
 | |
| 
 | |
|     return (
 | |
|       <div className='reply-indicator'>
 | |
|         <div className='reply-indicator__header'>
 | |
|           <div className='reply-indicator__cancel'><IconButton title={intl.formatMessage(messages.cancel)} icon='times' onClick={this.handleClick} /></div>
 | |
| 
 | |
|           <a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='reply-indicator__display-name'>
 | |
|             <div className='reply-indicator__display-avatar'><Avatar size={24} src={status.getIn(['account', 'avatar'])} staticSrc={status.getIn(['account', 'avatar_static'])} /></div>
 | |
|             <DisplayName account={status.get('account')} />
 | |
|           </a>
 | |
|         </div>
 | |
| 
 | |
|         <div className='reply-indicator__content' dangerouslySetInnerHTML={content} />
 | |
|       </div>
 | |
|     );
 | |
|   }
 | |
| 
 | |
| }
 | |
| 
 | |
| ReplyIndicator.contextTypes = {
 | |
|   router: PropTypes.object
 | |
| };
 | |
| 
 | |
| ReplyIndicator.propTypes = {
 | |
|   status: ImmutablePropTypes.map,
 | |
|   onCancel: PropTypes.func.isRequired,
 | |
|   intl: PropTypes.object.isRequired
 | |
| };
 | |
| 
 | |
| export default injectIntl(ReplyIndicator);
 |