2017-04-22 03:05:35 +09:00
import PropTypes from 'prop-types' ;
2023-05-28 23:38:10 +09:00
2017-04-12 04:24:17 +09:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2023-05-28 23:38:10 +09:00
import classNames from 'classnames' ;
2023-10-20 02:44:55 +09:00
import { withRouter } from 'react-router-dom' ;
2023-05-28 23:38:10 +09:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import ImmutablePureComponent from 'react-immutable-pure-component' ;
import { connect } from 'react-redux' ;
import { changeBoostPrivacy } from 'flavours/glitch/actions/boosts' ;
import AttachmentList from 'flavours/glitch/components/attachment_list' ;
2023-11-15 20:01:51 +09:00
import { Icon } from 'flavours/glitch/components/icon' ;
2022-05-03 18:04:09 +09:00
import VisibilityIcon from 'flavours/glitch/components/status_visibility_icon' ;
2023-05-28 23:38:10 +09:00
import PrivacyDropdown from 'flavours/glitch/features/compose/components/privacy_dropdown' ;
2023-10-20 02:44:55 +09:00
import { WithRouterPropTypes } from 'flavours/glitch/utils/react_router' ;
2017-04-11 11:28:52 +09:00
2023-11-15 20:01:51 +09:00
import { Avatar } from '../../../components/avatar' ;
import { Button } from '../../../components/button' ;
import { DisplayName } from '../../../components/display_name' ;
import { RelativeTimestamp } from '../../../components/relative_timestamp' ;
import StatusContent from '../../../components/status_content' ;
2017-04-11 11:28:52 +09:00
const messages = defineMessages ( {
2019-05-10 05:39:27 +09:00
cancel _reblog : { id : 'status.cancel_reblog_private' , defaultMessage : 'Unboost' } ,
2017-05-21 00:31:47 +09:00
reblog : { id : 'status.reblog' , defaultMessage : 'Boost' } ,
2017-04-11 11:28:52 +09:00
} ) ;
2021-02-11 08:53:12 +09:00
const mapStateToProps = state => {
return {
privacy : state . getIn ( [ 'boosts' , 'new' , 'privacy' ] ) ,
} ;
} ;
const mapDispatchToProps = dispatch => {
return {
onChangeBoostPrivacy ( value ) {
dispatch ( changeBoostPrivacy ( value ) ) ;
} ,
} ;
} ;
2019-09-09 22:16:08 +09:00
class BoostModal extends ImmutablePureComponent {
2017-05-12 21:44:10 +09:00
static propTypes = {
status : ImmutablePropTypes . map . isRequired ,
onReblog : PropTypes . func . isRequired ,
onClose : PropTypes . func . isRequired ,
2019-06-08 01:38:07 +09:00
missingMediaDescription : PropTypes . bool ,
2017-05-21 00:31:47 +09:00
intl : PropTypes . object . isRequired ,
2023-10-20 02:44:55 +09:00
... WithRouterPropTypes ,
2017-05-12 21:44:10 +09:00
} ;
handleReblog = ( ) => {
2021-02-11 08:53:12 +09:00
this . props . onReblog ( this . props . status , this . props . privacy ) ;
2017-04-11 11:28:52 +09:00
this . props . onClose ( ) ;
2023-02-04 04:52:07 +09:00
} ;
2017-04-11 11:28:52 +09:00
2017-05-12 21:44:10 +09:00
handleAccountClick = ( e ) => {
2017-04-12 04:24:17 +09:00
if ( e . button === 0 ) {
e . preventDefault ( ) ;
this . props . onClose ( ) ;
2023-10-20 02:44:55 +09:00
this . props . history . push ( ` /@ ${ this . props . status . getIn ( [ 'account' , 'acct' ] ) } ` ) ;
2017-04-12 04:24:17 +09:00
}
2023-02-04 04:52:07 +09:00
} ;
2017-04-11 11:28:52 +09:00
2021-02-11 08:53:12 +09:00
_findContainer = ( ) => {
return document . getElementsByClassName ( 'modal-root__container' ) [ 0 ] ;
} ;
2017-04-11 11:28:52 +09:00
render ( ) {
2021-02-11 08:53:12 +09:00
const { status , missingMediaDescription , privacy , intl } = this . props ;
2019-05-10 05:39:27 +09:00
const buttonText = status . get ( 'reblogged' ) ? messages . cancel _reblog : messages . reblog ;
2017-04-11 11:28:52 +09:00
return (
< div className = 'modal-root__modal boost-modal' >
2017-04-12 04:24:17 +09:00
< div className = 'boost-modal__container' >
2020-07-12 22:22:48 +09:00
< div className = { classNames ( 'status' , ` status- ${ status . get ( 'visibility' ) } ` , 'light' ) } >
2017-04-23 11:26:55 +09:00
< div className = 'boost-modal__status-header' >
< div className = 'boost-modal__status-time' >
2020-10-27 11:00:47 +09:00
< a href = { status . get ( 'url' ) } className = 'status__relative-time' target = '_blank' rel = 'noopener noreferrer' >
2022-05-03 18:04:09 +09:00
< VisibilityIcon visibility = { status . get ( 'visibility' ) } / >
2020-10-27 11:00:47 +09:00
< RelativeTimestamp timestamp = { status . get ( 'created_at' ) } / > < / a >
2017-04-12 04:24:17 +09:00
< / div >
2017-04-23 11:26:55 +09:00
< a onClick = { this . handleAccountClick } href = { status . getIn ( [ 'account' , 'url' ] ) } className = 'status__display-name' >
< div className = 'status__avatar' >
2017-08-07 03:59:19 +09:00
< Avatar account = { status . get ( 'account' ) } size = { 48 } / >
2017-04-12 04:24:17 +09:00
< / div >
< DisplayName account = { status . get ( 'account' ) } / >
< / a >
< / div >
< StatusContent status = { status } / >
2019-06-14 00:04:52 +09:00
{ status . get ( 'media_attachments' ) . size > 0 && (
< AttachmentList
compact
media = { status . get ( 'media_attachments' ) }
/ >
) }
2017-04-12 04:24:17 +09:00
< / div >
2017-04-11 11:28:52 +09:00
< / div >
2017-04-12 04:24:17 +09:00
< div className = 'boost-modal__action-bar' >
2019-06-08 01:38:07 +09:00
< div >
{ missingMediaDescription ?
2023-02-04 04:52:07 +09:00
< FormattedMessage id = 'boost_modal.missing_description' defaultMessage = 'This toot contains some media without description' / >
2019-06-08 01:38:07 +09:00
:
2023-02-04 04:52:07 +09:00
< FormattedMessage id = 'boost_modal.combo' defaultMessage = 'You can press {combo} to skip this next time' values = { { combo : < span > Shift + < Icon id = 'retweet' / > < / span > } } / >
2019-06-08 01:38:07 +09:00
}
< / div >
2021-02-11 08:53:12 +09:00
{ status . get ( 'visibility' ) !== 'private' && ! status . get ( 'reblogged' ) && (
< PrivacyDropdown
noDirect
value = { privacy }
container = { this . _findContainer }
onChange = { this . props . onChangeBoostPrivacy }
/ >
) }
2023-10-23 16:43:00 +09:00
< Button text = { intl . formatMessage ( buttonText ) } onClick = { this . handleReblog } autoFocus / >
2017-04-11 11:28:52 +09:00
< / div >
< / div >
) ;
}
2017-04-22 03:05:35 +09:00
}
2023-03-25 07:15:25 +09:00
2023-10-20 02:44:55 +09:00
export default withRouter ( connect ( mapStateToProps , mapDispatchToProps ) ( injectIntl ( BoostModal ) ) ) ;