UNPKG

2.91 kBJavaScriptView Raw
1var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
2
3var _class, _temp;
4
5function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
6
7function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
8
9function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
10
11function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
12
13import React, { Component } from 'react';
14import PropTypes from 'prop-types';
15
16var Button = (_temp = _class = function (_Component) {
17 _inherits(Button, _Component);
18
19 function Button(props) {
20 _classCallCheck(this, Button);
21
22 var _this = _possibleConstructorReturn(this, _Component.call(this, props));
23
24 _this.onClick = function (e) {
25 if (_this.props.onClick) _this.props.onClick(Object.getArgs(e, _this.props.args));
26 };
27
28 _this.state = {};
29 return _this;
30 }
31
32 Button.prototype.render = function render() {
33 var _this2 = this;
34
35 var _props = this.props,
36 args = _props.args,
37 className = _props.className,
38 style = _props.style,
39 disabled = _props.disabled,
40 children = _props.children,
41 onClick = _props.onClick,
42 others = _objectWithoutProperties(_props, ['args', 'className', 'style', 'disabled', 'children', 'onClick']);
43
44 return React.createElement(
45 'a',
46 _extends({ ref: function ref(el) {
47 _this2.$el = el;
48 }, className: 'button' + (className ? ' ' + className : ''), disabled: disabled, style: style, onClick: this.onClick }, others),
49 children
50 );
51 };
52
53 return Button;
54}(Component), _class.defaultProps = {}, _temp);
55export { Button as default };
56Button.propTypes = process.env.NODE_ENV !== "production" ? {
57 args: PropTypes.any,
58 style: PropTypes.object,
59 className: PropTypes.string,
60 disabled: PropTypes.bool,
61 onClick: PropTypes.func,
62
63 children: PropTypes.node
64} : {};
\No newline at end of file