mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
158 lines
4.5 KiB
TypeScript
158 lines
4.5 KiB
TypeScript
/* eslint-disable react/require-default-props */
|
|
/* eslint-disable sonarjs/no-duplicate-string */
|
|
|
|
import './TraceOperator.styles.scss';
|
|
|
|
import { Button, Select, Tooltip, Typography } from 'antd';
|
|
import cx from 'classnames';
|
|
import InputWithLabel from 'components/InputWithLabel/InputWithLabel';
|
|
import { useQueryBuilder } from 'hooks/queryBuilder/useQueryBuilder';
|
|
import { useQueryOperations } from 'hooks/queryBuilder/useQueryBuilderOperations';
|
|
import { Trash2 } from 'lucide-react';
|
|
import { useCallback, useMemo } from 'react';
|
|
import {
|
|
IBuilderQuery,
|
|
IBuilderTraceOperator,
|
|
} from 'types/api/queryBuilder/queryBuilderData';
|
|
import { DataSource } from 'types/common/queryBuilder';
|
|
|
|
import QueryAddOns from '../QueryAddOns/QueryAddOns';
|
|
import QueryAggregation from '../QueryAggregation/QueryAggregation';
|
|
|
|
export default function TraceOperator({
|
|
traceOperator,
|
|
isListViewPanel = false,
|
|
}: {
|
|
traceOperator: IBuilderTraceOperator;
|
|
isListViewPanel?: boolean;
|
|
}): JSX.Element {
|
|
const { panelType, currentQuery, removeTraceOperator } = useQueryBuilder();
|
|
const { handleChangeQueryData } = useQueryOperations({
|
|
index: 0,
|
|
query: traceOperator,
|
|
entityVersion: '',
|
|
isForTraceOperator: true,
|
|
});
|
|
|
|
const handleTraceOperatorChange = useCallback(
|
|
(traceOperatorExpression: string) => {
|
|
handleChangeQueryData('expression', traceOperatorExpression);
|
|
},
|
|
[handleChangeQueryData],
|
|
);
|
|
|
|
const handleChangeAggregateEvery = useCallback(
|
|
(value: IBuilderQuery['stepInterval']) => {
|
|
handleChangeQueryData('stepInterval', value);
|
|
},
|
|
[handleChangeQueryData],
|
|
);
|
|
|
|
const handleChangeAggregation = useCallback(
|
|
(value: string) => {
|
|
handleChangeQueryData('aggregations', [
|
|
{
|
|
expression: value,
|
|
},
|
|
]);
|
|
},
|
|
[handleChangeQueryData],
|
|
);
|
|
|
|
const handleChangeSpanSource = useCallback(
|
|
(value: string) => {
|
|
handleChangeQueryData('returnSpansFrom', value);
|
|
},
|
|
[handleChangeQueryData],
|
|
);
|
|
|
|
const defaultSpanSource = useMemo(
|
|
() =>
|
|
traceOperator.returnSpansFrom ||
|
|
currentQuery.builder.queryData[0].queryName ||
|
|
'',
|
|
[currentQuery.builder.queryData, traceOperator?.returnSpansFrom],
|
|
);
|
|
|
|
const spanSourceOptions = useMemo(
|
|
() =>
|
|
currentQuery.builder.queryData.map((query) => ({
|
|
value: query.queryName,
|
|
label: (
|
|
<div className="qb-trace-operator-span-source-label">
|
|
<span className="qb-trace-operator-span-source-label-query">Query</span>
|
|
<p className="qb-trace-operator-span-source-label-query-name">
|
|
{query.queryName}
|
|
</p>
|
|
</div>
|
|
),
|
|
})),
|
|
[currentQuery.builder.queryData],
|
|
);
|
|
|
|
return (
|
|
<div className={cx('qb-trace-operator', !isListViewPanel && 'non-list-view')}>
|
|
<div className="qb-trace-operator-container">
|
|
<InputWithLabel
|
|
className={cx(
|
|
'qb-trace-operator-input',
|
|
!isListViewPanel && 'qb-trace-operator-arrow',
|
|
)}
|
|
initialValue={traceOperator?.expression || ''}
|
|
label="TRACES MATCHING"
|
|
placeholder="Add condition..."
|
|
type="text"
|
|
onChange={handleTraceOperatorChange}
|
|
/>
|
|
{!isListViewPanel && (
|
|
<div className="qb-trace-operator-aggregation-container">
|
|
<div className={cx(!isListViewPanel && 'qb-trace-operator-arrow')}>
|
|
<QueryAggregation
|
|
dataSource={DataSource.TRACES}
|
|
key={`query-search-${traceOperator.queryName}`}
|
|
panelType={panelType || undefined}
|
|
onAggregationIntervalChange={handleChangeAggregateEvery}
|
|
onChange={handleChangeAggregation}
|
|
queryData={traceOperator}
|
|
/>
|
|
</div>
|
|
<div
|
|
className={cx(
|
|
'qb-trace-operator-add-ons-container',
|
|
!isListViewPanel && 'qb-trace-operator-arrow',
|
|
)}
|
|
>
|
|
<QueryAddOns
|
|
index={0}
|
|
query={traceOperator}
|
|
version="v3"
|
|
isForTraceOperator
|
|
isListViewPanel={false}
|
|
showReduceTo={false}
|
|
panelType={panelType}
|
|
>
|
|
<div className="qb-trace-operator-add-ons-input">
|
|
<Typography.Text className="label">Using spans from</Typography.Text>
|
|
<Select
|
|
bordered={false}
|
|
defaultValue={defaultSpanSource}
|
|
style={{ minWidth: 120 }}
|
|
onChange={handleChangeSpanSource}
|
|
options={spanSourceOptions}
|
|
listItemHeight={24}
|
|
/>
|
|
</div>
|
|
</QueryAddOns>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<Tooltip title="Remove Trace Operator" placement="topLeft">
|
|
<Button className="periscope-btn ghost" onClick={removeTraceOperator}>
|
|
<Trash2 size={14} />
|
|
</Button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
}
|