mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
b198e6170b
* Removed some unnecessary rendering * Only PureComponents and some other stuff * Removed all functional components * Only deal with nunjucks marks * Remove ref assign functions in modals * Lots of tweaks * A bit snappier * A bit snappier
31 lines
690 B
JavaScript
31 lines
690 B
JavaScript
import React, {PureComponent, PropTypes} from 'react';
|
|
import {shell} from 'electron';
|
|
|
|
class Button extends PureComponent {
|
|
_handleClick = e => {
|
|
const {onClick, onDisabledClick, disabled} = this.props;
|
|
const fn = disabled ? onDisabledClick : onClick;
|
|
|
|
if (this.props.hasOwnProperty('value')) {
|
|
fn && fn(this.props.value, e);
|
|
} else {
|
|
fn && fn(e);
|
|
}
|
|
};
|
|
|
|
render () {
|
|
const {children, value, ...props} = this.props;
|
|
return (
|
|
<button {...props} onClick={this._handleClick}>{children}</button>
|
|
)
|
|
}
|
|
}
|
|
|
|
Button.propTypes = {
|
|
value: PropTypes.any,
|
|
onDisabledClick: PropTypes.func,
|
|
onClick: PropTypes.func,
|
|
};
|
|
|
|
export default Button;
|