about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/community_timeline/components/section_headline.js
blob: c7176d04b8064d4428479c34399912a824ca3771 (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
import PropTypes from 'prop-types';
import React, { Component, Fragment } from 'react';
import { FormattedMessage } from 'react-intl';
import { NavLink } from 'react-router-dom';

export default class SectionHeadline extends Component {

  static propTypes = {
    timelineId: PropTypes.string.isRequired,
    to: PropTypes.string.isRequired,
    pinned: PropTypes.bool.isRequired,
    onlyMedia: PropTypes.bool.isRequired,
    onClick: PropTypes.func,
  };

  shouldComponentUpdate (nextProps) {
    return (
      this.props.onlyMedia !== nextProps.onlyMedia ||
      this.props.pinned !== nextProps.pinned ||
      this.props.to !== nextProps.to ||
      this.props.timelineId !== nextProps.timelineId
    );
  }

  handleClick = e => {
    const { onClick } = this.props;

    if (typeof onClick === 'function') {
      e.preventDefault();

      onClick.call(this, e);
    }
  }

  render () {
    const { timelineId, to, pinned, onlyMedia } = this.props;

    return (
      <div className={`${timelineId}-timeline__section-headline`}>
        {pinned ? (
          <Fragment>
            <a href={to} className={!onlyMedia ? 'active' : undefined} onClick={this.handleClick}>
              <FormattedMessage id='timeline.posts' defaultMessage='Toots' />
            </a>
            <a href={`${to}/media`} className={onlyMedia ? 'active' : undefined} onClick={this.handleClick}>
              <FormattedMessage id='timeline.media' defaultMessage='Media' />
            </a>
          </Fragment>
        ) : (
          <Fragment>
            <NavLink exact to={to} replace><FormattedMessage id='timeline.posts' defaultMessage='Toots' /></NavLink>
            <NavLink exact to={`${to}/media`} replace><FormattedMessage id='timeline.media' defaultMessage='Media' /></NavLink>
          </Fragment>
        )}
      </div>
    );
  }

}