"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.HasExtendedBoundsParamEditor = HasExtendedBoundsParamEditor; var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); var _react = _interopRequireWildcard(require("react")); var _i18n = require("@kbn/i18n"); var _public = require("@kbn/data-plugin/public"); var _switch = require("./switch"); function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } /* * 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. */ const { isType } = _public.search.aggs; function HasExtendedBoundsParamEditor(props) { const { agg, setValue, value } = props; const minDocCount = (0, _react.useRef)(agg.params.min_doc_count); (0, _react.useEffect)(() => { if (minDocCount.current !== agg.params.min_doc_count) { // The "Extend bounds" param is only enabled when "Show empty buckets" is turned on. // So if "Show empty buckets" is changed, "Extend bounds" should reflect changes minDocCount.current = agg.params.min_doc_count; setValue(value && agg.params.min_doc_count); } }, [agg.params.min_doc_count, setValue, value]); return /*#__PURE__*/_react.default.createElement(_switch.SwitchParamEditor, (0, _extends2.default)({}, props, { displayLabel: _i18n.i18n.translate('visDefaultEditor.controls.extendedBoundsLabel', { defaultMessage: 'Extend bounds' }), displayToolTip: _i18n.i18n.translate('visDefaultEditor.controls.extendedBoundsTooltip', { defaultMessage: 'Min and Max do not filter the results, but rather extend the bounds of the result set.' }), disabled: !props.agg.params.min_doc_count || !(isType('number')(props.agg) || isType('date')(props.agg)) })); }