react-planner
Version:
react-planner is a React Component for plans design. Draw a 2D floorplan and navigate it in 3D mode.
122 lines (100 loc) • 4.51 kB
JavaScript
var _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; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
function _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; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _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; }
function _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; }
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import * as SharedStyle from '../../shared-style';
var BASE_STYLE = {
display: "inline-block",
fontWeight: "400",
lineHeight: "1.25",
textAlign: "center",
whiteSpace: "nowrap",
verticalAlign: "middle",
cursor: "pointer",
WebkitUserSelect: "none",
MozUserSelect: "none",
MsUserSelect: "none",
userSelect: "none",
padding: "5px 14px",
fontSize: "14px",
color: SharedStyle.COLORS.black,
fonWeight: "400px",
transition: "background-color 175ms ease, border 175ms ease",
outline: "none",
borderRadius: "2px",
borderWidth: "1px",
borderType: "solid",
width: '100%'
};
var BASE_STYLE_SIZE = {
small: {
fontSize: "12px",
padding: "3px 8px"
},
normal: {},
large: {
padding: "8px 20px"
}
};
var Button = function (_Component) {
_inherits(Button, _Component);
function Button(props) {
_classCallCheck(this, Button);
var _this = _possibleConstructorReturn(this, (Button.__proto__ || Object.getPrototypeOf(Button)).call(this, props));
_this.state = { hover: false };
return _this;
}
_createClass(Button, [{
key: 'render',
value: function render() {
var _this2 = this;
var hover = this.state.hover;
var _props = this.props,
type = _props.type,
customStyle = _props.style,
customStyleHover = _props.styleHover,
children = _props.children,
size = _props.size,
rest = _objectWithoutProperties(_props, ['type', 'style', 'styleHover', 'children', 'size']);
var styleMerged = Object.assign({}, BASE_STYLE, BASE_STYLE_SIZE[size], hover ? customStyleHover : customStyle);
return React.createElement(
'button',
_extends({
type: type,
onMouseEnter: function onMouseEnter(e) {
return _this2.setState({ hover: true });
},
onMouseLeave: function onMouseLeave(e) {
return _this2.setState({ hover: false });
},
style: styleMerged
}, rest),
children
);
}
}]);
return Button;
}(Component);
export default Button;
Button.defaultProps = {
type: "button",
size: "normal",
style: {
backgroundColor: "#e6e6e6",
borderColor: "#adadad"
},
styleHover: {
backgroundColor: "#d4d4d4",
borderColor: "#8c8c8c"
}
};
Button.propTypes = {
type: PropTypes.string,
style: PropTypes.object,
styleHover: PropTypes.object,
size: PropTypes.oneOf(['large', 'normal', 'small'])
};