mirror of
https://github.com/SigNoz/signoz.git
synced 2026-06-02 23:20:34 +01:00
* chore: replace antd icons with signoz icons * feat: migrate lucid react icons as well * feat: more icon changes * feat: add ai generated affected route file for testing * chore: update buttons * feat: update code * fix: info circle issue * feat: update icon size * fix: delete button issues * fix: size of rotate icon * fix: ap dex icon changes * feat: update pages of resource filters * feat: update icon * feat: update trace module * feat: update icons * feat: update log detail * feat: review pipeline page * feat: btn fixes * fix: live log trail * fix: logs filter * fix: log container * feat: more changes * fix: infra moniting update * feat: attribute check * feat: more updates * feat: add routing policy * fix: ui changes * feat: more changes * feat: update package * feat: update icon pack version * fix: prettify * feat: add Binoculars icons * feat: use new icons * feat: add more icon type * fix: ts issues * feat: remove extra packages * feat: failing test cases * fix: failing test casees * fix: lint issues * feat: failing test cases * fix: broken test cases * chore: update trigger * feat(sqlstore): enable transaction_mode immediate (#10825) * feat(sqlstore): enable transaction_mode immediate * feat(sqlstore): fix dashboard delete * feat(sqlstore): fix rebase issue * feat(sqlstore): fix golang lint * feat(sqlstore): do not start with default immediate * feat(sqlstore): revert the integrationci changes * chore: remove package manager * feat: remove un nessary files * chore: remove extra yarn.lock * chore: sync more icons * chore: sync with master * chore: remove extra files * chore: remove package * chore: remove comments * feat: add loader with spin * feat: update stroke with * fix: update tests * chore: remove unused code * chore: self review changes * fix: oxlintrc rules * fix: contant comments * chore: more review changes * chore: self review changes * chore: sync with main (issues) * fix: ts issues * chore: add removed autofocus * chore: remove git marking --------- Co-authored-by: Vikrant Gupta <vikrant@signoz.io> Co-authored-by: Gaurav Tewari <tewarig@users.noreply.github.com>
242 lines
5.9 KiB
TypeScript
242 lines
5.9 KiB
TypeScript
import { useState } from 'react';
|
|
import { Button, Tooltip } from 'antd';
|
|
import { Typography } from '@signozhq/ui/typography';
|
|
import cx from 'classnames';
|
|
import { cloneDeep, pullAt } from 'lodash-es';
|
|
import { Plus } from '@signozhq/icons';
|
|
import { IBuilderQuery } from 'types/api/queryBuilder/queryBuilderData';
|
|
import { QueryFunction } from 'types/api/v5/queryRange';
|
|
import { DataSource, QueryFunctionsTypes } from 'types/common/queryBuilder';
|
|
import { normalizeFunctionName } from 'utils/functionNameNormalizer';
|
|
|
|
import Function from './Function';
|
|
import { toFloat64 } from './utils';
|
|
|
|
import './QueryFunctions.styles.scss';
|
|
|
|
const defaultMetricFunctionStruct: QueryFunction = {
|
|
name: QueryFunctionsTypes.CUTOFF_MIN as any,
|
|
args: [],
|
|
};
|
|
|
|
const defaultLogFunctionStruct: QueryFunction = {
|
|
name: QueryFunctionsTypes.TIME_SHIFT as any,
|
|
args: [],
|
|
};
|
|
|
|
interface QueryFunctionsProps {
|
|
query: IBuilderQuery;
|
|
queryFunctions: QueryFunction[];
|
|
onChange: (functions: QueryFunction[]) => void;
|
|
maxFunctions: number;
|
|
}
|
|
|
|
// SVG component
|
|
function FunctionIcon({
|
|
fillColor = 'white',
|
|
className,
|
|
}: {
|
|
fillColor: string;
|
|
className: string;
|
|
}): JSX.Element {
|
|
return (
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
d="M3 18.13C5.71436 18.13 6.8001 16.7728 6.8001 14.3299V8.62978C6.8001 5.91542 8.15728 4.15109 11.1431 4.55824"
|
|
stroke={fillColor}
|
|
strokeWidth="1.995"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M3 10.2583H10.7359"
|
|
stroke={fillColor}
|
|
strokeWidth="1.995"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M22.0005 11.344L15.2146 18.1299"
|
|
stroke={fillColor}
|
|
strokeWidth="1.995"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M15.2146 11.344L22.0005 18.1299"
|
|
stroke={fillColor}
|
|
strokeWidth="1.995"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default function QueryFunctions({
|
|
query,
|
|
queryFunctions,
|
|
onChange,
|
|
maxFunctions = 3,
|
|
}: QueryFunctionsProps): JSX.Element {
|
|
const [functions, setFunctions] = useState<QueryFunction[]>(
|
|
queryFunctions.map((func) => ({
|
|
...func,
|
|
name: normalizeFunctionName(func.name) as any,
|
|
})),
|
|
);
|
|
|
|
const hasAnomalyFunction = functions.some((func) => func.name === 'anomaly');
|
|
const hasFunctions = functions.length > 0;
|
|
|
|
const handleAddNewFunction = (): void => {
|
|
const defaultFunctionStruct =
|
|
query.dataSource === DataSource.LOGS
|
|
? defaultLogFunctionStruct
|
|
: defaultMetricFunctionStruct;
|
|
|
|
const updatedFunctionsArr = [
|
|
...functions,
|
|
{
|
|
...defaultFunctionStruct,
|
|
},
|
|
];
|
|
|
|
const functionsCopy = cloneDeep(updatedFunctionsArr);
|
|
|
|
const anomalyFuncIndex = functionsCopy.findIndex(
|
|
(func) => func.name === 'anomaly',
|
|
);
|
|
|
|
if (anomalyFuncIndex !== -1) {
|
|
const anomalyFunc = functionsCopy[anomalyFuncIndex];
|
|
|
|
functionsCopy.splice(anomalyFuncIndex, 1);
|
|
functionsCopy.push(anomalyFunc);
|
|
}
|
|
|
|
setFunctions(functionsCopy);
|
|
|
|
onChange(functionsCopy);
|
|
};
|
|
|
|
const handleDeleteFunction = (
|
|
queryFunction: QueryFunction,
|
|
index: number,
|
|
): void => {
|
|
const clonedFunctions = cloneDeep(functions);
|
|
pullAt(clonedFunctions, index);
|
|
|
|
setFunctions(clonedFunctions);
|
|
onChange(clonedFunctions);
|
|
};
|
|
|
|
const handleUpdateFunctionName = (
|
|
func: QueryFunction,
|
|
index: number,
|
|
value: string,
|
|
): void => {
|
|
const updateFunctions = cloneDeep(functions);
|
|
|
|
if (updateFunctions && updateFunctions.length > 0 && updateFunctions[index]) {
|
|
// Normalize function name from backend response to match frontend expectations
|
|
const normalizedValue = normalizeFunctionName(value);
|
|
updateFunctions[index].name = normalizedValue as any;
|
|
setFunctions(updateFunctions);
|
|
onChange(updateFunctions);
|
|
}
|
|
};
|
|
|
|
const handleUpdateFunctionArgs = (
|
|
func: QueryFunction,
|
|
index: number,
|
|
value: string,
|
|
): void => {
|
|
const updateFunctions = cloneDeep(functions);
|
|
|
|
if (updateFunctions && updateFunctions.length > 0 && updateFunctions[index]) {
|
|
updateFunctions[index].args = [
|
|
{
|
|
value:
|
|
updateFunctions[index].name === QueryFunctionsTypes.TIME_SHIFT
|
|
? toFloat64(value)
|
|
: value,
|
|
},
|
|
];
|
|
setFunctions(updateFunctions);
|
|
onChange(updateFunctions);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className={cx(
|
|
'query-functions-container',
|
|
hasFunctions ? 'hasFunctions' : '',
|
|
)}
|
|
>
|
|
<Button
|
|
className="periscope-btn function-btn"
|
|
disabled={hasFunctions}
|
|
onClick={handleAddNewFunction}
|
|
>
|
|
<FunctionIcon className="function-icon" fillColor="var(--l1-foreground)" />
|
|
</Button>
|
|
|
|
<div className="query-functions-list">
|
|
{functions.map((func, index) => (
|
|
<Function
|
|
query={query}
|
|
funcData={func}
|
|
index={index}
|
|
// eslint-disable-next-line react/no-array-index-key
|
|
key={index}
|
|
handleUpdateFunctionArgs={handleUpdateFunctionArgs}
|
|
handleUpdateFunctionName={handleUpdateFunctionName}
|
|
handleDeleteFunction={handleDeleteFunction}
|
|
/>
|
|
))}
|
|
</div>
|
|
|
|
<Tooltip
|
|
title={
|
|
functions && functions.length >= 3 ? (
|
|
`Functions are in early access. You can add a maximum of ${
|
|
hasAnomalyFunction ? 2 : 3
|
|
} function as of now.`
|
|
) : (
|
|
<div style={{ textAlign: 'center' }}>
|
|
Add new function
|
|
<Typography.Link
|
|
style={{ textDecoration: 'underline' }}
|
|
href="https://signoz.io/docs/userguide/query-builder/?utm_source=product&utm_medium=query-builder#functions-for-extended-data-analysis"
|
|
target="_blank"
|
|
>
|
|
{' '}
|
|
<br />
|
|
Learn more
|
|
</Typography.Link>
|
|
</div>
|
|
)
|
|
}
|
|
placement="right"
|
|
>
|
|
<Button
|
|
className="periscope-btn add-function-btn"
|
|
disabled={functions && functions.length >= maxFunctions}
|
|
onClick={handleAddNewFunction}
|
|
>
|
|
<Plus size={14} color="var(--l1-foreground)" />
|
|
</Button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
}
|