Use ES Class Fields & Static Properties (currently stage 2) for improve class outlook. Added babel-plugin-transform-class-properties as a Babel plugin.
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			760 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			760 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import Avatar from '../../../components/avatar';
 | |
| import DisplayName from '../../../components/display_name';
 | |
| import ImmutablePropTypes from 'react-immutable-proptypes';
 | |
| import ImmutablePureComponent from 'react-immutable-pure-component';
 | |
| 
 | |
| class AutosuggestAccount extends ImmutablePureComponent {
 | |
| 
 | |
|   static propTypes = {
 | |
|     account: ImmutablePropTypes.map.isRequired
 | |
|   };
 | |
| 
 | |
|   render () {
 | |
|     const { account } = this.props;
 | |
| 
 | |
|     return (
 | |
|       <div className='autosuggest-account'>
 | |
|         <div className='autosuggest-account-icon'><Avatar src={account.get('avatar')} staticSrc={account.get('avatar_static')} size={18} /></div>
 | |
|         <DisplayName account={account} />
 | |
|       </div>
 | |
|     );
 | |
|   }
 | |
| 
 | |
| }
 | |
| 
 | |
| export default AutosuggestAccount;
 |