2017-04-11 02:28:52 +00:00
import PureRenderMixin from 'react-addons-pure-render-mixin' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-04-11 19:24:17 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-04-11 02:28:52 +00:00
import IconButton from '../../../components/icon_button' ;
import Button from '../../../components/button' ;
2017-04-11 19:24:17 +00:00
import StatusContent from '../../../components/status_content' ;
import Avatar from '../../../components/avatar' ;
import RelativeTimestamp from '../../../components/relative_timestamp' ;
import DisplayName from '../../../components/display_name' ;
2017-04-11 02:28:52 +00:00
const messages = defineMessages ( {
reblog : { id : 'status.reblog' , defaultMessage : 'Boost' }
} ) ;
const BoostModal = React . createClass ( {
2017-04-11 19:24:17 +00:00
contextTypes : {
router : React . PropTypes . object
} ,
2017-04-11 02:28:52 +00:00
propTypes : {
status : ImmutablePropTypes . map . isRequired ,
onReblog : React . PropTypes . func . isRequired ,
onClose : React . PropTypes . func . isRequired ,
intl : React . PropTypes . object . isRequired
} ,
mixins : [ PureRenderMixin ] ,
handleReblog ( ) {
this . props . onReblog ( this . props . status ) ;
this . props . onClose ( ) ;
} ,
2017-04-11 19:24:17 +00:00
handleAccountClick ( e ) {
if ( e . button === 0 ) {
e . preventDefault ( ) ;
this . props . onClose ( ) ;
this . context . router . push ( ` /accounts/ ${ this . props . status . getIn ( [ 'account' , 'id' ] ) } ` ) ;
}
2017-04-11 02:28:52 +00:00
} ,
render ( ) {
const { status , intl , onClose } = this . props ;
return (
< div className = 'modal-root__modal boost-modal' >
2017-04-11 19:24:17 +00:00
< div className = 'boost-modal__container' >
< div className = 'status light' >
< div style = { { fontSize : '15px' } } >
< div style = { { float : 'right' , fontSize : '14px' } } >
< a href = { status . get ( 'url' ) } className = 'status__relative-time' target = '_blank' rel = 'noopener' > < RelativeTimestamp timestamp = { status . get ( 'created_at' ) } / > < / a >
< / div >
< a onClick = { this . handleAccountClick } href = { status . getIn ( [ 'account' , 'url' ] ) } className = 'status__display-name' style = { { display : 'block' , maxWidth : '100%' , paddingRight : '25px' } } >
< div className = 'status__avatar' style = { { position : 'absolute' , left : '10px' , top : '10px' , width : '48px' , height : '48px' } } >
< Avatar src = { status . getIn ( [ 'account' , 'avatar' ] ) } staticSrc = { status . getIn ( [ 'account' , 'avatar_static' ] ) } size = { 48 } / >
< / div >
< DisplayName account = { status . get ( 'account' ) } / >
< / a >
< / div >
< StatusContent status = { status } / >
< / div >
2017-04-11 02:28:52 +00:00
< / div >
2017-04-11 19:24:17 +00:00
< div className = 'boost-modal__action-bar' >
2017-04-13 00:15:45 +00:00
< div > < FormattedMessage id = 'boost_modal.combo' defaultMessage = 'You can press {combo} to skip this next time' values = { { combo : < span > Shift + < i className = 'fa fa-retweet' / > < / span > } } / > < / div >
2017-04-11 19:24:17 +00:00
< Button text = { intl . formatMessage ( messages . reblog ) } onClick = { this . handleReblog } / >
2017-04-11 02:28:52 +00:00
< / div >
< / div >
) ;
}
} ) ;
export default injectIntl ( BoostModal ) ;