UNPKG

3.09 kBJavaScriptView Raw
1/*
2 * Copyright 2023 Palantir Technologies, Inc. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16import { __assign, __rest } from "tslib";
17import classNames from "classnames";
18import * as React from "react";
19import { Classes } from "../../common";
20import { DISPLAYNAME_PREFIX } from "../../common/props";
21import { Card } from "../card/card";
22import { Checkbox, Radio, Switch } from "../forms/controls";
23import { useCheckedControl } from "./useCheckedControl";
24/**
25 * ControlCard component, used to render a {@link Card} with a form control.
26 *
27 * @internal
28 */
29export var ControlCard = React.forwardRef(function (props, ref) {
30 var _a;
31 var alignIndicator = props.alignIndicator, _checked = props.checked, children = props.children, className = props.className, controlKind = props.controlKind, _defaultChecked = props.defaultChecked, disabled = props.disabled, inputProps = props.inputProps, inputRef = props.inputRef, label = props.label, _onChange = props.onChange, showAsSelectedWhenChecked = props.showAsSelectedWhenChecked, value = props.value, cardProps = __rest(props, ["alignIndicator", "checked", "children", "className", "controlKind", "defaultChecked", "disabled", "inputProps", "inputRef", "label", "onChange", "showAsSelectedWhenChecked", "value"]);
32 var _b = useCheckedControl(props), checked = _b.checked, onChange = _b.onChange;
33 // use a container element to achieve a good flex layout
34 var labelElement = React.createElement("div", { className: Classes.CONTROL_CARD_LABEL }, children !== null && children !== void 0 ? children : label);
35 var controlProps = __assign({ alignIndicator: alignIndicator, checked: checked, disabled: disabled, inline: true, inputRef: inputRef, labelElement: labelElement, onChange: onChange, value: value }, inputProps);
36 var classes = classNames(Classes.CONTROL_CARD, className, (_a = {},
37 _a[Classes.SELECTED] = showAsSelectedWhenChecked && checked,
38 _a));
39 return (React.createElement(Card, __assign({ interactive: !disabled, className: classes, ref: ref }, cardProps), controlKind === "switch" ? (React.createElement(Switch, __assign({}, controlProps))) : controlKind === "checkbox" ? (React.createElement(Checkbox, __assign({}, controlProps))) : controlKind === "radio" ? (React.createElement(Radio, __assign({}, controlProps))) : (labelElement)));
40});
41ControlCard.defaultProps = {
42 alignIndicator: "right",
43 showAsSelectedWhenChecked: true,
44};
45ControlCard.displayName = "".concat(DISPLAYNAME_PREFIX, ".ControlCard");
46//# sourceMappingURL=controlCard.js.map
\No newline at end of file