insomnia/app/ui/components/base/link.js

42 lines
1005 B
JavaScript
Raw Normal View History

import React, {PropTypes, PureComponent} from 'react';
import autobind from 'autobind-decorator';
import {trackEvent} from '../../../analytics/index';
import * as misc from '../../../common/misc';
2016-07-07 20:10:55 +00:00
@autobind
class Link extends PureComponent {
_handleClick (e) {
e && e.preventDefault();
const {href, onClick} = this.props;
// Also call onClick that was passed to us if there was one
onClick && onClick(e);
misc.clickLink(href);
trackEvent('Link', 'Click', href);
}
2016-11-23 22:55:09 +00:00
2016-07-07 20:10:55 +00:00
render () {
const {
onClick, // eslint-disable-line no-unused-vars
button,
href,
children,
...other
} = this.props;
return button
? <button onClick={this._handleClick} {...other}>{children}</button>
: <a href={href} onClick={this._handleClick} {...other}>{children}</a>;
2016-07-07 20:10:55 +00:00
}
}
Link.propTypes = {
2016-08-25 17:06:01 +00:00
href: PropTypes.string.isRequired,
// Optional
button: PropTypes.bool,
onClick: PropTypes.func,
children: PropTypes.node
2016-07-07 20:10:55 +00:00
};
export default Link;