mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
41 lines
1.8 KiB
JavaScript
41 lines
1.8 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
var _excluded = ["id", "bsPrefix", "bsCustomPrefix", "className", "type", "isValid", "isInvalid", "isStatic", "as"];
|
|
import classNames from 'classnames';
|
|
import React, { useContext } from 'react';
|
|
import FormContext from './FormContext';
|
|
import { useBootstrapPrefix } from './ThemeProvider';
|
|
var FormCheckInput = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
var id = _ref.id,
|
|
bsPrefix = _ref.bsPrefix,
|
|
bsCustomPrefix = _ref.bsCustomPrefix,
|
|
className = _ref.className,
|
|
_ref$type = _ref.type,
|
|
type = _ref$type === void 0 ? 'checkbox' : _ref$type,
|
|
_ref$isValid = _ref.isValid,
|
|
isValid = _ref$isValid === void 0 ? false : _ref$isValid,
|
|
_ref$isInvalid = _ref.isInvalid,
|
|
isInvalid = _ref$isInvalid === void 0 ? false : _ref$isInvalid,
|
|
isStatic = _ref.isStatic,
|
|
_ref$as = _ref.as,
|
|
Component = _ref$as === void 0 ? 'input' : _ref$as,
|
|
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
|
|
var _useContext = useContext(FormContext),
|
|
controlId = _useContext.controlId,
|
|
custom = _useContext.custom;
|
|
|
|
var _ref2 = custom ? [bsCustomPrefix, 'custom-control-input'] : [bsPrefix, 'form-check-input'],
|
|
prefix = _ref2[0],
|
|
defaultPrefix = _ref2[1];
|
|
|
|
bsPrefix = useBootstrapPrefix(prefix, defaultPrefix);
|
|
return /*#__PURE__*/React.createElement(Component, _extends({}, props, {
|
|
ref: ref,
|
|
type: type,
|
|
id: id || controlId,
|
|
className: classNames(className, bsPrefix, isValid && 'is-valid', isInvalid && 'is-invalid', isStatic && 'position-static')
|
|
}));
|
|
});
|
|
FormCheckInput.displayName = 'FormCheckInput';
|
|
export default FormCheckInput; |