optimizely-oui
Version:
Optimizely's Component Library.
72 lines (58 loc) • 3.29 kB
JavaScript
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 classNames from "classnames";
var Section = function Section(_ref) {
var 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,
props = _objectWithoutProperties(_ref, ["children", "className", "description", "helpIcon", "isOptional", "isRequired", "popoverText", "popoverTitle", "testSection", "title"]);
var headerClasses = classNames("push--bottom", {
"oui-label--required": isRequired
});
return React.createElement("div", _extends({
"data-test-section": testSection,
className: classNames("soft-triple--bottom", className)
}, props), title && React.createElement("h3", {
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-double--bottom"
}, description), children);
};
Section.propTypes = {
children: PropTypes.node.isRequired,
/** CSS class names. */
className: PropTypes.string,
/** Description for Form Section */
description: PropTypes.node,
/** Indicates whether to include a help popover */
helpIcon: PropTypes.bool,
/** Indicates whether to include the "optional" tag to the section */
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 Section */
title: PropTypes.string
};
export default Section;