mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-28 01:52:02 +08:00
feat: [SIG-571]: added support for has and nhas operator for json filter (#4736)
* feat: [SIG-571]: added support for has and nhas operator for json filter * fix: address review comments --------- Co-authored-by: Nityananda Gohain <nityanandagohain@gmail.com>
This commit is contained in:
parent
0df3c26f04
commit
9e557a0ebe
@ -1,4 +1,7 @@
|
|||||||
import { QUERY_BUILDER_OPERATORS_BY_TYPES } from 'constants/queryBuilder';
|
import {
|
||||||
|
OPERATORS,
|
||||||
|
QUERY_BUILDER_OPERATORS_BY_TYPES,
|
||||||
|
} from 'constants/queryBuilder';
|
||||||
import { getRemovePrefixFromKey } from 'container/QueryBuilder/filters/QueryBuilderSearch/utils';
|
import { getRemovePrefixFromKey } from 'container/QueryBuilder/filters/QueryBuilderSearch/utils';
|
||||||
import { useMemo } from 'react';
|
import { useMemo } from 'react';
|
||||||
import { BaseAutocompleteData } from 'types/api/queryBuilder/queryAutocompleteResponse';
|
import { BaseAutocompleteData } from 'types/api/queryBuilder/queryAutocompleteResponse';
|
||||||
@ -16,9 +19,14 @@ export const useOperators = (
|
|||||||
): IOperators =>
|
): IOperators =>
|
||||||
useMemo(() => {
|
useMemo(() => {
|
||||||
const currentKey = keys?.find((el) => el.key === getRemovePrefixFromKey(key));
|
const currentKey = keys?.find((el) => el.key === getRemovePrefixFromKey(key));
|
||||||
|
const strippedKey = key.split(' ')[0];
|
||||||
|
|
||||||
|
// eslint-disable-next-line no-nested-ternary
|
||||||
return currentKey?.dataType
|
return currentKey?.dataType
|
||||||
? QUERY_BUILDER_OPERATORS_BY_TYPES[
|
? QUERY_BUILDER_OPERATORS_BY_TYPES[
|
||||||
currentKey.dataType as keyof typeof QUERY_BUILDER_OPERATORS_BY_TYPES
|
currentKey.dataType as keyof typeof QUERY_BUILDER_OPERATORS_BY_TYPES
|
||||||
]
|
]
|
||||||
|
: strippedKey.endsWith('[*]') && strippedKey.startsWith('body.')
|
||||||
|
? [OPERATORS.HAS, OPERATORS.NHAS]
|
||||||
: QUERY_BUILDER_OPERATORS_BY_TYPES.universal;
|
: QUERY_BUILDER_OPERATORS_BY_TYPES.universal;
|
||||||
}, [keys, key]);
|
}, [keys, key]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user