UNPKG

primereact

Version:

[![Join the chat at https://gitter.im/primefaces/primereact](https://badges.gitter.im/primefaces/primereact.svg)](https://gitter.im/primefaces/primereact?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

88 lines (65 loc) 3.77 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.ColorPickerPanel = undefined; 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; }; }(); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); var _reactDom = require('react-dom'); var _reactDom2 = _interopRequireDefault(_reactDom); var _classnames = require('classnames'); var _classnames2 = _interopRequireDefault(_classnames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 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; } var ColorPickerPanel = exports.ColorPickerPanel = function (_Component) { _inherits(ColorPickerPanel, _Component); function ColorPickerPanel() { _classCallCheck(this, ColorPickerPanel); return _possibleConstructorReturn(this, (ColorPickerPanel.__proto__ || Object.getPrototypeOf(ColorPickerPanel)).apply(this, arguments)); } _createClass(ColorPickerPanel, [{ key: 'renderElement', value: function renderElement() { var _this2 = this; var className = (0, _classnames2.default)('ui-colorpicker-panel ui-corner-all', { 'ui-colorpicker-overlay-panel ui-shadow': !this.props.inline, 'ui-state-disabled': this.props.disabled }); return _react2.default.createElement( 'div', { ref: function ref(el) { return _this2.element = el; }, className: className, onClick: this.props.onClick }, this.props.children ); } }, { key: 'render', value: function render() { var element = this.renderElement(); if (this.props.appendTo) { return _reactDom2.default.createPortal(element, this.props.appendTo); } else { return element; } } }]); return ColorPickerPanel; }(_react.Component); ColorPickerPanel.defaultProps = { appendTo: null, inline: false, disabled: false, onClick: null }; ColorPickerPanel.propsTypes = { appendTo: _propTypes2.default.any, inline: _propTypes2.default.bool, disabled: _propTypes2.default.bool, onClick: _propTypes2.default.func };