aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Link.js
blob: fd14b7018a5b8aac601afe3b86c2356c4b0b3af1 (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
82
83
import { shell } from 'electron';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { inject, observer } from 'mobx-react';
import { RouterStore } from 'mobx-react-router';
import classnames from 'classnames';

import { oneOrManyChildElements } from '../../prop-types';
import { matchRoute } from '../../helpers/routing-helpers';

// TODO: create container component for this component
export default @inject('stores') @observer class Link extends Component {
  onClick(e) {
    if (this.props.disabled) e.preventDefault();
    else if (this.props.target === '_blank') {
      e.preventDefault();
      shell.openExternal(this.props.to);
    }
  }

  render() {
    const {
      children,
      stores,
      to,
      className,
      activeClassName,
      strictFilter,
      style,
    } = this.props;
    const { router } = stores;

    let filter = `${to}(*action)`;
    if (strictFilter) {
      filter = `${to}`;
    }

    const match = matchRoute(filter, router.location.pathname);

    const linkClasses = classnames({
      [`${className}`]: true,
      [`${activeClassName}`]: match,
      'is-disabled': this.props.disabled,
    });

    return (
      <a
        href={router.history.createHref(to)}
        className={linkClasses}
        style={style}
        onClick={(e) => this.onClick(e)}
      >
        {children}
      </a>
    );
  }
}

Link.wrappedComponent.propTypes = {
  stores: PropTypes.shape({
    router: PropTypes.instanceOf(RouterStore).isRequired,
  }).isRequired,
  children: PropTypes.oneOfType([
    oneOrManyChildElements,
    PropTypes.string,
  ]).isRequired,
  to: PropTypes.string.isRequired,
  className: PropTypes.string,
  activeClassName: PropTypes.string,
  strictFilter: PropTypes.bool,
  target: PropTypes.string,
  style: PropTypes.object,
  disabled: PropTypes.bool,
};

Link.wrappedComponent.defaultProps = {
  className: '',
  activeClassName: '',
  strictFilter: false,
  disabled: false,
  target: '',
  style: {},
};