UNPKG

optimizely-oui

Version:

Optimizely's Component Library.

97 lines (81 loc) 4.1 kB
function _extends() { _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; }; return _extends.apply(this, arguments); } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } import PropTypes from "prop-types"; import React from "react"; import HelpPopover from "../HelpPopover"; import Row from "../Form/Row"; import Item from "../Form/Item"; import classNames from "classnames"; var Fieldset = function Fieldset(_ref) { var bottomSpacing = _ref.bottomSpacing, children = _ref.children, className = _ref.className, description = _ref.description, helpIcon = _ref.helpIcon, isOptional = _ref.isOptional, isRequired = _ref.isRequired, popoverText = _ref.popoverText, popoverTitle = _ref.popoverTitle, testSection = _ref.testSection, title = _ref.title, titleSize = _ref.titleSize, props = _objectWithoutProperties(_ref, ["bottomSpacing", "children", "className", "description", "helpIcon", "isOptional", "isRequired", "popoverText", "popoverTitle", "testSection", "title", "titleSize"]); var headerClasses = classNames({ "push--bottom": titleSize === "large", "push-half--bottom": titleSize === "small", gamma: titleSize === "large", epsilon: titleSize === "small", "oui-label--required": isRequired }); var fieldsetClasses = classNames({ "push-triple--bottom": bottomSpacing, "flush--bottom": !bottomSpacing }, className); return React.createElement("fieldset", _extends({ "data-test-section": testSection, className: fieldsetClasses }, props), title && React.createElement("legend", { className: headerClasses }, title, isOptional && React.createElement("label", { className: "oui-label__optional" }, "(Optional)"), helpIcon && React.createElement(HelpPopover, { popoverTitle: popoverTitle, horizontalAttachment: "left", verticalAttachment: "middle" }, React.createElement("p", null, popoverText))), description && React.createElement("div", { className: "push--bottom" }, description), children); }; Fieldset.Row = Row; Fieldset.Item = Item; Fieldset.propTypes = { /** Adds spacing at the bottom. If used in a Form, make this to true. */ bottomSpacing: PropTypes.bool, /** Children components. Should be Fieldset.Row or Fieldset.Item for proper spacing */ children: PropTypes.node.isRequired, /** CSS class names. */ className: PropTypes.string, /** Description for Fieldset */ description: PropTypes.node, /** Indicates whether to include a help popover */ helpIcon: PropTypes.bool, /** Indicates whether to include the "optional" tag to the fieldset */ isOptional: PropTypes.bool, /** Indicates whether to include a required asterisk */ isRequired: PropTypes.bool, /** Text for popover */ popoverText: PropTypes.string, /** Title for popover */ popoverTitle: PropTypes.string, testSection: PropTypes.string, /** Title for Fieldset */ title: PropTypes.string, /** Size of Fieldset title*/ titleSize: PropTypes.oneOf(["small", "large"]) }; Fieldset.defaultProps = { bottomSpacing: true, titleSize: "large" }; export default Fieldset;