grafana/public/app/features/explore/RichHistory/RichHistoryQueriesTab.tsx
2022-11-03 18:15:55 +00:00

269 lines
8.8 KiB
TypeScript

import { css } from '@emotion/css';
import React, { useEffect, useCallback } from 'react';
import { GrafanaTheme2, SelectableValue } from '@grafana/data';
import { config } from '@grafana/runtime';
import { Button, FilterInput, MultiSelect, RangeSlider, Select, useStyles2 } from '@grafana/ui';
import {
createDatasourcesList,
mapNumbertoTimeInSlider,
mapQueriesToHeadings,
SortOrder,
RichHistorySearchFilters,
RichHistorySettings,
} from 'app/core/utils/richHistory';
import { ExploreId, RichHistoryQuery } from 'app/types/explore';
import { getSortOrderOptions } from './RichHistory';
import RichHistoryCard from './RichHistoryCard';
export interface Props {
queries: RichHistoryQuery[];
totalQueries: number;
loading: boolean;
activeDatasourceInstance: string;
updateFilters: (filtersToUpdate?: Partial<RichHistorySearchFilters>) => void;
clearRichHistoryResults: () => void;
loadMoreRichHistory: () => void;
richHistorySettings: RichHistorySettings;
richHistorySearchFilters?: RichHistorySearchFilters;
exploreId: ExploreId;
height: number;
}
const getStyles = (theme: GrafanaTheme2, height: number) => {
const bgColor = theme.isLight ? theme.v1.palette.gray5 : theme.v1.palette.dark4;
return {
container: css`
display: flex;
`,
labelSlider: css`
font-size: ${theme.typography.bodySmall.fontSize};
&:last-of-type {
margin-top: ${theme.spacing(3)};
}
&:first-of-type {
font-weight: ${theme.typography.fontWeightMedium};
margin-bottom: ${theme.spacing(2)};
}
`,
containerContent: css`
/* 134px is based on the width of the Query history tabs bar, so the content is aligned to right side of the tab */
width: calc(100% - 134px);
`,
containerSlider: css`
width: 129px;
margin-right: ${theme.spacing(1)};
`,
fixedSlider: css`
position: fixed;
`,
slider: css`
bottom: 10px;
height: ${height - 180}px;
width: 129px;
padding: ${theme.spacing(1)} 0;
`,
selectors: css`
display: flex;
justify-content: space-between;
flex-wrap: wrap;
`,
filterInput: css`
margin-bottom: ${theme.spacing(1)};
`,
multiselect: css`
width: 100%;
margin-bottom: ${theme.spacing(1)};
.gf-form-select-box__multi-value {
background-color: ${bgColor};
padding: ${theme.spacing(0.25, 0.5, 0.25, 1)};
border-radius: ${theme.shape.borderRadius(1)};
}
`,
sort: css`
width: 170px;
`,
sessionName: css`
display: flex;
align-items: flex-start;
justify-content: flex-start;
margin-top: ${theme.spacing(3)};
h4 {
margin: 0 10px 0 0;
}
`,
heading: css`
font-size: ${theme.typography.h4.fontSize};
margin: ${theme.spacing(2, 0.25, 1, 0.25)};
`,
footer: css`
height: 60px;
margin: ${theme.spacing(3)} auto;
display: flex;
justify-content: center;
font-weight: ${theme.typography.fontWeightLight};
font-size: ${theme.typography.bodySmall.fontSize};
a {
font-weight: ${theme.typography.fontWeightMedium};
margin-left: ${theme.spacing(0.25)};
}
`,
queries: css`
font-size: ${theme.typography.bodySmall.fontSize};
font-weight: ${theme.typography.fontWeightRegular};
margin-left: ${theme.spacing(0.5)};
`,
};
};
export function RichHistoryQueriesTab(props: Props) {
const {
queries,
totalQueries,
loading,
richHistorySearchFilters,
updateFilters,
clearRichHistoryResults,
loadMoreRichHistory,
richHistorySettings,
exploreId,
height,
activeDatasourceInstance,
} = props;
const styles = useStyles2(useCallback((theme: GrafanaTheme2) => getStyles(theme, height), [height]));
const listOfDatasources = createDatasourcesList();
useEffect(() => {
const datasourceFilters =
!richHistorySettings.activeDatasourceOnly && richHistorySettings.lastUsedDatasourceFilters
? richHistorySettings.lastUsedDatasourceFilters
: [activeDatasourceInstance];
const filters: RichHistorySearchFilters = {
search: '',
sortOrder: SortOrder.Descending,
datasourceFilters,
from: 0,
to: richHistorySettings.retentionPeriod,
starred: false,
};
updateFilters(filters);
return () => {
clearRichHistoryResults();
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
if (!richHistorySearchFilters) {
return <span>Loading...</span>;
}
/* mappedQueriesToHeadings is an object where query headings (stringified dates/data sources)
* are keys and arrays with queries that belong to that headings are values.
*/
const mappedQueriesToHeadings = mapQueriesToHeadings(queries, richHistorySearchFilters.sortOrder);
const sortOrderOptions = getSortOrderOptions();
const partialResults = queries.length && queries.length !== totalQueries;
return (
<div className={styles.container}>
<div className={styles.containerSlider}>
<div className={styles.fixedSlider}>
<div className={styles.labelSlider}>Filter history</div>
<div className={styles.labelSlider}>{mapNumbertoTimeInSlider(richHistorySearchFilters.from)}</div>
<div className={styles.slider}>
<RangeSlider
tooltipAlwaysVisible={false}
min={0}
max={richHistorySettings.retentionPeriod}
value={[richHistorySearchFilters.from, richHistorySearchFilters.to]}
orientation="vertical"
formatTooltipResult={mapNumbertoTimeInSlider}
reverse={true}
onAfterChange={(value) => {
updateFilters({ from: value![0], to: value![1] });
}}
/>
</div>
<div className={styles.labelSlider}>{mapNumbertoTimeInSlider(richHistorySearchFilters.to)}</div>
</div>
</div>
<div className={styles.containerContent}>
<div className={styles.selectors}>
{!richHistorySettings.activeDatasourceOnly && (
<MultiSelect
className={styles.multiselect}
options={listOfDatasources.map((ds) => {
return { value: ds.name, label: ds.name };
})}
value={richHistorySearchFilters.datasourceFilters}
placeholder="Filter queries for data sources(s)"
aria-label="Filter queries for data sources(s)"
onChange={(options: SelectableValue[]) => {
updateFilters({ datasourceFilters: options.map((option) => option.value) });
}}
/>
)}
<div className={styles.filterInput}>
<FilterInput
placeholder="Search queries"
value={richHistorySearchFilters.search}
onChange={(search: string) => updateFilters({ search })}
/>
</div>
<div aria-label="Sort queries" className={styles.sort}>
<Select
value={sortOrderOptions.filter((order) => order.value === richHistorySearchFilters.sortOrder)}
options={sortOrderOptions}
placeholder="Sort queries by"
onChange={(e: SelectableValue<SortOrder>) => updateFilters({ sortOrder: e.value })}
/>
</div>
</div>
{loading && <span>Loading results...</span>}
{!loading &&
Object.keys(mappedQueriesToHeadings).map((heading) => {
return (
<div key={heading}>
<div className={styles.heading}>
{heading}{' '}
<span className={styles.queries}>
{partialResults ? 'Displaying ' : ''}
{mappedQueriesToHeadings[heading].length} queries
</span>
</div>
{mappedQueriesToHeadings[heading].map((q: RichHistoryQuery) => {
const idx = listOfDatasources.findIndex((d) => d.uid === q.datasourceUid);
return (
<RichHistoryCard
query={q}
key={q.id}
exploreId={exploreId}
dsImg={idx === -1 ? 'public/img/icn-datasource.svg' : listOfDatasources[idx].imgUrl}
isRemoved={idx === -1}
/>
);
})}
</div>
);
})}
{partialResults ? (
<div>
Showing {queries.length} of {totalQueries} <Button onClick={loadMoreRichHistory}>Load more</Button>
</div>
) : null}
<div className={styles.footer}>
{!config.queryHistoryEnabled ? 'The history is local to your browser and is not shared with others.' : ''}
</div>
</div>
</div>
);
}