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