UNPKG

@blueprintjs/core

Version:

Core styles & components

95 lines 5.6 kB
/* * 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. */ import { __assign, __rest } from "tslib"; import classNames from "classnames"; import * as React from "react"; import { Classes, mergeRefs } from "../../common"; import { DISPLAYNAME_PREFIX } from "../../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. */ var ControlInternal = React.forwardRef(function (props, ref) { var _a; var alignIndicator = props.alignIndicator, children = props.children, className = props.className, indicatorChildren = props.indicatorChildren, inline = props.inline, inputRef = props.inputRef, label = props.label, labelElement = props.labelElement, // eslint-disable-next-line @typescript-eslint/no-deprecated large = props.large, _b = props.size, size = _b === void 0 ? "medium" : _b, style = props.style, type = props.type, typeClassName = props.typeClassName, _c = props.tagName, tagName = _c === void 0 ? "label" : _c, htmlProps = __rest(props, ["alignIndicator", "children", "className", "indicatorChildren", "inline", "inputRef", "label", "labelElement", "large", "size", "style", "type", "typeClassName", "tagName"]); var classes = classNames(Classes.CONTROL, typeClassName, (_a = {}, _a[Classes.DISABLED] = htmlProps.disabled, _a[Classes.INLINE] = inline, _a), Classes.alignmentClass(alignIndicator), Classes.sizeClass(size, { large: large }), className); return React.createElement(tagName, { className: classes, ref: ref, style: style }, React.createElement("input", __assign({}, htmlProps, { ref: inputRef, type: type })), React.createElement("span", { className: Classes.CONTROL_INDICATOR }, indicatorChildren), label, labelElement, children); }); ControlInternal.displayName = "".concat(DISPLAYNAME_PREFIX, ".Control"); /** * Switch component. * * @see https://blueprintjs.com/docs/#core/components/switch */ export var Switch = React.forwardRef(function (props, ref) { var innerLabelChecked = props.innerLabelChecked, innerLabel = props.innerLabel, controlProps = __rest(props, ["innerLabelChecked", "innerLabel"]); var switchLabels = innerLabel || innerLabelChecked ? [ React.createElement("div", { key: "checked", className: Classes.CONTROL_INDICATOR_CHILD }, React.createElement("div", { className: Classes.SWITCH_INNER_TEXT }, innerLabelChecked ? innerLabelChecked : innerLabel)), React.createElement("div", { key: "unchecked", className: Classes.CONTROL_INDICATOR_CHILD }, React.createElement("div", { className: Classes.SWITCH_INNER_TEXT }, innerLabel)), ] : null; return (React.createElement(ControlInternal, __assign({}, controlProps, { indicatorChildren: switchLabels, ref: ref, type: "checkbox", typeClassName: Classes.SWITCH }))); }); Switch.displayName = "".concat(DISPLAYNAME_PREFIX, ".Switch"); /** * Radio component. * * @see https://blueprintjs.com/docs/#core/components/radio */ export var Radio = React.forwardRef(function (props, ref) { return React.createElement(ControlInternal, __assign({}, props, { ref: ref, type: "radio", typeClassName: Classes.RADIO })); }); Radio.displayName = "".concat(DISPLAYNAME_PREFIX, ".Radio"); /** * Checkbox component. * * @see https://blueprintjs.com/docs/#core/components/checkbox */ export var Checkbox = React.forwardRef(function (props, ref) { var defaultIndeterminate = props.defaultIndeterminate, indeterminate = props.indeterminate, onChange = props.onChange, controlProps = __rest(props, ["defaultIndeterminate", "indeterminate", "onChange"]); var _a = React.useState(indeterminate || defaultIndeterminate || false), isIndeterminate = _a[0], setIsIndeterminate = _a[1]; var localInputRef = React.useRef(null); var inputRef = mergeRefs(props.inputRef, localInputRef); var handleChange = React.useCallback(function (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(function () { if (indeterminate !== undefined) { setIsIndeterminate(indeterminate); } }, [indeterminate]); React.useEffect(function () { if (localInputRef.current != null) { localInputRef.current.indeterminate = isIndeterminate; } }, [localInputRef, isIndeterminate]); return (React.createElement(ControlInternal, __assign({}, controlProps, { inputRef: inputRef, onChange: handleChange, ref: ref, type: "checkbox", typeClassName: Classes.CHECKBOX }))); }); Checkbox.displayName = "".concat(DISPLAYNAME_PREFIX, ".Checkbox"); //# sourceMappingURL=controls.js.map