2017-05-03 03:04:16 +03:00
|
|
|
import React from 'react';
|
2017-04-21 21:05:35 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-23 14:10:41 +03:00
|
|
|
import classNames from 'classnames';
|
2017-04-21 21:05:35 +03:00
|
|
|
|
2017-06-23 20:36:54 +03:00
|
|
|
export default class Button extends React.PureComponent {
|
2016-08-25 20:52:55 +03:00
|
|
|
|
2017-05-12 15:44:10 +03:00
|
|
|
static propTypes = {
|
|
|
|
text: PropTypes.node,
|
|
|
|
onClick: PropTypes.func,
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
block: PropTypes.bool,
|
|
|
|
secondary: PropTypes.bool,
|
2017-05-23 14:10:41 +03:00
|
|
|
className: PropTypes.string,
|
2019-08-08 09:56:55 +03:00
|
|
|
title: PropTypes.string,
|
2017-05-20 18:31:47 +03:00
|
|
|
children: PropTypes.node,
|
2017-05-12 15:44:10 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2016-08-31 17:15:12 +03:00
|
|
|
if (!this.props.disabled) {
|
2017-05-26 15:10:37 +03:00
|
|
|
this.props.onClick(e);
|
2016-08-31 17:15:12 +03:00
|
|
|
}
|
2017-04-21 21:05:35 +03:00
|
|
|
}
|
2016-08-25 20:52:55 +03:00
|
|
|
|
2017-05-23 14:10:41 +03:00
|
|
|
setRef = (c) => {
|
|
|
|
this.node = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
this.node.focus();
|
|
|
|
}
|
|
|
|
|
2016-08-25 20:52:55 +03:00
|
|
|
render () {
|
2017-05-23 14:10:41 +03:00
|
|
|
const className = classNames('button', this.props.className, {
|
|
|
|
'button-secondary': this.props.secondary,
|
|
|
|
'button--block': this.props.block,
|
|
|
|
});
|
|
|
|
|
2016-08-25 20:52:55 +03:00
|
|
|
return (
|
2017-05-19 12:42:54 +03:00
|
|
|
<button
|
2017-05-23 14:10:41 +03:00
|
|
|
className={className}
|
2017-05-19 12:42:54 +03:00
|
|
|
disabled={this.props.disabled}
|
|
|
|
onClick={this.handleClick}
|
2017-05-23 14:10:41 +03:00
|
|
|
ref={this.setRef}
|
2019-08-08 09:56:55 +03:00
|
|
|
title={this.props.title}
|
2017-05-19 12:42:54 +03:00
|
|
|
>
|
2016-09-07 19:17:15 +03:00
|
|
|
{this.props.text || this.props.children}
|
2016-08-31 23:58:10 +03:00
|
|
|
</button>
|
2016-08-25 20:52:55 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 21:05:35 +03:00
|
|
|
}
|