mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Updates files outside of x-pack to be triple-licensed under Elastic License 2.0, AGPL 3.0, or SSPL 1.0.
88 lines
2.9 KiB
TypeScript
88 lines
2.9 KiB
TypeScript
/*
|
|
* 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", the "GNU Affero General Public License v3.0 only", 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", the "GNU Affero General Public
|
|
* License v3.0 only", or the "Server Side Public License, v 1".
|
|
*/
|
|
|
|
import React, { useCallback } from 'react';
|
|
import { useState } from 'react';
|
|
import {
|
|
EuiText,
|
|
EuiButton,
|
|
EuiLoadingSpinner,
|
|
EuiFieldText,
|
|
EuiCallOut,
|
|
EuiFormRow,
|
|
} from '@elastic/eui';
|
|
import { type IHttpFetchError, isHttpFetchError } from '@kbn/core-http-browser';
|
|
import { Services } from './services';
|
|
|
|
interface Props {
|
|
fetchRandomNumberBetween: Services['fetchRandomNumberBetween'];
|
|
}
|
|
|
|
export function RandomNumberBetweenRouteExample({ fetchRandomNumberBetween }: Props) {
|
|
const [error, setError] = useState<IHttpFetchError | undefined>();
|
|
const [randomNumber, setRandomNumber] = useState<number>(0);
|
|
const [isFetching, setIsFetching] = useState<boolean>(false);
|
|
const [maxInput, setMaxInput] = useState<string>('10');
|
|
|
|
const doFetch = useCallback(async () => {
|
|
if (isFetching) return;
|
|
setIsFetching(true);
|
|
const response = await fetchRandomNumberBetween(Number.parseInt(maxInput, 10));
|
|
|
|
if (isHttpFetchError(response)) {
|
|
setError(response);
|
|
} else {
|
|
setRandomNumber(response);
|
|
}
|
|
|
|
setIsFetching(false);
|
|
}, [isFetching, maxInput, fetchRandomNumberBetween]);
|
|
|
|
return (
|
|
<React.Fragment>
|
|
<EuiText>
|
|
<h2>GET example with query</h2>
|
|
<p>
|
|
This examples uses a simple GET route that takes a query parameter in the request and
|
|
returns a single number.
|
|
</p>
|
|
<EuiFormRow label="Generate a random number between 0 and">
|
|
<EuiFieldText
|
|
data-test-subj="routingExampleMaxRandomNumberBetween"
|
|
value={maxInput}
|
|
onChange={(e) => setMaxInput(e.target.value)}
|
|
isInvalid={isNaN(Number(maxInput))}
|
|
/>
|
|
</EuiFormRow>
|
|
|
|
<EuiFormRow hasEmptyLabelSpace={true}>
|
|
<EuiButton
|
|
data-test-subj="routingExampleFetchRandomNumberBetween"
|
|
disabled={isFetching || isNaN(Number(maxInput))}
|
|
onClick={() => doFetch()}
|
|
>
|
|
{isFetching ? <EuiLoadingSpinner /> : 'Generate random number'}
|
|
</EuiButton>
|
|
</EuiFormRow>
|
|
|
|
{error !== undefined ? (
|
|
<EuiCallOut color="danger" iconType="warning">
|
|
{error.message}
|
|
</EuiCallOut>
|
|
) : null}
|
|
{randomNumber > -1 ? (
|
|
<h2>
|
|
Random number is
|
|
<div data-test-subj="routingExampleRandomNumberBetween">{randomNumber}</div>
|
|
</h2>
|
|
) : null}
|
|
</EuiText>
|
|
</React.Fragment>
|
|
);
|
|
}
|