-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
Copy pathget_search_response_intercepted_warnings.tsx
88 lines (79 loc) · 2.56 KB
/
get_search_response_intercepted_warnings.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
* 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.
*/
import React from 'react';
import { uniqBy } from 'lodash';
import {
type DataPublicPluginStart,
type ShardFailureRequest,
ShardFailureOpenModalButton,
} from '@kbn/data-plugin/public';
import type { RequestAdapter } from '@kbn/inspector-plugin/common';
import type { CoreStart } from '@kbn/core-lifecycle-browser';
import type { SearchResponseInterceptedWarning } from '../types';
/**
* Intercepts warnings for a search source request
* @param services
* @param adapter
* @param options
*/
export const getSearchResponseInterceptedWarnings = ({
services,
adapter,
options,
}: {
services: {
data: DataPublicPluginStart;
theme: CoreStart['theme'];
};
adapter: RequestAdapter;
options?: {
disableShardFailureWarning?: boolean;
};
}): SearchResponseInterceptedWarning[] | undefined => {
if (!options?.disableShardFailureWarning) {
return undefined;
}
const interceptedWarnings: SearchResponseInterceptedWarning[] = [];
services.data.search.showWarnings(adapter, (warning, meta) => {
const { request, response } = meta;
interceptedWarnings.push({
originalWarning: warning,
action:
warning.type === 'shard_failure' && warning.text && warning.message ? (
<ShardFailureOpenModalButton
theme={services.theme}
title={warning.message}
size="s"
getRequestMeta={() => ({
request: request as ShardFailureRequest,
response,
})}
color="primary"
isButtonEmpty={true}
/>
) : undefined,
});
return true; // suppress the default behaviour
});
return removeInterceptedWarningDuplicates(interceptedWarnings);
};
/**
* Removes duplicated warnings
* @param interceptedWarnings
*/
export const removeInterceptedWarningDuplicates = (
interceptedWarnings: SearchResponseInterceptedWarning[] | undefined
): SearchResponseInterceptedWarning[] | undefined => {
if (!interceptedWarnings?.length) {
return undefined;
}
const uniqInterceptedWarnings = uniqBy(interceptedWarnings, (interceptedWarning) =>
JSON.stringify(interceptedWarning.originalWarning)
);
return uniqInterceptedWarnings?.length ? uniqInterceptedWarnings : undefined;
};