2017-12-09 17:26:22 +01:00
import React from 'react' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import PropTypes from 'prop-types' ;
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import Button from 'flavours/glitch/components/button' ;
import StatusContent from 'flavours/glitch/components/status_content' ;
import Avatar from 'flavours/glitch/components/avatar' ;
import RelativeTimestamp from 'flavours/glitch/components/relative_timestamp' ;
import DisplayName from 'flavours/glitch/components/display_name' ;
2020-11-12 23:25:26 +01:00
import AttachmentList from 'flavours/glitch/components/attachment_list' ;
2019-09-09 16:41:41 +02:00
import Icon from 'flavours/glitch/components/icon' ;
2017-12-09 17:26:22 +01:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2020-11-12 23:25:26 +01:00
import classNames from 'classnames' ;
2017-12-09 17:26:22 +01:00
const messages = defineMessages ( {
2017-12-09 19:06:00 +01:00
favourite : { id : 'status.favourite' , defaultMessage : 'Favourite' } ,
2020-11-12 23:25:26 +01:00
public _short : { id : 'privacy.public.short' , defaultMessage : 'Public' } ,
unlisted _short : { id : 'privacy.unlisted.short' , defaultMessage : 'Unlisted' } ,
private _short : { id : 'privacy.private.short' , defaultMessage : 'Followers-only' } ,
direct _short : { id : 'privacy.direct.short' , defaultMessage : 'Direct' } ,
2017-12-09 17:26:22 +01:00
} ) ;
2019-09-09 15:16:08 +02:00
export default @ injectIntl
class FavouriteModal extends ImmutablePureComponent {
2017-12-09 17:26:22 +01:00
static contextTypes = {
router : PropTypes . object ,
} ;
static propTypes = {
status : ImmutablePropTypes . map . isRequired ,
2017-12-09 19:06:00 +01:00
onFavourite : PropTypes . func . isRequired ,
2017-12-09 17:26:22 +01:00
onClose : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
} ;
componentDidMount ( ) {
this . button . focus ( ) ;
}
handleFavourite = ( ) => {
this . props . onFavourite ( this . props . status ) ;
this . props . onClose ( ) ;
}
handleAccountClick = ( e ) => {
if ( e . button === 0 ) {
e . preventDefault ( ) ;
this . props . onClose ( ) ;
2019-04-15 22:23:05 +02:00
let state = { ... this . context . router . history . location . state } ;
state . mastodonBackSteps = ( state . mastodonBackSteps || 0 ) + 1 ;
2021-09-26 05:46:13 +02:00
this . context . router . history . push ( ` /@ ${ this . props . status . getIn ( [ 'account' , 'acct' ] ) } ` , state ) ;
2017-12-09 17:26:22 +01:00
}
}
setRef = ( c ) => {
this . button = c ;
}
render ( ) {
const { status , intl } = this . props ;
2020-11-12 23:25:26 +01:00
const visibilityIconInfo = {
'public' : { icon : 'globe' , text : intl . formatMessage ( messages . public _short ) } ,
'unlisted' : { icon : 'unlock' , text : intl . formatMessage ( messages . unlisted _short ) } ,
'private' : { icon : 'lock' , text : intl . formatMessage ( messages . private _short ) } ,
'direct' : { icon : 'envelope' , text : intl . formatMessage ( messages . direct _short ) } ,
} ;
const visibilityIcon = visibilityIconInfo [ status . get ( 'visibility' ) ] ;
2017-12-09 17:26:22 +01:00
return (
< div className = 'modal-root__modal favourite-modal' >
< div className = 'favourite-modal__container' >
2020-11-12 23:25:26 +01:00
< div className = { classNames ( 'status' , ` status- ${ status . get ( 'visibility' ) } ` , 'light' ) } >
2017-12-09 17:26:22 +01:00
< div className = 'favourite-modal__status-header' >
< div className = 'favourite-modal__status-time' >
2020-11-12 23:25:26 +01:00
< a href = { status . get ( 'url' ) } className = 'status__relative-time' target = '_blank' rel = 'noopener noreferrer' >
< span className = 'status__visibility-icon' > < Icon id = { visibilityIcon . icon } title = { visibilityIcon . text } / > < / s p a n >
< RelativeTimestamp timestamp = { status . get ( 'created_at' ) } / >
< / a >
2017-12-09 17:26:22 +01:00
< / d i v >
< a onClick = { this . handleAccountClick } href = { status . getIn ( [ 'account' , 'url' ] ) } className = 'status__display-name' >
< div className = 'status__avatar' >
< Avatar account = { status . get ( 'account' ) } size = { 48 } / >
< / d i v >
< DisplayName account = { status . get ( 'account' ) } / >
2020-11-12 23:25:26 +01:00
2017-12-09 17:26:22 +01:00
< / a >
< / d i v >
< StatusContent status = { status } / >
2020-11-12 23:25:26 +01:00
{ status . get ( 'media_attachments' ) . size > 0 && (
< AttachmentList
compact
media = { status . get ( 'media_attachments' ) }
/ >
) }
2017-12-09 17:26:22 +01:00
< / d i v >
< / d i v >
< div className = 'favourite-modal__action-bar' >
2019-09-09 16:41:41 +02:00
< div > < FormattedMessage id = 'favourite_modal.combo' defaultMessage = 'You can press {combo} to skip this next time' values = { { combo : < span > Shift + < Icon id = 'star' / > < /span> }} / > < / d i v >
2017-12-09 19:06:00 +01:00
< Button text = { intl . formatMessage ( messages . favourite ) } onClick = { this . handleFavourite } ref = { this . setRef } / >
2017-12-09 17:26:22 +01:00
< / d i v >
< / d i v >
) ;
}
}