2017-05-03 02:04:16 +02:00
import React from 'react' ;
2017-01-30 21:40:55 +01:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-04-21 20:05:35 +02:00
import PropTypes from 'prop-types' ;
2017-12-04 08:26:40 +01:00
import InnerHeader from 'flavours/glitch/features/account/components/header' ;
import ActionBar from 'flavours/glitch/features/account/components/action_bar' ;
2017-05-03 02:04:16 +02:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2018-03-16 19:54:00 +01:00
import { FormattedMessage } from 'react-intl' ;
import { NavLink } from 'react-router-dom' ;
2018-03-29 14:43:20 +02:00
import MovedNote from './moved_note' ;
2017-01-30 21:40:55 +01:00
2017-06-23 19:36:54 +02:00
export default class Header extends ImmutablePureComponent {
2017-01-30 21:40:55 +01:00
2017-05-12 14:44:10 +02:00
static propTypes = {
account : ImmutablePropTypes . map ,
2019-03-28 18:01:09 +01:00
identity _proofs : ImmutablePropTypes . list ,
2017-05-12 14:44:10 +02:00
onFollow : PropTypes . func . isRequired ,
onBlock : PropTypes . func . isRequired ,
onMention : PropTypes . func . isRequired ,
2018-03-29 21:13:47 +02:00
onDirect : PropTypes . func . isRequired ,
2017-11-09 15:41:10 +01:00
onReblogToggle : PropTypes . func . isRequired ,
2017-05-12 14:44:10 +02:00
onReport : PropTypes . func . isRequired ,
2017-05-19 21:05:32 +02:00
onMute : PropTypes . func . isRequired ,
onBlockDomain : PropTypes . func . isRequired ,
onUnblockDomain : PropTypes . func . isRequired ,
2018-08-10 16:25:46 +02:00
onEndorseToggle : PropTypes . func . isRequired ,
2018-11-06 17:44:28 +01:00
onAddToList : PropTypes . func . isRequired ,
2018-03-16 20:29:42 +01:00
hideTabs : PropTypes . bool ,
2019-03-26 00:36:25 +01:00
domain : PropTypes . string . isRequired ,
2017-05-12 14:44:10 +02:00
} ;
static contextTypes = {
2017-05-20 17:31:47 +02:00
router : PropTypes . object ,
2017-05-12 14:44:10 +02:00
} ;
2017-01-30 21:40:55 +01:00
2017-05-12 14:44:10 +02:00
handleFollow = ( ) => {
2017-01-30 21:40:55 +01:00
this . props . onFollow ( this . props . account ) ;
2017-04-21 20:05:35 +02:00
}
2017-01-30 21:40:55 +01:00
2017-05-12 14:44:10 +02:00
handleBlock = ( ) => {
2017-01-30 21:40:55 +01:00
this . props . onBlock ( this . props . account ) ;
2017-04-21 20:05:35 +02:00
}
2017-01-30 21:40:55 +01:00
2017-05-12 14:44:10 +02:00
handleMention = ( ) => {
2017-06-20 20:40:03 +02:00
this . props . onMention ( this . props . account , this . context . router . history ) ;
2017-04-21 20:05:35 +02:00
}
2017-01-30 21:40:55 +01:00
2018-03-29 21:13:47 +02:00
handleDirect = ( ) => {
this . props . onDirect ( this . props . account , this . context . router . history ) ;
}
2017-05-12 14:44:10 +02:00
handleReport = ( ) => {
2017-02-14 20:59:26 +01:00
this . props . onReport ( this . props . account ) ;
2017-04-21 20:05:35 +02:00
}
2017-02-14 20:59:26 +01:00
2017-11-09 15:41:10 +01:00
handleReblogToggle = ( ) => {
this . props . onReblogToggle ( this . props . account ) ;
}
2020-09-18 17:26:45 +02:00
handleNotifyToggle = ( ) => {
this . props . onNotifyToggle ( this . props . account ) ;
}
2017-05-12 14:44:10 +02:00
handleMute = ( ) => {
2017-02-06 02:51:56 +01:00
this . props . onMute ( this . props . account ) ;
2017-04-21 20:05:35 +02:00
}
2017-02-06 02:51:56 +01:00
2017-05-19 21:05:32 +02:00
handleBlockDomain = ( ) => {
const domain = this . props . account . get ( 'acct' ) . split ( '@' ) [ 1 ] ;
if ( ! domain ) return ;
2018-03-04 23:38:00 +01:00
this . props . onBlockDomain ( domain ) ;
2017-05-19 21:05:32 +02:00
}
handleUnblockDomain = ( ) => {
const domain = this . props . account . get ( 'acct' ) . split ( '@' ) [ 1 ] ;
if ( ! domain ) return ;
2018-03-04 23:38:00 +01:00
this . props . onUnblockDomain ( domain ) ;
2017-05-19 21:05:32 +02:00
}
2018-08-10 16:25:46 +02:00
handleEndorseToggle = ( ) => {
this . props . onEndorseToggle ( this . props . account ) ;
}
2018-11-06 17:44:28 +01:00
handleAddToList = ( ) => {
this . props . onAddToList ( this . props . account ) ;
}
2020-06-30 19:19:50 +02:00
handleEditAccountNote = ( ) => {
this . props . onEditAccountNote ( this . props . account ) ;
}
2017-01-30 21:40:55 +01:00
render ( ) {
2019-03-28 18:01:09 +01:00
const { account , hideTabs , identity _proofs } = this . props ;
2017-01-30 21:40:55 +01:00
2017-02-26 23:06:27 +01:00
if ( account === null ) {
2019-04-09 05:02:48 +02:00
return null ;
2017-01-30 21:40:55 +01:00
}
return (
2017-04-23 04:26:55 +02:00
< div className = 'account-timeline__header' >
2018-03-29 14:43:20 +02:00
{ account . get ( 'moved' ) && < MovedNote from = { account } to = { account . get ( 'moved' ) } / > }
2017-01-30 21:40:55 +01:00
< InnerHeader
account = { account }
2019-03-28 18:01:09 +01:00
identity _proofs = { identity _proofs }
2017-01-30 21:40:55 +01:00
onFollow = { this . handleFollow }
2018-03-05 11:09:29 +01:00
onBlock = { this . handleBlock }
2019-03-26 05:31:09 +01:00
onMention = { this . handleMention }
onDirect = { this . handleDirect }
onReblogToggle = { this . handleReblogToggle }
2020-09-18 17:26:45 +02:00
onNotifyToggle = { this . handleNotifyToggle }
2019-03-26 05:31:09 +01:00
onReport = { this . handleReport }
onMute = { this . handleMute }
onBlockDomain = { this . handleBlockDomain }
onUnblockDomain = { this . handleUnblockDomain }
onEndorseToggle = { this . handleEndorseToggle }
onAddToList = { this . handleAddToList }
2020-06-30 19:19:50 +02:00
onEditAccountNote = { this . handleEditAccountNote }
2019-03-26 00:36:25 +01:00
domain = { this . props . domain }
2017-01-30 21:40:55 +01:00
/ >
< ActionBar
account = { account }
/ >
2018-03-16 19:54:00 +01:00
2018-03-16 20:29:42 +01:00
{ ! hideTabs && (
< div className = 'account__section-headline' >
2022-05-03 10:59:23 +02:00
< NavLink exact to = { ` /@ ${ account . get ( 'acct' ) } ` } > < FormattedMessage id = 'account.posts' defaultMessage = 'Posts' / > < / N a v L i n k >
< NavLink exact to = { ` /@ ${ account . get ( 'acct' ) } /with_replies ` } > < FormattedMessage id = 'account.posts_with_replies' defaultMessage = 'Posts with replies' / > < / N a v L i n k >
2021-09-26 05:46:13 +02:00
< NavLink exact to = { ` /@ ${ account . get ( 'acct' ) } /media ` } > < FormattedMessage id = 'account.media' defaultMessage = 'Media' / > < / N a v L i n k >
2018-03-16 20:29:42 +01:00
< / d i v >
) }
2017-01-30 21:40:55 +01:00
< / d i v >
) ;
}
2017-04-21 20:05:35 +02:00
2017-05-12 14:44:10 +02:00
}