about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/account_timeline/components/header.jsx
blob: fd66c13e0c4bd3fa3636229e888f1ef49452b3fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import ImmutablePropTypes from 'react-immutable-proptypes';
import PropTypes from 'prop-types';
import InnerHeader from '../../account/components/header';
import ActionBar from '../../account/components/action_bar';
import MissingIndicator from '../../../components/missing_indicator';

class Header extends React.PureComponent {

  constructor (props, context) {
    super(props, context);
    this.handleFollow = this.handleFollow.bind(this);
    this.handleBlock = this.handleBlock.bind(this);
    this.handleMention = this.handleMention.bind(this);
    this.handleReport = this.handleReport.bind(this);
    this.handleMute = this.handleMute.bind(this);
  }

  handleFollow () {
    this.props.onFollow(this.props.account);
  }

  handleBlock () {
    this.props.onBlock(this.props.account);
  }

  handleMention () {
    this.props.onMention(this.props.account, this.context.router);
  }

  handleReport () {
    this.props.onReport(this.props.account);
    this.context.router.push('/report');
  }

  handleMute() {
    this.props.onMute(this.props.account);
  }

  render () {
    const { account, me } = this.props;

    if (account === null) {
      return <MissingIndicator />;
    }

    return (
      <div className='account-timeline__header'>
        <InnerHeader
          account={account}
          me={me}
          onFollow={this.handleFollow}
        />

        <ActionBar
          account={account}
          me={me}
          onBlock={this.handleBlock}
          onMention={this.handleMention}
          onReport={this.handleReport}
          onMute={this.handleMute}
        />
      </div>
    );
  }
}

Header.propTypes = {
  account: ImmutablePropTypes.map,
  me: PropTypes.number.isRequired,
  onFollow: PropTypes.func.isRequired,
  onBlock: PropTypes.func.isRequired,
  onMention: PropTypes.func.isRequired,
  onReport: PropTypes.func.isRequired,
  onMute: PropTypes.func.isRequired
};

Header.contextTypes = {
  router: PropTypes.object
};

export default Header;