mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-19 16:36:45 +00:00
136 lines
3.3 KiB
TypeScript
136 lines
3.3 KiB
TypeScript
|
|
import { Button, Popover, Tag, Tooltip } from 'antd';
|
||
|
|
import getStep from 'lib/getStep';
|
||
|
|
import { generateFilterQuery } from 'lib/logs/generateFilterQuery';
|
||
|
|
import React, { memo, useCallback, useMemo } from 'react';
|
||
|
|
import { connect, useDispatch, useSelector } from 'react-redux';
|
||
|
|
import { bindActionCreators, Dispatch } from 'redux';
|
||
|
|
import { ThunkDispatch } from 'redux-thunk';
|
||
|
|
import { getLogs } from 'store/actions/logs/getLogs';
|
||
|
|
import { getLogsAggregate } from 'store/actions/logs/getLogsAggregate';
|
||
|
|
import { AppState } from 'store/reducers';
|
||
|
|
import AppActions from 'types/actions';
|
||
|
|
import { SET_SEARCH_QUERY_STRING, TOGGLE_LIVE_TAIL } from 'types/actions/logs';
|
||
|
|
import { GlobalReducer } from 'types/reducer/globalTime';
|
||
|
|
import ILogsReducer from 'types/reducer/logs';
|
||
|
|
|
||
|
|
function AddToQueryHOC({
|
||
|
|
fieldKey,
|
||
|
|
fieldValue,
|
||
|
|
children,
|
||
|
|
getLogs,
|
||
|
|
getLogsAggregate,
|
||
|
|
}) {
|
||
|
|
const {
|
||
|
|
searchFilter: { queryString },
|
||
|
|
logLinesPerPage,
|
||
|
|
idStart,
|
||
|
|
idEnd,
|
||
|
|
liveTail,
|
||
|
|
} = useSelector<AppState, ILogsReducer>((store) => store.logs);
|
||
|
|
const dispatch = useDispatch();
|
||
|
|
|
||
|
|
const { maxTime, minTime } = useSelector<AppState, GlobalReducer>(
|
||
|
|
(state) => state.globalTime,
|
||
|
|
);
|
||
|
|
const generatedQuery = useMemo(
|
||
|
|
() => generateFilterQuery({ fieldKey, fieldValue, type: 'IN' }),
|
||
|
|
[fieldKey, fieldValue],
|
||
|
|
);
|
||
|
|
|
||
|
|
const handleQueryAdd = useCallback(() => {
|
||
|
|
let updatedQueryString = queryString || '';
|
||
|
|
|
||
|
|
if (updatedQueryString.length === 0) {
|
||
|
|
updatedQueryString += `${generatedQuery}`;
|
||
|
|
} else {
|
||
|
|
updatedQueryString += ` AND ${generatedQuery}`;
|
||
|
|
}
|
||
|
|
dispatch({
|
||
|
|
type: SET_SEARCH_QUERY_STRING,
|
||
|
|
payload: updatedQueryString,
|
||
|
|
});
|
||
|
|
if (liveTail === 'STOPPED') {
|
||
|
|
getLogs({
|
||
|
|
q: updatedQueryString,
|
||
|
|
limit: logLinesPerPage,
|
||
|
|
orderBy: 'timestamp',
|
||
|
|
order: 'desc',
|
||
|
|
timestampStart: minTime,
|
||
|
|
timestampEnd: maxTime,
|
||
|
|
...(idStart ? { idGt: idStart } : {}),
|
||
|
|
...(idEnd ? { idLt: idEnd } : {}),
|
||
|
|
});
|
||
|
|
getLogsAggregate({
|
||
|
|
timestampStart: minTime,
|
||
|
|
timestampEnd: maxTime,
|
||
|
|
step: getStep({
|
||
|
|
start: minTime,
|
||
|
|
end: maxTime,
|
||
|
|
inputFormat: 'ns',
|
||
|
|
}),
|
||
|
|
q: updatedQueryString,
|
||
|
|
...(idStart ? { idGt: idStart } : {}),
|
||
|
|
...(idEnd ? { idLt: idEnd } : {}),
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
else if (liveTail === 'PLAYING') {
|
||
|
|
dispatch({
|
||
|
|
type: TOGGLE_LIVE_TAIL,
|
||
|
|
payload: 'PAUSED',
|
||
|
|
});
|
||
|
|
setTimeout(
|
||
|
|
() =>
|
||
|
|
dispatch({
|
||
|
|
type: TOGGLE_LIVE_TAIL,
|
||
|
|
payload: liveTail,
|
||
|
|
}),
|
||
|
|
0,
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}, [
|
||
|
|
dispatch,
|
||
|
|
generatedQuery,
|
||
|
|
getLogs,
|
||
|
|
idEnd,
|
||
|
|
idStart,
|
||
|
|
logLinesPerPage,
|
||
|
|
maxTime,
|
||
|
|
minTime,
|
||
|
|
queryString,
|
||
|
|
]);
|
||
|
|
|
||
|
|
const popOverContent = (
|
||
|
|
<span style={{ fontSize: '0.9rem' }}>Add to query: {fieldKey}</span>
|
||
|
|
);
|
||
|
|
return (
|
||
|
|
<Button
|
||
|
|
size="small"
|
||
|
|
type="text"
|
||
|
|
style={{
|
||
|
|
margin: 0,
|
||
|
|
padding: 0,
|
||
|
|
}}
|
||
|
|
onClick={handleQueryAdd}
|
||
|
|
>
|
||
|
|
<Popover placement="top" content={popOverContent}>
|
||
|
|
{children}
|
||
|
|
</Popover>
|
||
|
|
</Button>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
interface DispatchProps {
|
||
|
|
getLogs: () => (dispatch: Dispatch<AppActions>) => void;
|
||
|
|
getLogsAggregate: () => (dispatch: Dispatch<AppActions>) => void;
|
||
|
|
}
|
||
|
|
|
||
|
|
const mapDispatchToProps = (
|
||
|
|
dispatch: ThunkDispatch<unknown, unknown, AppActions>,
|
||
|
|
): DispatchProps => ({
|
||
|
|
getLogs: bindActionCreators(getLogs, dispatch),
|
||
|
|
getLogsAggregate: bindActionCreators(getLogsAggregate, dispatch),
|
||
|
|
});
|
||
|
|
|
||
|
|
export default connect(null, mapDispatchToProps)(memo(AddToQueryHOC));
|