|
|
|
@ -12,6 +12,7 @@ import IconButton from 'flavours/glitch/components/icon_button'; |
|
|
|
|
import RelativeTimestamp from 'flavours/glitch/components/relative_timestamp'; |
|
|
|
|
import { HotKeys } from 'react-hotkeys'; |
|
|
|
|
import { autoPlayGif } from 'flavours/glitch/util/initial_state'; |
|
|
|
|
import classNames from 'classnames'; |
|
|
|
|
|
|
|
|
|
const messages = defineMessages({ |
|
|
|
|
more: { id: 'status.more', defaultMessage: 'More' }, |
|
|
|
@ -193,7 +194,7 @@ class Conversation extends ImmutablePureComponent { |
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
|
<HotKeys handlers={handlers}> |
|
|
|
|
<div className='conversation focusable muted' tabIndex='0'> |
|
|
|
|
<div className={classNames('conversation focusable muted', { 'conversation--unread': unread })} tabIndex='0'> |
|
|
|
|
<div className='conversation__avatar'> |
|
|
|
|
<AvatarComposite accounts={accounts} size={48} /> |
|
|
|
|
</div> |
|
|
|
@ -201,7 +202,7 @@ class Conversation extends ImmutablePureComponent { |
|
|
|
|
<div className='conversation__content'> |
|
|
|
|
<div className='conversation__content__info'> |
|
|
|
|
<div className='conversation__content__relative-time'> |
|
|
|
|
<RelativeTimestamp timestamp={lastStatus.get('created_at')} /> |
|
|
|
|
{unread && <span className='conversation__unread' />} <RelativeTimestamp timestamp={lastStatus.get('created_at')} /> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div className='conversation__content__names' ref={this.setNamesRef}> |
|
|
|
|