mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## Summary This closes https://github.com/elastic/kibana/issues/161960, a basic integration will now be created whilst onboarding logs (though the custom logs flow). This implements the *initial* version of this work, and does not include things like adding a dataset to an existing integration. ## UI / UX General:  Naming conflict errors:   Lack of permissions error:  General errors:  Success callout on the next panel:  Delete previous flow (happens in the background):  ## Pointers for reviewers / next steps - This PR also creates a new package for the `useTrackedPromise` hook, as this is used in several places and I didn't want to just duplicate it again (I haven't replaced other current uses in this PR, but will as a followup). - `useFetcher` was avoided as A) it's very tightly coupled with the observability onboarding server route repository (and `callApi` is scoped to this) and I wanted to call an "external" API in Fleet and B) I wanted explicit control over when the request is dispatched (not on mount), and whilst this can sort of be achieved by not returning a promise from the callback it gets quite messy. I also wanted more granular error handling control. - Moving forward I think we'll need to enhance the state management of the plugin. We'll want to add the ability to "add to existing integration" and this is going to make the state more complex (even with chunks of this functionality likely moved to it's own package). I did actually have the Wizard state moved in to a constate container at one point (as a starter) but I reverted this commit to make the changeset less intrusive. It's for this same reason that, for now, I haven't focussed too closely on extracting things like generating the friendly error messages etc as we'll likely want to extract some of the "create integration" hooks / UI in to a standalone package so they can be used elsewhere (not just onboarding). There are also quite a few ` eslint-disable-next-line react-hooks/exhaustive-deps` rules in the plugin at the moment due to the references not being stable, we could improve that at the same time as any state changes. - You can technically navigate directly to `/fox/app/observabilityOnboarding/customLogs/installElasticAgent`, but no state is stored in the URL, so nothing is rehydrated resulting in a very empty configuration. I'm not entirely sure this is a behaviour we want, but for now I've just made the callout conditional on state existing (so coming from the previous panel). - The Fleet custom integrations API now throws a 409 (conflict) when using a name that already exists. ## Testing - Head to `/app/observabilityOnboarding` to trigger the onboarding flow - Select "Stream log files" - When hitting "continue" an integration should be created in the background (check the network requests for `api/fleet/epm/custom_integrations`) - When continuing (to install shipper), then going back **and** making changes to your integration options, when clicking continue again there should be a network request that deletes the previously created integration (to clean things up). This should be seamless to the user. - You should not be able to use a name that already exists (for an existing custom integration) - General errors (like permission issues, asset installation issues) should display at the bottom - When you hit the next panel (install shipper) there should be a success callout that also contains the name of the integration that was created ## In progress ~Two changes still in progress, but they don't need to hold up the review (8.10 coming soon 👀):~ - ~To have a friendlier error for permissions issues (not just "forbidden")~ - ~Fleet API integration test for the naming collision~ --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
300 lines
9.7 KiB
TypeScript
300 lines
9.7 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 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.
|
|
*/
|
|
|
|
/* eslint-disable max-classes-per-file */
|
|
|
|
import { DependencyList, useEffect, useMemo, useRef, useState, useCallback } from 'react';
|
|
import useMountedState from 'react-use/lib/useMountedState';
|
|
|
|
interface UseTrackedPromiseArgs<Arguments extends any[], Result> {
|
|
createPromise: (...args: Arguments) => Promise<Result>;
|
|
onResolve?: (result: Result) => void;
|
|
onReject?: (value: unknown) => void;
|
|
cancelPreviousOn?: 'creation' | 'settlement' | 'resolution' | 'rejection' | 'never';
|
|
triggerOrThrow?: 'always' | 'whenMounted';
|
|
}
|
|
|
|
/**
|
|
* This hook manages a Promise factory and can create new Promises from it. The
|
|
* state of these Promises is tracked and they can be canceled when superseded
|
|
* to avoid race conditions.
|
|
*
|
|
* ```
|
|
* const [requestState, performRequest] = useTrackedPromise(
|
|
* {
|
|
* cancelPreviousOn: 'resolution',
|
|
* createPromise: async (url: string) => {
|
|
* return await fetchSomething(url)
|
|
* },
|
|
* onResolve: response => {
|
|
* setSomeState(response.data);
|
|
* },
|
|
* onReject: response => {
|
|
* setSomeError(response);
|
|
* },
|
|
* },
|
|
* [fetchSomething]
|
|
* );
|
|
* ```
|
|
*
|
|
* The `onResolve` and `onReject` handlers are registered separately, because
|
|
* the hook will inject a rejection when in case of a canellation. The
|
|
* `cancelPreviousOn` attribute can be used to indicate when the preceding
|
|
* pending promises should be canceled:
|
|
*
|
|
* 'never': No preceding promises will be canceled.
|
|
*
|
|
* 'creation': Any preceding promises will be canceled as soon as a new one is
|
|
* created.
|
|
*
|
|
* 'settlement': Any preceding promise will be canceled when a newer promise is
|
|
* resolved or rejected.
|
|
*
|
|
* 'resolution': Any preceding promise will be canceled when a newer promise is
|
|
* resolved.
|
|
*
|
|
* 'rejection': Any preceding promise will be canceled when a newer promise is
|
|
* rejected.
|
|
*
|
|
* Any pending promises will be canceled when the component using the hook is
|
|
* unmounted, but their status will not be tracked to avoid React warnings
|
|
* about memory leaks.
|
|
*
|
|
* The last argument is a normal React hook dependency list that indicates
|
|
* under which conditions a new reference to the configuration object should be
|
|
* used.
|
|
*
|
|
* The `onResolve`, `onReject` and possible uncatched errors are only triggered
|
|
* if the underlying component is mounted. To ensure they always trigger (i.e.
|
|
* if the promise is called in a `useLayoutEffect`) use the `triggerOrThrow`
|
|
* attribute:
|
|
*
|
|
* 'whenMounted': (default) they are called only if the component is mounted.
|
|
*
|
|
* 'always': they always call. The consumer is then responsible of ensuring no
|
|
* side effects happen if the underlying component is not mounted.
|
|
*/
|
|
export const useTrackedPromise = <Arguments extends any[], Result>(
|
|
{
|
|
createPromise,
|
|
onResolve = noOp,
|
|
onReject = noOp,
|
|
cancelPreviousOn = 'never',
|
|
triggerOrThrow = 'whenMounted',
|
|
}: UseTrackedPromiseArgs<Arguments, Result>,
|
|
dependencies: DependencyList
|
|
) => {
|
|
const isComponentMounted = useMountedState();
|
|
const shouldTriggerOrThrow = useCallback(() => {
|
|
switch (triggerOrThrow) {
|
|
case 'always':
|
|
return true;
|
|
case 'whenMounted':
|
|
return isComponentMounted();
|
|
}
|
|
}, [isComponentMounted, triggerOrThrow]);
|
|
|
|
/**
|
|
* If a promise is currently pending, this holds a reference to it and its
|
|
* cancellation function.
|
|
*/
|
|
const pendingPromises = useRef<ReadonlyArray<CancelablePromise<Result>>>([]);
|
|
|
|
/**
|
|
* The state of the promise most recently created by the `createPromise`
|
|
* factory. It could be uninitialized, pending, resolved or rejected.
|
|
*/
|
|
const [promiseState, setPromiseState] = useState<PromiseState<Result>>({
|
|
state: 'uninitialized',
|
|
});
|
|
|
|
const reset = useCallback(() => {
|
|
setPromiseState({
|
|
state: 'uninitialized',
|
|
});
|
|
}, []);
|
|
|
|
const execute = useMemo(
|
|
() =>
|
|
(...args: Arguments) => {
|
|
let rejectCancellationPromise!: (value: any) => void;
|
|
const cancellationPromise = new Promise<any>((_, reject) => {
|
|
rejectCancellationPromise = reject;
|
|
});
|
|
|
|
// remember the list of prior pending promises for cancellation
|
|
const previousPendingPromises = pendingPromises.current;
|
|
|
|
const cancelPreviousPendingPromises = () => {
|
|
previousPendingPromises.forEach((promise) => promise.cancel());
|
|
};
|
|
|
|
const newPromise = createPromise(...args);
|
|
const newCancelablePromise = Promise.race([newPromise, cancellationPromise]);
|
|
|
|
// track this new state
|
|
setPromiseState({
|
|
state: 'pending',
|
|
promise: newCancelablePromise,
|
|
});
|
|
|
|
if (cancelPreviousOn === 'creation') {
|
|
cancelPreviousPendingPromises();
|
|
}
|
|
|
|
const newPendingPromise: CancelablePromise<Result> = {
|
|
cancel: () => {
|
|
rejectCancellationPromise(new CanceledPromiseError());
|
|
},
|
|
cancelSilently: () => {
|
|
rejectCancellationPromise(new SilentCanceledPromiseError());
|
|
},
|
|
promise: newCancelablePromise.then(
|
|
(value) => {
|
|
if (['settlement', 'resolution'].includes(cancelPreviousOn)) {
|
|
cancelPreviousPendingPromises();
|
|
}
|
|
|
|
// remove itself from the list of pending promises
|
|
pendingPromises.current = pendingPromises.current.filter(
|
|
(pendingPromise) => pendingPromise.promise !== newPendingPromise.promise
|
|
);
|
|
|
|
if (onResolve && shouldTriggerOrThrow()) {
|
|
onResolve(value);
|
|
}
|
|
|
|
setPromiseState((previousPromiseState) =>
|
|
previousPromiseState.state === 'pending' &&
|
|
previousPromiseState.promise === newCancelablePromise
|
|
? {
|
|
state: 'resolved',
|
|
promise: newPendingPromise.promise,
|
|
value,
|
|
}
|
|
: previousPromiseState
|
|
);
|
|
|
|
return value;
|
|
},
|
|
(value) => {
|
|
if (!(value instanceof SilentCanceledPromiseError)) {
|
|
if (['settlement', 'rejection'].includes(cancelPreviousOn)) {
|
|
cancelPreviousPendingPromises();
|
|
}
|
|
|
|
// remove itself from the list of pending promises
|
|
pendingPromises.current = pendingPromises.current.filter(
|
|
(pendingPromise) => pendingPromise.promise !== newPendingPromise.promise
|
|
);
|
|
|
|
if (shouldTriggerOrThrow()) {
|
|
if (onReject) {
|
|
onReject(value);
|
|
} else {
|
|
throw value;
|
|
}
|
|
}
|
|
|
|
setPromiseState((previousPromiseState) =>
|
|
previousPromiseState.state === 'pending' &&
|
|
previousPromiseState.promise === newCancelablePromise
|
|
? {
|
|
state: 'rejected',
|
|
promise: newCancelablePromise,
|
|
value,
|
|
}
|
|
: previousPromiseState
|
|
);
|
|
}
|
|
}
|
|
),
|
|
};
|
|
|
|
// add the new promise to the list of pending promises
|
|
pendingPromises.current = [...pendingPromises.current, newPendingPromise];
|
|
|
|
// silence "unhandled rejection" warnings
|
|
newPendingPromise.promise.catch(noOp);
|
|
|
|
return newPendingPromise.promise;
|
|
},
|
|
// the dependencies are managed by the caller
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
dependencies
|
|
);
|
|
|
|
/**
|
|
* Cancel any pending promises silently to avoid memory leaks and race
|
|
* conditions.
|
|
*/
|
|
useEffect(
|
|
() => () => {
|
|
pendingPromises.current.forEach((promise) => promise.cancelSilently());
|
|
},
|
|
[]
|
|
);
|
|
|
|
return [promiseState, execute, reset] as [typeof promiseState, typeof execute, typeof reset];
|
|
};
|
|
|
|
export interface UninitializedPromiseState {
|
|
state: 'uninitialized';
|
|
}
|
|
|
|
export interface PendingPromiseState<ResolvedValue> {
|
|
state: 'pending';
|
|
promise: Promise<ResolvedValue>;
|
|
}
|
|
|
|
export interface ResolvedPromiseState<ResolvedValue> {
|
|
state: 'resolved';
|
|
promise: Promise<ResolvedValue>;
|
|
value: ResolvedValue;
|
|
}
|
|
|
|
export interface RejectedPromiseState<ResolvedValue, RejectedValue> {
|
|
state: 'rejected';
|
|
promise: Promise<ResolvedValue>;
|
|
value: RejectedValue;
|
|
}
|
|
|
|
export type SettledPromiseState<ResolvedValue, RejectedValue> =
|
|
| ResolvedPromiseState<ResolvedValue>
|
|
| RejectedPromiseState<ResolvedValue, RejectedValue>;
|
|
|
|
export type PromiseState<ResolvedValue, RejectedValue = unknown> =
|
|
| UninitializedPromiseState
|
|
| PendingPromiseState<ResolvedValue>
|
|
| SettledPromiseState<ResolvedValue, RejectedValue>;
|
|
|
|
export const isRejectedPromiseState = (
|
|
promiseState: PromiseState<any, any>
|
|
): promiseState is RejectedPromiseState<any, any> => promiseState.state === 'rejected';
|
|
|
|
interface CancelablePromise<ResolvedValue> {
|
|
// reject the promise prematurely with a CanceledPromiseError
|
|
cancel: () => void;
|
|
// reject the promise prematurely with a SilentCanceledPromiseError
|
|
cancelSilently: () => void;
|
|
// the tracked promise
|
|
promise: Promise<ResolvedValue>;
|
|
}
|
|
|
|
export class CanceledPromiseError extends Error {
|
|
public isCanceled = true;
|
|
|
|
constructor(message?: string) {
|
|
super(message);
|
|
Object.setPrototypeOf(this, new.target.prototype);
|
|
}
|
|
}
|
|
|
|
export class SilentCanceledPromiseError extends CanceledPromiseError {}
|
|
|
|
const noOp = () => undefined;
|