2017-05-02 20:04:16 -04:00
import React from 'react' ;
2017-04-10 22:28:52 -04:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-04-21 14:05:35 -04:00
import PropTypes from 'prop-types' ;
2017-04-11 15:24:17 -04:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-04-10 22:28:52 -04:00
import Button from '../../../components/button' ;
2017-04-11 15:24:17 -04: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-05-02 20:04:16 -04:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2019-01-31 18:14:05 -05:00
import Icon from 'mastodon/components/icon' ;
2017-04-10 22:28:52 -04:00
const messages = defineMessages ( {
2019-05-09 16:39:27 -04:00
cancel _reblog : { id : 'status.cancel_reblog_private' , defaultMessage : 'Unboost' } ,
2017-05-20 11:31:47 -04:00
reblog : { id : 'status.reblog' , defaultMessage : 'Boost' } ,
2017-04-10 22:28:52 -04:00
} ) ;
2018-09-14 11:59:48 -04:00
export default @ injectIntl
class BoostModal extends ImmutablePureComponent {
2017-04-10 22:28:52 -04:00
2017-05-12 08:44:10 -04:00
static contextTypes = {
2017-05-20 11:31:47 -04:00
router : PropTypes . object ,
2017-05-12 08:44:10 -04:00
} ;
static propTypes = {
status : ImmutablePropTypes . map . isRequired ,
onReblog : PropTypes . func . isRequired ,
onClose : PropTypes . func . isRequired ,
2017-05-20 11:31:47 -04:00
intl : PropTypes . object . isRequired ,
2017-05-12 08:44:10 -04:00
} ;
2017-05-31 22:20:10 -04:00
componentDidMount ( ) {
this . button . focus ( ) ;
}
2017-05-12 08:44:10 -04:00
handleReblog = ( ) => {
2017-04-10 22:28:52 -04:00
this . props . onReblog ( this . props . status ) ;
this . props . onClose ( ) ;
2017-04-21 14:05:35 -04:00
}
2017-04-10 22:28:52 -04:00
2017-05-12 08:44:10 -04:00
handleAccountClick = ( e ) => {
2018-08-18 06:50:32 -04:00
if ( e . button === 0 && ! ( e . ctrlKey || e . metaKey ) ) {
2017-04-11 15:24:17 -04:00
e . preventDefault ( ) ;
this . props . onClose ( ) ;
2017-06-20 14:40:03 -04:00
this . context . router . history . push ( ` /accounts/ ${ this . props . status . getIn ( [ 'account' , 'id' ] ) } ` ) ;
2017-04-11 15:24:17 -04:00
}
2017-04-21 14:05:35 -04:00
}
2017-04-10 22:28:52 -04:00
2017-05-31 22:20:10 -04:00
setRef = ( c ) => {
this . button = c ;
}
2017-04-10 22:28:52 -04:00
render ( ) {
2017-06-23 10:05:04 -04:00
const { status , intl } = this . props ;
2019-05-09 16:39:27 -04:00
const buttonText = status . get ( 'reblogged' ) ? messages . cancel _reblog : messages . reblog ;
2017-04-10 22:28:52 -04:00
return (
< div className = 'modal-root__modal boost-modal' >
2017-04-11 15:24:17 -04:00
< div className = 'boost-modal__container' >
< div className = 'status light' >
2017-04-22 22:26:55 -04:00
< div className = 'boost-modal__status-header' >
< div className = 'boost-modal__status-time' >
2017-04-11 15:24:17 -04:00
< a href = { status . get ( 'url' ) } className = 'status__relative-time' target = '_blank' rel = 'noopener' > < RelativeTimestamp timestamp = { status . get ( 'created_at' ) } / > < / a >
< / d i v >
2017-04-22 22:26:55 -04:00
< a onClick = { this . handleAccountClick } href = { status . getIn ( [ 'account' , 'url' ] ) } className = 'status__display-name' >
< div className = 'status__avatar' >
2017-08-07 13:44:55 -04:00
< Avatar account = { status . get ( 'account' ) } size = { 48 } / >
2017-04-11 15:24:17 -04:00
< / d i v >
< DisplayName account = { status . get ( 'account' ) } / >
< / a >
< / d i v >
< StatusContent status = { status } / >
< / d i v >
2017-04-10 22:28:52 -04:00
< / d i v >
2017-04-11 15:24:17 -04:00
< div className = 'boost-modal__action-bar' >
2019-01-31 18:14:05 -05:00
< div > < FormattedMessage id = 'boost_modal.combo' defaultMessage = 'You can press {combo} to skip this next time' values = { { combo : < span > Shift + < Icon id = 'retweet' / > < /span> }} / > < / d i v >
2019-05-09 16:39:27 -04:00
< Button text = { intl . formatMessage ( buttonText ) } onClick = { this . handleReblog } ref = { this . setRef } / >
2017-04-10 22:28:52 -04:00
< / d i v >
< / d i v >
) ;
}
2017-04-21 14:05:35 -04:00
}