@eccenca/gui-elements
Version:
GUI elements based on other libraries, usable in React application, written in Typescript.
54 lines • 2.71 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Switch = void 0;
const react_1 = __importStar(require("react"));
const core_1 = require("@blueprintjs/core");
const constants_1 = require("../../configuration/constants");
const Label_1 = require("../Label/Label");
const Switch = (_a) => {
var { onChange, className, label } = _a, otherProps = __rest(_a, ["onChange", "className", "label"]);
const handleChange = (e) => {
var _a;
if (onChange) {
onChange(!!((_a = e.target) === null || _a === void 0 ? void 0 : _a.checked));
}
};
return (react_1.default.createElement(core_1.Switch, Object.assign({ className: `${constants_1.CLASSPREFIX}-switch ${className !== null && className !== void 0 ? className : ""} ${label && !otherProps.labelElement ? core_1.Classes.INLINE : ""}`, labelElement: label ? (react_1.default.createElement(Label_1.Label, { text: label, isLayoutForElement: "span", disabled: otherProps.disabled, inline: true })) : undefined }, otherProps, { onChange: handleChange })));
};
exports.Switch = Switch;
exports.default = (0, react_1.memo)(exports.Switch);
//# sourceMappingURL=Switch.js.map