mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
51 lines
1.9 KiB
JavaScript
51 lines
1.9 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
var _excluded = ["as", "bsPrefix", "column", "srOnly", "className", "htmlFor"];
|
|
import classNames from 'classnames';
|
|
import React, { useContext } from 'react';
|
|
import warning from 'warning';
|
|
import Col from './Col';
|
|
import FormContext from './FormContext';
|
|
import { useBootstrapPrefix } from './ThemeProvider';
|
|
var defaultProps = {
|
|
column: false,
|
|
srOnly: false
|
|
};
|
|
var FormLabel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
var _ref$as = _ref.as,
|
|
Component = _ref$as === void 0 ? 'label' : _ref$as,
|
|
bsPrefix = _ref.bsPrefix,
|
|
column = _ref.column,
|
|
srOnly = _ref.srOnly,
|
|
className = _ref.className,
|
|
htmlFor = _ref.htmlFor,
|
|
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
|
|
var _useContext = useContext(FormContext),
|
|
controlId = _useContext.controlId;
|
|
|
|
bsPrefix = useBootstrapPrefix(bsPrefix, 'form-label');
|
|
var columnClass = 'col-form-label';
|
|
if (typeof column === 'string') columnClass = columnClass + " " + columnClass + "-" + column;
|
|
var classes = classNames(className, bsPrefix, srOnly && 'sr-only', column && columnClass);
|
|
process.env.NODE_ENV !== "production" ? warning(controlId == null || !htmlFor, '`controlId` is ignored on `<FormLabel>` when `htmlFor` is specified.') : void 0;
|
|
htmlFor = htmlFor || controlId;
|
|
if (column) return /*#__PURE__*/React.createElement(Col, _extends({
|
|
ref: ref,
|
|
as: "label",
|
|
className: classes,
|
|
htmlFor: htmlFor
|
|
}, props));
|
|
return (
|
|
/*#__PURE__*/
|
|
// eslint-disable-next-line jsx-a11y/label-has-for, jsx-a11y/label-has-associated-control
|
|
React.createElement(Component, _extends({
|
|
ref: ref,
|
|
className: classes,
|
|
htmlFor: htmlFor
|
|
}, props))
|
|
);
|
|
});
|
|
FormLabel.displayName = 'FormLabel';
|
|
FormLabel.defaultProps = defaultProps;
|
|
export default FormLabel; |