UNPKG

@elastic/eui

Version:

Elastic UI Component Library

282 lines (281 loc) 13.6 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); var _typeof = require("@babel/runtime/helpers/typeof"); Object.defineProperty(exports, "__esModule", { value: true }); exports.EuiRangeClass = exports.EuiRange = void 0; var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties")); var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass")); var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn")); var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf")); var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits")); var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _react = _interopRequireWildcard(require("react")); var _classnames = _interopRequireDefault(require("classnames")); var _number = require("../../../services/number"); var _popover = require("../../popover"); var _services = require("../../../services/"); var _eui_form_context = require("../eui_form_context"); var _range_levels_colors = require("./range_levels_colors"); var _range_highlight = require("./range_highlight"); var _range_input = require("./range_input"); var _range_label = require("./range_label"); var _range_slider = require("./range_slider"); var _range_tooltip = require("./range_tooltip"); var _range_track = require("./range_track"); var _range_wrapper = require("./range_wrapper"); var _range = require("./range.styles"); var _i18n = require("../../i18n"); var _react2 = require("@emotion/react"); var _excluded = ["className", "compressed", "disabled", "fullWidth", "isLoading", "readOnly", "id", "max", "min", "name", "step", "showLabels", "showInput", "inputPopoverProps", "showTicks", "tickInterval", "ticks", "levels", "showRange", "showValue", "valueAppend", "valuePrepend", "onBlur", "onChange", "onFocus", "value", "tabIndex", "isInvalid", "theme"]; function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); } function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); } function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ var EuiRangeClass = exports.EuiRangeClass = /*#__PURE__*/function (_Component) { function EuiRangeClass() { var _this; (0, _classCallCheck2.default)(this, EuiRangeClass); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _callSuper(this, EuiRangeClass, [].concat(args)); (0, _defineProperty2.default)(_this, "preventPopoverClose", false); (0, _defineProperty2.default)(_this, "state", { id: _this.props.id || (0, _services.htmlIdGenerator)()(), isPopoverOpen: false, trackWidth: 0 }); (0, _defineProperty2.default)(_this, "handleOnChange", function (e) { var isValid = (0, _number.isWithinRange)(_this.props.min, _this.props.max, e.currentTarget.value); if (_this.props.onChange) { _this.props.onChange(e, isValid); } }); (0, _defineProperty2.default)(_this, "setTrackWidth", function (_ref) { var width = _ref.width; _this.setState({ trackWidth: width }); }); (0, _defineProperty2.default)(_this, "onInputFocus", function (e) { if (_this.props.onFocus) { _this.props.onFocus(e); } _this.setState({ isPopoverOpen: true }); }); (0, _defineProperty2.default)(_this, "onInputBlur", function (e) { return setTimeout(function () { // Safari does not recognize any focus-related eventing for input[type=range] // making it impossible to capture its state using active/focus/relatedTarget // Instead, a prevention flag is set on mousedown, with a waiting period here. // Mousedown is viable because in the popover case, it is inaccessible via keyboard (intentionally) if (_this.preventPopoverClose) { _this.preventPopoverClose = false; return; } if (_this.props.onBlur) { _this.props.onBlur(e); } _this.closePopover(); }, 200); }); (0, _defineProperty2.default)(_this, "closePopover", function () { _this.preventPopoverClose = false; _this.setState({ isPopoverOpen: false }); }); (0, _defineProperty2.default)(_this, "handleAriaValueText", function (ticks, currentVal) { var target = ticks.find(function (tick) { return tick.value.toString() === currentVal.toString(); }); if (target) { return target.accessibleLabel ? "".concat(target.value, ", (").concat(target.accessibleLabel, ")") : typeof target.label === 'string' // Fall back to the label if it's a usable string ? "".concat(target.value, ", (").concat(target.label, ")") : undefined; } }); return _this; } (0, _inherits2.default)(EuiRangeClass, _Component); return (0, _createClass2.default)(EuiRangeClass, [{ key: "isValid", get: function get() { return (0, _number.isWithinRange)(this.props.min, this.props.max, this.props.value || ''); } }, { key: "render", value: function render() { var _this2 = this; var _ref2 = this.context, defaultFullWidth = _ref2.defaultFullWidth; var _this$props = this.props, className = _this$props.className, compressed = _this$props.compressed, disabled = _this$props.disabled, _this$props$fullWidth = _this$props.fullWidth, fullWidth = _this$props$fullWidth === void 0 ? defaultFullWidth : _this$props$fullWidth, isLoading = _this$props.isLoading, readOnly = _this$props.readOnly, propsId = _this$props.id, max = _this$props.max, min = _this$props.min, name = _this$props.name, step = _this$props.step, showLabels = _this$props.showLabels, showInput = _this$props.showInput, inputPopoverProps = _this$props.inputPopoverProps, showTicks = _this$props.showTicks, tickInterval = _this$props.tickInterval, ticks = _this$props.ticks, levels = _this$props.levels, showRange = _this$props.showRange, showValue = _this$props.showValue, valueAppend = _this$props.valueAppend, valuePrepend = _this$props.valuePrepend, onBlur = _this$props.onBlur, onChange = _this$props.onChange, onFocus = _this$props.onFocus, value = _this$props.value, tabIndex = _this$props.tabIndex, isInvalid = _this$props.isInvalid, theme = _this$props.theme, rest = (0, _objectWithoutProperties2.default)(_this$props, _excluded); var id = this.state.id; var showInputOnly = showInput === 'inputWithPopover'; var canShowDropdown = showInputOnly && !readOnly && !disabled; var theInput = !!showInput ? (0, _react2.jsx)(_range_input.EuiRangeInput, (0, _extends2.default)({ id: id, min: min, max: max, step: step, value: value, readOnly: readOnly, disabled: disabled, compressed: compressed, onChange: this.handleOnChange, name: name, onFocus: canShowDropdown ? this.onInputFocus : onFocus, onBlur: canShowDropdown ? this.onInputBlur : onBlur, fullWidth: showInputOnly && fullWidth, isLoading: showInputOnly && isLoading, isInvalid: isInvalid, autoSize: !showInputOnly }, rest)) : null; var classes = (0, _classnames.default)('euiRange', className); var styles = (0, _range.euiRangeStyles)(theme); var cssStyles = [styles.euiRange, showInput && styles.hasInput]; var thumbColor = levels && (0, _range_levels_colors.getLevelColor)(levels, Number(value)); var sliderScreenReaderInstructions = (0, _react2.jsx)(_i18n.EuiI18n, { token: "euiRange.sliderScreenReaderInstructions", default: "You are in a custom range slider. Use the Up and Down arrow keys to change the value." }); var theRange = (0, _react2.jsx)(_range_wrapper.EuiRangeWrapper, { className: classes, css: cssStyles, fullWidth: fullWidth, compressed: compressed }, showLabels && (0, _react2.jsx)(_range_label.EuiRangeLabel, { side: "min", disabled: disabled }, min), (0, _react2.jsx)(_range_track.EuiRangeTrack, { trackWidth: this.state.trackWidth, disabled: disabled, compressed: compressed, max: max, min: min, step: step, showTicks: showTicks, tickInterval: tickInterval, ticks: ticks, levels: levels, onChange: this.handleOnChange, value: value, "aria-hidden": !!showInput, showRange: showRange }, (0, _react2.jsx)(_range_slider.EuiRangeSlider, (0, _extends2.default)({ ariaValueText: ticks ? this.handleAriaValueText(ticks, value) : undefined, id: showInput ? undefined : id // Attach id only to the input if there is one , name: name, min: min, max: max, step: step, value: value, disabled: disabled, onChange: this.handleOnChange, showTicks: showTicks, showRange: showRange, tabIndex: showInput ? -1 : tabIndex, onMouseDown: showInputOnly ? function () { return _this2.preventPopoverClose = true; } : undefined, onFocus: showInput === true ? undefined : onFocus, onBlur: showInputOnly ? this.onInputBlur : onBlur, "aria-hidden": !!showInput, thumbColor: thumbColor }, rest, { onResize: this.setTrackWidth })), showRange && this.isValid && (0, _react2.jsx)(_range_highlight.EuiRangeHighlight, { showTicks: showTicks, min: Number(min), max: Number(max), lowerValue: Number(min), upperValue: Number(value), levels: levels, trackWidth: this.state.trackWidth }), showValue && !!String(value).length && (0, _react2.jsx)(_range_tooltip.EuiRangeTooltip, { value: value, max: max, min: min, name: name, showTicks: showTicks, valuePrepend: valuePrepend, valueAppend: valueAppend })), showLabels && (0, _react2.jsx)(_range_label.EuiRangeLabel, { side: "max", disabled: disabled }, max), showInput && !showInputOnly && (0, _react2.jsx)(_react.default.Fragment, null, (0, _react2.jsx)("div", { className: showTicks || ticks ? 'euiRange__slimHorizontalSpacer' : 'euiRange__horizontalSpacer', css: showTicks || ticks ? styles.euiRange__slimHorizontalSpacer : styles.euiRange__horizontalSpacer }), theInput)); var thePopover = showInputOnly ? (0, _react2.jsx)(_popover.EuiInputPopover, (0, _extends2.default)({}, inputPopoverProps, { className: (0, _classnames.default)('euiRange__popover', inputPopoverProps === null || inputPopoverProps === void 0 ? void 0 : inputPopoverProps.className), input: theInput // `showInputOnly` confirms existence , fullWidth: fullWidth, isOpen: this.state.isPopoverOpen, closePopover: this.closePopover, disableFocusTrap: true, popoverScreenReaderText: sliderScreenReaderInstructions }), theRange) : undefined; return thePopover ? thePopover : theRange; } }]); }(_react.Component); (0, _defineProperty2.default)(EuiRangeClass, "contextType", _eui_form_context.FormContext); (0, _defineProperty2.default)(EuiRangeClass, "defaultProps", { min: 0, max: 100, step: 1, compressed: false, isLoading: false, showLabels: false, showInput: false, showRange: false, showTicks: false, showValue: false, levels: [] }); var EuiRange = exports.EuiRange = (0, _services.withEuiTheme)(EuiRangeClass);