@blueprintjs/core
Version:
Core styles & components
97 lines • 5.11 kB
JavaScript
/*
* Copyright 2016 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Checkbox = exports.Radio = exports.Switch = void 0;
const tslib_1 = require("tslib");
const classnames_1 = tslib_1.__importDefault(require("classnames"));
const React = tslib_1.__importStar(require("react"));
const common_1 = require("../../common");
const props_1 = require("../../common/props");
/**
* Renders common control elements, with additional props to customize appearance.
* This component is not exported and is only used within this module for `Checkbox`, `Radio`, and `Switch` below.
*/
const ControlInternal = React.forwardRef((props, ref) => {
const { alignIndicator, children, className, indicatorChildren, inline, inputRef, label, labelElement,
// eslint-disable-next-line @typescript-eslint/no-deprecated
large, size = "medium", style, type, typeClassName, tagName = "label", ...htmlProps } = props;
const classes = (0, classnames_1.default)(common_1.Classes.CONTROL, typeClassName, {
[common_1.Classes.DISABLED]: htmlProps.disabled,
[common_1.Classes.INLINE]: inline,
}, common_1.Classes.alignmentClass(alignIndicator), common_1.Classes.sizeClass(size, { large }), className);
return React.createElement(tagName, { className: classes, ref, style }, React.createElement("input", { ...htmlProps, ref: inputRef, type: type }), React.createElement("span", { className: common_1.Classes.CONTROL_INDICATOR }, indicatorChildren), label, labelElement, children);
});
ControlInternal.displayName = `${props_1.DISPLAYNAME_PREFIX}.Control`;
/**
* Switch component.
*
* @see https://blueprintjs.com/docs/#core/components/switch
*/
exports.Switch = React.forwardRef((props, ref) => {
const { innerLabelChecked, innerLabel, ...controlProps } = props;
const switchLabels = innerLabel || innerLabelChecked
? [
React.createElement("div", { key: "checked", className: common_1.Classes.CONTROL_INDICATOR_CHILD },
React.createElement("div", { className: common_1.Classes.SWITCH_INNER_TEXT }, innerLabelChecked ? innerLabelChecked : innerLabel)),
React.createElement("div", { key: "unchecked", className: common_1.Classes.CONTROL_INDICATOR_CHILD },
React.createElement("div", { className: common_1.Classes.SWITCH_INNER_TEXT }, innerLabel)),
]
: null;
return (React.createElement(ControlInternal, { ...controlProps, indicatorChildren: switchLabels, ref: ref, type: "checkbox", typeClassName: common_1.Classes.SWITCH }));
});
exports.Switch.displayName = `${props_1.DISPLAYNAME_PREFIX}.Switch`;
/**
* Radio component.
*
* @see https://blueprintjs.com/docs/#core/components/radio
*/
exports.Radio = React.forwardRef((props, ref) => {
return React.createElement(ControlInternal, { ...props, ref: ref, type: "radio", typeClassName: common_1.Classes.RADIO });
});
exports.Radio.displayName = `${props_1.DISPLAYNAME_PREFIX}.Radio`;
/**
* Checkbox component.
*
* @see https://blueprintjs.com/docs/#core/components/checkbox
*/
exports.Checkbox = React.forwardRef((props, ref) => {
const { defaultIndeterminate, indeterminate, onChange, ...controlProps } = props;
const [isIndeterminate, setIsIndeterminate] = React.useState(indeterminate || defaultIndeterminate || false);
const localInputRef = React.useRef(null);
const inputRef = (0, common_1.mergeRefs)(props.inputRef, localInputRef);
const handleChange = React.useCallback((evt) => {
// update state immediately only if uncontrolled
if (indeterminate === undefined) {
setIsIndeterminate(evt.target.indeterminate);
}
// otherwise wait for props change. always invoke handler.
onChange === null || onChange === void 0 ? void 0 : onChange(evt);
}, [indeterminate, onChange]);
React.useEffect(() => {
if (indeterminate !== undefined) {
setIsIndeterminate(indeterminate);
}
}, [indeterminate]);
React.useEffect(() => {
if (localInputRef.current != null) {
localInputRef.current.indeterminate = isIndeterminate;
}
}, [localInputRef, isIndeterminate]);
return (React.createElement(ControlInternal, { ...controlProps, inputRef: inputRef, onChange: handleChange, ref: ref, type: "checkbox", typeClassName: common_1.Classes.CHECKBOX }));
});
exports.Checkbox.displayName = `${props_1.DISPLAYNAME_PREFIX}.Checkbox`;
//# sourceMappingURL=controls.js.map
;