@elastic/eui
Version:
Elastic UI Component Library
327 lines (326 loc) • 18.8 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
var _typeof = require("@babel/runtime/helpers/typeof");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.EuiFormRow = exports.DISPLAYS = void 0;
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _react = _interopRequireWildcard(require("react"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var _classnames = _interopRequireDefault(require("classnames"));
var _common = require("../../common");
var _objects = require("../../../services/objects");
var _form_help_text = require("../form_help_text");
var _form_error_text = require("../form_error_text");
var _form_label = require("../form_label");
var _eui_form_context = require("../eui_form_context");
var _accessibility = require("../../../services/accessibility");
var _react2 = require("@emotion/react");
var _excluded = ["children", "helpText", "isInvalid", "error", "label", "labelType", "labelAppend", "hasEmptyLabelSpace", "fullWidth", "className", "describedByIds", "display", "hasChildLabel", "id", "isDisabled"];
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
var displayToClassNameMap = {
row: null,
rowCompressed: 'euiFormRow--compressed',
columnCompressed: 'euiFormRow--compressed euiFormRow--horizontal',
center: null,
centerCompressed: 'euiFormRow--compressed',
columnCompressedSwitch: 'euiFormRow--compressed euiFormRow--horizontal euiFormRow--hasSwitch'
};
var DISPLAYS = (0, _common.keysOf)(displayToClassNameMap);
exports.DISPLAYS = DISPLAYS;
var EuiFormRow = /*#__PURE__*/function (_Component) {
(0, _inherits2.default)(EuiFormRow, _Component);
var _super = _createSuper(EuiFormRow);
function EuiFormRow() {
var _this;
(0, _classCallCheck2.default)(this, EuiFormRow);
for (var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++) {
_args[_key] = arguments[_key];
}
_this = _super.call.apply(_super, [this].concat(_args));
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "state", {
isFocused: false,
id: _this.props.id || (0, _accessibility.htmlIdGenerator)()()
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onFocus", function () {
// Doing this to allow onFocus to be called correctly from the child input element as this component overrides it
var onChildFocus = (0, _objects.get)(_this.props, 'children.props.onFocus');
if (onChildFocus) {
onChildFocus.apply(void 0, arguments);
}
_this.setState(function (_ref) {
var isFocused = _ref.isFocused;
if (!isFocused) {
return {
isFocused: true
};
} else {
return null;
}
});
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onBlur", function () {
// Doing this to allow onBlur to be called correctly from the child input element as this component overrides it
var onChildBlur = (0, _objects.get)(_this.props, 'children.props.onBlur');
if (onChildBlur) {
onChildBlur.apply(void 0, arguments);
}
_this.setState({
isFocused: false
});
});
return _this;
}
(0, _createClass2.default)(EuiFormRow, [{
key: "render",
value: function render() {
var _ref3, _child$props$disabled;
var _ref2 = this.context,
defaultFullWidth = _ref2.defaultFullWidth;
var _this$props = this.props,
children = _this$props.children,
helpText = _this$props.helpText,
isInvalid = _this$props.isInvalid,
error = _this$props.error,
label = _this$props.label,
labelType = _this$props.labelType,
labelAppend = _this$props.labelAppend,
hasEmptyLabelSpace = _this$props.hasEmptyLabelSpace,
_this$props$fullWidth = _this$props.fullWidth,
fullWidth = _this$props$fullWidth === void 0 ? defaultFullWidth : _this$props$fullWidth,
className = _this$props.className,
describedByIds = _this$props.describedByIds,
display = _this$props.display,
hasChildLabel = _this$props.hasChildLabel,
propsId = _this$props.id,
isDisabled = _this$props.isDisabled,
rest = (0, _objectWithoutProperties2.default)(_this$props, _excluded);
var id = this.state.id;
var hasLabel = label || labelAppend;
var classes = (0, _classnames.default)('euiFormRow', {
'euiFormRow--hasEmptyLabelSpace': hasEmptyLabelSpace,
'euiFormRow--fullWidth': fullWidth,
'euiFormRow--hasLabel': hasLabel
}, displayToClassNameMap[display],
// Safe use of ! as default prop is 'row'
className);
var optionalHelpTexts;
if (helpText) {
var helpTexts = Array.isArray(helpText) ? helpText : [helpText];
optionalHelpTexts = helpTexts.map(function (helpText, i) {
var key = typeof helpText === 'string' ? helpText : i;
return (0, _react2.jsx)(_form_help_text.EuiFormHelpText, {
key: key,
id: "".concat(id, "-help-").concat(i),
className: "euiFormRow__text"
}, helpText);
});
}
var optionalErrors;
if (error && isInvalid) {
var errorTexts = Array.isArray(error) ? error : [error];
optionalErrors = errorTexts.map(function (error, i) {
var key = typeof error === 'string' ? error : i;
return (0, _react2.jsx)(_form_error_text.EuiFormErrorText, {
key: key,
id: "".concat(id, "-error-").concat(i),
className: "euiFormRow__text"
}, error);
});
}
var optionalLabel;
var isLegend = label && labelType === 'legend' ? true : false;
var labelId = "".concat(id, "-label");
if (hasLabel) {
var labelProps = {};
if (isLegend) {
labelProps = {
type: labelType
};
} else {
labelProps = _objectSpread(_objectSpread({
htmlFor: hasChildLabel ? id : undefined
}, !isDisabled && {
isFocused: this.state.isFocused
}), {}, {
// If the row is disabled, don't pass the isFocused state.
type: labelType
});
}
optionalLabel = (0, _react2.jsx)("div", {
className: "euiFormRow__labelWrapper"
}, (0, _react2.jsx)(_form_label.EuiFormLabel, (0, _extends2.default)({
className: "euiFormRow__label",
isInvalid: isInvalid,
isDisabled: isDisabled,
"aria-invalid": isInvalid,
id: labelId
}, labelProps), label), labelAppend && ' ', labelAppend);
}
var optionalProps = {};
/**
* Safe use of ! as default prop is []
*/
var describingIds = (0, _toConsumableArray2.default)(describedByIds);
if (optionalHelpTexts) {
optionalHelpTexts.forEach(function (optionalHelpText) {
return describingIds.push(optionalHelpText.props.id);
});
}
if (optionalErrors) {
optionalErrors.forEach(function (error) {
return describingIds.push(error.props.id);
});
}
if (describingIds.length > 0) {
optionalProps['aria-describedby'] = describingIds.join(' ');
}
var child = _react.Children.only(children);
var field = /*#__PURE__*/(0, _react.cloneElement)(child, _objectSpread({
id: id,
// Allow the child's disabled or isDisabled prop to supercede the `isDisabled`
disabled: (_ref3 = (_child$props$disabled = child.props.disabled) !== null && _child$props$disabled !== void 0 ? _child$props$disabled : child.props.isDisabled) !== null && _ref3 !== void 0 ? _ref3 : isDisabled,
onFocus: this.onFocus,
onBlur: this.onBlur
}, optionalProps));
var fieldWrapperClasses = (0, _classnames.default)('euiFormRow__fieldWrapper', {
euiFormRow__fieldWrapperDisplayOnly:
/**
* Safe use of ! as default prop is 'row'
*/
display.startsWith('center')
});
var sharedProps = {
className: classes,
id: "".concat(id, "-row")
};
var contents = (0, _react2.jsx)(_react.default.Fragment, null, optionalLabel, (0, _react2.jsx)("div", {
className: fieldWrapperClasses
}, field, optionalErrors, optionalHelpTexts));
return labelType === 'legend' ? (0, _react2.jsx)("fieldset", (0, _extends2.default)({}, sharedProps, rest), contents) : (0, _react2.jsx)("div", (0, _extends2.default)({}, sharedProps, rest), contents);
}
}]);
return EuiFormRow;
}(_react.Component);
exports.EuiFormRow = EuiFormRow;
(0, _defineProperty2.default)(EuiFormRow, "contextType", _eui_form_context.FormContext);
(0, _defineProperty2.default)(EuiFormRow, "defaultProps", {
display: 'row',
hasEmptyLabelSpace: false,
describedByIds: [],
labelType: 'label',
hasChildLabel: true
});
EuiFormRow.propTypes = {
/**
* Defaults to rendering a `<label>` but if passed `'legend'` for labelType,
* will render both a `<legend>` and the surrounding container as a `<fieldset>`
*/
labelType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["label"]), _propTypes.default.oneOf(["legend"])]),
className: _propTypes.default.string,
"aria-label": _propTypes.default.string,
"data-test-subj": _propTypes.default.string,
css: _propTypes.default.any,
/**
* When `rowCompressed`, just tightens up the spacing;
* Set to `columnCompressed` if compressed
* and horizontal layout is needed.
* Set to `center` or `centerCompressed` to align non-input
* content better with inline rows.
* Set to `columnCompressedSwitch` if the form control being passed
* as the child is a switch.
*/
/**
* When `rowCompressed`, just tightens up the spacing;
* Set to `columnCompressed` if compressed
* and horizontal layout is needed.
* Set to `center` or `centerCompressed` to align non-input
* content better with inline rows.
* Set to `columnCompressedSwitch` if the form control being passed
* as the child is a switch.
*/
display: _propTypes.default.oneOf(["row", "rowCompressed", "columnCompressed", "center", "centerCompressed", "columnCompressedSwitch"]),
hasEmptyLabelSpace: _propTypes.default.bool,
/**
* Expand to fill 100% of the parent.
* Defaults to `fullWidth` prop of `<EuiForm>`.
* @default false
*/
/**
* Expand to fill 100% of the parent.
* Defaults to `fullWidth` prop of `<EuiForm>`.
* @default false
*/
fullWidth: _propTypes.default.bool,
/**
* IDs of additional elements that should be part of children's `aria-describedby`
*/
/**
* IDs of additional elements that should be part of children's `aria-describedby`
*/
describedByIds: _propTypes.default.arrayOf(_propTypes.default.string.isRequired),
/**
* Escape hatch to not render duplicate labels if the child also renders a label
*/
/**
* Escape hatch to not render duplicate labels if the child also renders a label
*/
hasChildLabel: _propTypes.default.bool,
/**
* ReactElement to render as this component's content
*/
/**
* ReactElement to render as this component's content
*/
children: _propTypes.default.element.isRequired,
label: _propTypes.default.node,
/**
* Adds an extra node to the right of the form label without
* being contained inside the form label. Good for things
* like documentation links.
*/
/**
* Adds an extra node to the right of the form label without
* being contained inside the form label. Good for things
* like documentation links.
*/
labelAppend: _propTypes.default.any,
id: _propTypes.default.string,
isInvalid: _propTypes.default.bool,
error: _propTypes.default.oneOfType([_propTypes.default.node.isRequired, _propTypes.default.arrayOf(_propTypes.default.node.isRequired).isRequired]),
/**
* Adds a single node/string or an array of nodes/strings below the input
*/
/**
* Adds a single node/string or an array of nodes/strings below the input
*/
helpText: _propTypes.default.oneOfType([_propTypes.default.node.isRequired, _propTypes.default.arrayOf(_propTypes.default.node.isRequired).isRequired]),
/**
* Passed along to the label element; and to the child field element when `disabled` doesn't already exist on the child field element.
*/
/**
* Passed along to the label element; and to the child field element when `disabled` doesn't already exist on the child field element.
*/
isDisabled: _propTypes.default.bool
};