/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Any modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ /* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import React, { useState } from 'react'; import useMountedState from 'react-use/lib/useMountedState'; import useList from 'react-use/lib/useList'; import useCounter from 'react-use/lib/useCounter'; import { EuiForm, EuiSpacer, EuiTextArea, EuiFormRow, EuiButton } from '@elastic/eui'; import { ExplorerService } from '../../plugin'; interface ResultItem { num: number; result?: { num: number; }; error?: any; } const defaultNumbers = [2000, 300, -1, 1000].join('\n'); export interface Props { double: ExplorerService['double']; } export const DoubleIntegers: React.FC = ({ double }) => { const isMounted = useMountedState(); const [numbers, setNumbers] = useState(defaultNumbers); const [showingResults, setShowingResults] = useState(false); const [numberOfResultsAwaiting, counter] = useCounter(0); const [results, { push: pushResult, clear: clearList }] = useList([]); const handleSubmit = () => { setShowingResults(true); const nums = numbers .split('\n') .map((num) => num.trim()) .filter(Boolean) .map(Number); counter.set(nums.length); nums.forEach((num) => { double({ num }).then( (result) => { if (!isMounted()) return; counter.dec(); pushResult({ num, result }); }, (error) => { if (!isMounted()) return; counter.dec(); pushResult({ num, error }); } ); }); }; const handleReset = () => { setShowingResults(false); counter.reset(); clearList(); }; if (showingResults) { return (
{JSON.stringify(results, null, 4)}
Reset
); } return ( setNumbers(e.target.value)} /> Send ); };