UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

132 lines 7.56 kB
define(["require", "exports", "tslib", "react", "../../Utilities", "../../Icon", "../../KeytipData"], function (require, exports, tslib_1, React, Utilities_1, Icon_1, KeytipData_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var getClassNames = Utilities_1.classNamesFunction(); var CheckboxBase = /** @class */ (function (_super) { tslib_1.__extends(CheckboxBase, _super); /** * Initialize a new instance of the Checkbox * @param props - Props for the component * @param context - Context or initial state for the base component. */ function CheckboxBase(props, context) { var _this = _super.call(this, props, context) || this; _this._checkBox = React.createRef(); _this._onFocus = function (ev) { var inputProps = _this.props.inputProps; if (inputProps && inputProps.onFocus) { inputProps.onFocus(ev); } }; _this._onBlur = function (ev) { var inputProps = _this.props.inputProps; if (inputProps && inputProps.onBlur) { inputProps.onBlur(ev); } }; _this._onChange = function (ev) { var _a = _this.props, disabled = _a.disabled, onChange = _a.onChange; var _b = _this.state, isChecked = _b.isChecked, isIndeterminate = _b.isIndeterminate; if (!disabled) { if (!isIndeterminate) { if (onChange) { onChange(ev, !isChecked); } if (_this.props.checked === undefined) { _this.setState({ isChecked: !isChecked }); } } else { if (onChange) { onChange(ev, isChecked); } if (_this.props.indeterminate === undefined) { _this.setState({ isIndeterminate: false }); } } } }; _this._onRenderLabel = function (props) { var label = props.label; return label ? (React.createElement("span", { "aria-hidden": "true", className: _this._classNames.text }, label)) : null; }; Utilities_1.initializeComponentRef(_this); if (process.env.NODE_ENV !== 'production') { Utilities_1.warnMutuallyExclusive('Checkbox', props, { checked: 'defaultChecked', indeterminate: 'defaultIndeterminate' }); } _this._id = _this.props.id || Utilities_1.getId('checkbox-'); _this.state = { isChecked: !!(props.checked !== undefined ? props.checked : props.defaultChecked), isIndeterminate: !!(props.indeterminate !== undefined ? props.indeterminate : props.defaultIndeterminate) }; Utilities_1.initializeFocusRects(); return _this; } CheckboxBase.getDerivedStateFromProps = function (props, state) { if (!props.defaultIndeterminate && state.isIndeterminate) { return { isIndeterminate: !!props.indeterminate }; } if (props.checked !== undefined) { return { isChecked: !!props.checked }; } return null; }; /** * Render the Checkbox based on passed props */ CheckboxBase.prototype.render = function () { var _this = this; var _a = this.props, checked = _a.checked, className = _a.className, defaultChecked = _a.defaultChecked, disabled = _a.disabled, inputProps = _a.inputProps, name = _a.name, boxSide = _a.boxSide, theme = _a.theme, ariaLabel = _a.ariaLabel, ariaLabelledBy = _a.ariaLabelledBy, ariaDescribedBy = _a.ariaDescribedBy, styles = _a.styles, _b = _a.onRenderLabel, onRenderLabel = _b === void 0 ? this._onRenderLabel : _b, checkmarkIconProps = _a.checkmarkIconProps, ariaPositionInSet = _a.ariaPositionInSet, ariaSetSize = _a.ariaSetSize, keytipProps = _a.keytipProps, title = _a.title, label = _a.label, indeterminate = _a.indeterminate; var isChecked = checked === undefined ? this.state.isChecked : checked; var isIndeterminate = !!(indeterminate === undefined ? this.state.isIndeterminate : indeterminate); var isReversed = boxSide !== 'start' ? true : false; this._classNames = getClassNames(styles, { theme: theme, className: className, disabled: disabled, indeterminate: isIndeterminate, checked: isChecked, reversed: isReversed, isUsingCustomLabelRender: onRenderLabel !== this._onRenderLabel }); return (React.createElement(KeytipData_1.KeytipData, { keytipProps: keytipProps, disabled: disabled }, function (keytipAttributes) { return (React.createElement("div", { className: _this._classNames.root }, React.createElement("input", tslib_1.__assign({ type: "checkbox" }, inputProps, { "data-ktp-execute-target": keytipAttributes['data-ktp-execute-target'] }, checked !== undefined && { checked: checked }, defaultChecked !== undefined && { defaultChecked: defaultChecked }, { disabled: disabled, className: _this._classNames.input, ref: _this._checkBox, name: name, id: _this._id, title: title, onChange: _this._onChange, onFocus: _this._onFocus, onBlur: _this._onBlur, "aria-disabled": disabled, "aria-label": ariaLabel || label, "aria-labelledby": ariaLabelledBy, "aria-describedby": Utilities_1.mergeAriaAttributeValues(ariaDescribedBy, keytipAttributes['aria-describedby']), "aria-posinset": ariaPositionInSet, "aria-setsize": ariaSetSize, "aria-checked": isIndeterminate ? 'mixed' : isChecked ? 'true' : 'false' })), React.createElement("label", { className: _this._classNames.label, htmlFor: _this._id }, React.createElement("div", { className: _this._classNames.checkbox, "data-ktp-target": keytipAttributes['data-ktp-target'] }, React.createElement(Icon_1.Icon, tslib_1.__assign({ iconName: "CheckMark" }, checkmarkIconProps, { className: _this._classNames.checkmark }))), onRenderLabel(_this.props, _this._onRenderLabel)))); })); }; Object.defineProperty(CheckboxBase.prototype, "indeterminate", { get: function () { return this.state.isIndeterminate; }, enumerable: true, configurable: true }); Object.defineProperty(CheckboxBase.prototype, "checked", { get: function () { return this.state.isChecked; }, enumerable: true, configurable: true }); CheckboxBase.prototype.focus = function () { if (this._checkBox.current) { this._checkBox.current.focus(); } }; CheckboxBase.defaultProps = { boxSide: 'start' }; return CheckboxBase; }(React.Component)); exports.CheckboxBase = CheckboxBase; }); //# sourceMappingURL=Checkbox.base.js.map