|
|
import { Component } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import { recordTracksEvent } from '../helpers/stats'; |
|
|
import { html } from '../indices-to-html'; |
|
|
import actions from '../state/actions'; |
|
|
import noticon2gridicon from '../utils/noticon2gridicon'; |
|
|
import Gridicon from './gridicons'; |
|
|
import ImagePreloader from './image-loader'; |
|
|
|
|
|
export class SummaryInList extends Component { |
|
|
handleClick = ( event ) => { |
|
|
event.stopPropagation(); |
|
|
event.preventDefault(); |
|
|
|
|
|
if ( event.metaKey || event.shiftKey ) { |
|
|
window.open( this.props.note.url, '_blank' ); |
|
|
} else if ( this.props.currentNote === this.props.note.id ) { |
|
|
this.props.unselectNote(); |
|
|
} else { |
|
|
recordTracksEvent( 'calypso_notification_note_open', { |
|
|
note_type: this.props.note.type, |
|
|
} ); |
|
|
this.props.selectNote( this.props.note.id ); |
|
|
} |
|
|
}; |
|
|
|
|
|
render() { |
|
|
const subject = html( this.props.note.subject[ 0 ], { |
|
|
links: false, |
|
|
} ); |
|
|
let excerpt = null; |
|
|
|
|
|
if ( 1 < this.props.note.subject.length ) { |
|
|
excerpt = <div className="wpnc__excerpt">{ this.props.note.subject[ 1 ].text }</div>; |
|
|
} |
|
|
|
|
|
return ( |
|
|
|
|
|
<div className="wpnc__summary" onClick={ this.handleClick }> |
|
|
<div className="wpnc__note-icon"> |
|
|
<ImagePreloader |
|
|
src={ this.props.note.icon } |
|
|
key={ `image-preloader-${ this.props.note.icon }` } |
|
|
placeholder={ |
|
|
// eslint-disable-next-line jsx-a11y/alt-text |
|
|
<img src="https://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=128" /> |
|
|
} |
|
|
/> |
|
|
<span className="wpnc__gridicon"> |
|
|
<Gridicon icon={ noticon2gridicon( this.props.note.noticon ) } size={ 12 } /> |
|
|
</span> |
|
|
</div> |
|
|
<div className="wpnc__text-summary"> |
|
|
{ /* eslint-disable-next-line react/no-danger */ } |
|
|
<div className="wpnc__subject" dangerouslySetInnerHTML={ { __html: subject } } /> |
|
|
{ excerpt } |
|
|
</div> |
|
|
</div> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
const mapDispatchToProps = { |
|
|
selectNote: actions.ui.selectNote, |
|
|
unselectNote: actions.ui.unselectNote, |
|
|
}; |
|
|
|
|
|
export default connect( null, mapDispatchToProps )( SummaryInList ); |
|
|
|