mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-14 16:11:27 +08:00

* fix: export table panel * fix: create generate link helper --------- Co-authored-by: Vishal Sharma <makeavish786@gmail.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
232 lines
5.9 KiB
TypeScript
232 lines
5.9 KiB
TypeScript
import { Tabs } from 'antd';
|
|
import axios from 'axios';
|
|
import ExplorerCard from 'components/ExplorerCard';
|
|
import { AVAILABLE_EXPORT_PANEL_TYPES } from 'constants/panelTypes';
|
|
import {
|
|
initialAutocompleteData,
|
|
initialQueriesMap,
|
|
PANEL_TYPES,
|
|
} from 'constants/queryBuilder';
|
|
import { queryParamNamesMap } from 'constants/queryBuilderQueryNames';
|
|
import ExportPanel from 'container/ExportPanel';
|
|
import { SIGNOZ_VALUE } from 'container/QueryBuilder/filters/OrderByFilter/constants';
|
|
import QuerySection from 'container/TracesExplorer/QuerySection';
|
|
import { useUpdateDashboard } from 'hooks/dashboard/useUpdateDashboard';
|
|
import { addEmptyWidgetInDashboardJSONWithQuery } from 'hooks/dashboard/utils';
|
|
import { useQueryBuilder } from 'hooks/queryBuilder/useQueryBuilder';
|
|
import { useShareBuilderUrl } from 'hooks/queryBuilder/useShareBuilderUrl';
|
|
import { useNotifications } from 'hooks/useNotifications';
|
|
import history from 'lib/history';
|
|
import { useCallback, useEffect, useMemo } from 'react';
|
|
import { Dashboard } from 'types/api/dashboard/getAll';
|
|
import { Query } from 'types/api/queryBuilder/queryBuilderData';
|
|
import { DataSource } from 'types/common/queryBuilder';
|
|
import { generateExportToDashboardLink } from 'utils/dashboard/generateExportToDashboardLink';
|
|
|
|
import { ActionsWrapper, Container } from './styles';
|
|
import { getTabsItems } from './utils';
|
|
|
|
function TracesExplorer(): JSX.Element {
|
|
const { notifications } = useNotifications();
|
|
|
|
const {
|
|
currentQuery,
|
|
panelType,
|
|
updateAllQueriesOperators,
|
|
updateQueriesData,
|
|
redirectWithQueryBuilderData,
|
|
} = useQueryBuilder();
|
|
|
|
const currentTab = panelType || PANEL_TYPES.LIST;
|
|
|
|
const isMultipleQueries = useMemo(
|
|
() =>
|
|
currentQuery.builder.queryData.length > 1 ||
|
|
currentQuery.builder.queryFormulas.length > 0,
|
|
[currentQuery],
|
|
);
|
|
|
|
const isGroupByExist = useMemo(() => {
|
|
const groupByCount: number = currentQuery.builder.queryData.reduce<number>(
|
|
(acc, query) => acc + query.groupBy.length,
|
|
0,
|
|
);
|
|
|
|
return groupByCount > 0;
|
|
}, [currentQuery]);
|
|
|
|
const defaultQuery = useMemo(() => {
|
|
const query = updateAllQueriesOperators(
|
|
initialQueriesMap.traces,
|
|
PANEL_TYPES.LIST,
|
|
DataSource.TRACES,
|
|
);
|
|
|
|
return {
|
|
...query,
|
|
builder: {
|
|
...query.builder,
|
|
queryData: [
|
|
{
|
|
...query.builder.queryData[0],
|
|
orderBy: [{ columnName: 'timestamp', order: 'desc' }],
|
|
},
|
|
],
|
|
},
|
|
};
|
|
}, [updateAllQueriesOperators]);
|
|
|
|
const tabsItems = getTabsItems({
|
|
isListViewDisabled: isMultipleQueries || isGroupByExist,
|
|
});
|
|
|
|
const exportDefaultQuery = useMemo(
|
|
() =>
|
|
updateAllQueriesOperators(
|
|
currentQuery || initialQueriesMap.traces,
|
|
PANEL_TYPES.TIME_SERIES,
|
|
DataSource.TRACES,
|
|
),
|
|
[currentQuery, updateAllQueriesOperators],
|
|
);
|
|
|
|
const { mutate: updateDashboard, isLoading } = useUpdateDashboard();
|
|
|
|
const handleExport = useCallback(
|
|
(dashboard: Dashboard | null): void => {
|
|
if (!dashboard || !panelType) return;
|
|
|
|
const panelTypeParam = AVAILABLE_EXPORT_PANEL_TYPES.includes(panelType)
|
|
? panelType
|
|
: PANEL_TYPES.TIME_SERIES;
|
|
|
|
const updatedDashboard = addEmptyWidgetInDashboardJSONWithQuery(
|
|
dashboard,
|
|
exportDefaultQuery,
|
|
panelTypeParam,
|
|
);
|
|
|
|
updateDashboard(updatedDashboard, {
|
|
onSuccess: (data) => {
|
|
if (data.error) {
|
|
const message =
|
|
data.error === 'feature usage exceeded' ? (
|
|
<span>
|
|
Panel limit exceeded for {DataSource.TRACES} in community edition.
|
|
Please checkout our paid plans{' '}
|
|
<a
|
|
href="https://signoz.io/pricing/?utm_source=product&utm_medium=dashboard-limit"
|
|
rel="noreferrer noopener"
|
|
target="_blank"
|
|
>
|
|
here
|
|
</a>
|
|
</span>
|
|
) : (
|
|
data.error
|
|
);
|
|
notifications.error({
|
|
message,
|
|
});
|
|
|
|
return;
|
|
}
|
|
const dashboardEditView = generateExportToDashboardLink({
|
|
query: exportDefaultQuery,
|
|
panelType: panelTypeParam,
|
|
dashboardId: data.payload?.uuid || '',
|
|
});
|
|
|
|
history.push(dashboardEditView);
|
|
},
|
|
onError: (error) => {
|
|
if (axios.isAxiosError(error)) {
|
|
notifications.error({
|
|
message: error.message,
|
|
});
|
|
}
|
|
},
|
|
});
|
|
},
|
|
[exportDefaultQuery, notifications, panelType, updateDashboard],
|
|
);
|
|
|
|
const getUpdateQuery = useCallback(
|
|
(newPanelType: PANEL_TYPES): Query => {
|
|
let query = updateAllQueriesOperators(
|
|
currentQuery,
|
|
newPanelType,
|
|
DataSource.TRACES,
|
|
);
|
|
|
|
if (
|
|
newPanelType === PANEL_TYPES.LIST ||
|
|
newPanelType === PANEL_TYPES.TRACE
|
|
) {
|
|
query = updateQueriesData(query, 'queryData', (item) => ({
|
|
...item,
|
|
orderBy: item.orderBy.filter((item) => item.columnName !== SIGNOZ_VALUE),
|
|
aggregateAttribute: initialAutocompleteData,
|
|
}));
|
|
}
|
|
|
|
return query;
|
|
},
|
|
[currentQuery, updateAllQueriesOperators, updateQueriesData],
|
|
);
|
|
|
|
const handleTabChange = useCallback(
|
|
(type: string): void => {
|
|
const newPanelType = type as PANEL_TYPES;
|
|
if (panelType === newPanelType) return;
|
|
|
|
const query = getUpdateQuery(newPanelType);
|
|
|
|
redirectWithQueryBuilderData(query, {
|
|
[queryParamNamesMap.panelTypes]: newPanelType,
|
|
});
|
|
},
|
|
[getUpdateQuery, panelType, redirectWithQueryBuilderData],
|
|
);
|
|
|
|
useShareBuilderUrl(defaultQuery);
|
|
|
|
useEffect(() => {
|
|
const shouldChangeView = isMultipleQueries || isGroupByExist;
|
|
|
|
if (
|
|
(currentTab === PANEL_TYPES.LIST || currentTab === PANEL_TYPES.TRACE) &&
|
|
shouldChangeView
|
|
) {
|
|
handleTabChange(PANEL_TYPES.TIME_SERIES);
|
|
}
|
|
}, [currentTab, isMultipleQueries, isGroupByExist, handleTabChange]);
|
|
|
|
return (
|
|
<>
|
|
<ExplorerCard>
|
|
<QuerySection />
|
|
</ExplorerCard>
|
|
|
|
<Container>
|
|
<ActionsWrapper>
|
|
<ExportPanel
|
|
query={exportDefaultQuery}
|
|
isLoading={isLoading}
|
|
onExport={handleExport}
|
|
/>
|
|
</ActionsWrapper>
|
|
|
|
<Tabs
|
|
defaultActiveKey={currentTab}
|
|
activeKey={currentTab}
|
|
items={tabsItems}
|
|
onChange={handleTabChange}
|
|
/>
|
|
</Container>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default TracesExplorer;
|