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