mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
* Babel: Updates babel dependencies to latest version * Emotion: Upgrade form 10 to 11 * Fixing tests * Updated to use emotion/css instead in test
336 lines
10 KiB
TypeScript
336 lines
10 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { hot } from 'react-hot-loader';
|
|
import { css, cx } from '@emotion/css';
|
|
import { stylesFactory, useTheme, TextArea, Button, IconButton } from '@grafana/ui';
|
|
import { getDataSourceSrv } from '@grafana/runtime';
|
|
import { GrafanaTheme, DataSourceApi } from '@grafana/data';
|
|
import { RichHistoryQuery, ExploreId } from 'app/types/explore';
|
|
import { createUrlFromRichHistory, createQueryText } from 'app/core/utils/richHistory';
|
|
import { createAndCopyShortLink } from 'app/core/utils/shortLinks';
|
|
import { copyStringToClipboard } from 'app/core/utils/explore';
|
|
import appEvents from 'app/core/app_events';
|
|
import { dispatch } from 'app/store/store';
|
|
import { notifyApp } from 'app/core/actions';
|
|
import { createSuccessNotification } from 'app/core/copy/appNotification';
|
|
import { StoreState } from 'app/types';
|
|
|
|
import { updateRichHistory } from '../state/history';
|
|
import { changeDatasource } from '../state/datasource';
|
|
import { setQueries } from '../state/query';
|
|
import { ShowConfirmModalEvent } from '../../../types/events';
|
|
|
|
export interface Props {
|
|
query: RichHistoryQuery;
|
|
dsImg: string;
|
|
isRemoved: boolean;
|
|
changeDatasource: typeof changeDatasource;
|
|
updateRichHistory: typeof updateRichHistory;
|
|
setQueries: typeof setQueries;
|
|
exploreId: ExploreId;
|
|
datasourceInstance: DataSourceApi;
|
|
}
|
|
|
|
const getStyles = stylesFactory((theme: GrafanaTheme, isRemoved: boolean) => {
|
|
/* Hard-coded value so all buttons and icons on right side of card are aligned */
|
|
const rigtColumnWidth = '240px';
|
|
const rigtColumnContentWidth = '170px';
|
|
|
|
/* If datasource was removed, card will have inactive color */
|
|
const cardColor = theme.isLight
|
|
? isRemoved
|
|
? theme.palette.gray95
|
|
: theme.palette.white
|
|
: isRemoved
|
|
? theme.palette.gray15
|
|
: theme.palette.gray05;
|
|
|
|
return {
|
|
queryCard: css`
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid ${theme.colors.formInputBorder};
|
|
margin: ${theme.spacing.sm} 0;
|
|
background-color: ${cardColor};
|
|
border-radius: ${theme.border.radius.sm};
|
|
.starred {
|
|
color: ${theme.palette.orange};
|
|
}
|
|
`,
|
|
cardRow: css`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: ${theme.spacing.sm};
|
|
border-bottom: none;
|
|
:first-of-type {
|
|
border-bottom: 1px solid ${theme.colors.formInputBorder};
|
|
padding: ${theme.spacing.xs} ${theme.spacing.sm};
|
|
}
|
|
img {
|
|
height: ${theme.typography.size.base};
|
|
max-width: ${theme.typography.size.base};
|
|
margin-right: ${theme.spacing.sm};
|
|
}
|
|
`,
|
|
datasourceContainer: css`
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: ${theme.typography.size.sm};
|
|
font-weight: ${theme.typography.weight.semibold};
|
|
`,
|
|
queryActionButtons: css`
|
|
max-width: ${rigtColumnContentWidth};
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
font-size: ${theme.typography.size.base};
|
|
button {
|
|
margin-left: ${theme.spacing.sm};
|
|
}
|
|
`,
|
|
queryContainer: css`
|
|
font-weight: ${theme.typography.weight.semibold};
|
|
width: calc(100% - ${rigtColumnWidth});
|
|
`,
|
|
queryRow: css`
|
|
border-top: 1px solid ${theme.colors.formInputBorder};
|
|
word-break: break-all;
|
|
padding: 4px 2px;
|
|
:first-child {
|
|
border-top: none;
|
|
padding: 0 0 4px 0;
|
|
}
|
|
`,
|
|
updateCommentContainer: css`
|
|
width: calc(100% + ${rigtColumnWidth});
|
|
margin-top: ${theme.spacing.sm};
|
|
`,
|
|
comment: css`
|
|
overflow-wrap: break-word;
|
|
font-size: ${theme.typography.size.sm};
|
|
font-weight: ${theme.typography.weight.regular};
|
|
margin-top: ${theme.spacing.xs};
|
|
`,
|
|
commentButtonRow: css`
|
|
> * {
|
|
margin-right: ${theme.spacing.sm};
|
|
}
|
|
`,
|
|
textArea: css`
|
|
border: 1px solid ${theme.colors.formInputBorder};
|
|
background: inherit;
|
|
color: inherit;
|
|
width: 100%;
|
|
font-size: ${theme.typography.size.sm};
|
|
&placeholder {
|
|
padding: 0 ${theme.spacing.sm};
|
|
}
|
|
`,
|
|
runButton: css`
|
|
max-width: ${rigtColumnContentWidth};
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
button {
|
|
height: auto;
|
|
padding: ${theme.spacing.xs} ${theme.spacing.md};
|
|
line-height: 1.4;
|
|
span {
|
|
white-space: normal !important;
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
});
|
|
|
|
export function RichHistoryCard(props: Props) {
|
|
const {
|
|
query,
|
|
dsImg,
|
|
isRemoved,
|
|
updateRichHistory,
|
|
changeDatasource,
|
|
exploreId,
|
|
datasourceInstance,
|
|
setQueries,
|
|
} = props;
|
|
const [activeUpdateComment, setActiveUpdateComment] = useState(false);
|
|
const [comment, setComment] = useState<string | undefined>(query.comment);
|
|
const [queryDsInstance, setQueryDsInstance] = useState<DataSourceApi | undefined>(undefined);
|
|
|
|
useEffect(() => {
|
|
const getQueryDsInstance = async () => {
|
|
const ds = await getDataSourceSrv().get(query.datasourceName);
|
|
setQueryDsInstance(ds);
|
|
};
|
|
|
|
getQueryDsInstance();
|
|
}, [query.datasourceName]);
|
|
|
|
const theme = useTheme();
|
|
const styles = getStyles(theme, isRemoved);
|
|
|
|
const onRunQuery = async () => {
|
|
const queriesToRun = query.queries;
|
|
if (query.datasourceName !== datasourceInstance?.name) {
|
|
await changeDatasource(exploreId, query.datasourceName, { importQueries: true });
|
|
setQueries(exploreId, queriesToRun);
|
|
} else {
|
|
setQueries(exploreId, queriesToRun);
|
|
}
|
|
};
|
|
|
|
const onCopyQuery = () => {
|
|
const queriesToCopy = query.queries.map((q) => createQueryText(q, queryDsInstance)).join('\n');
|
|
copyStringToClipboard(queriesToCopy);
|
|
dispatch(notifyApp(createSuccessNotification('Query copied to clipboard')));
|
|
};
|
|
|
|
const onCreateShortLink = async () => {
|
|
const link = createUrlFromRichHistory(query);
|
|
await createAndCopyShortLink(link);
|
|
};
|
|
|
|
const onDeleteQuery = () => {
|
|
// For starred queries, we want confirmation. For non-starred, we don't.
|
|
if (query.starred) {
|
|
appEvents.publish(
|
|
new ShowConfirmModalEvent({
|
|
title: 'Delete',
|
|
text: 'Are you sure you want to permanently delete your starred query?',
|
|
yesText: 'Delete',
|
|
icon: 'trash-alt',
|
|
onConfirm: () => {
|
|
updateRichHistory(query.ts, 'delete');
|
|
dispatch(notifyApp(createSuccessNotification('Query deleted')));
|
|
},
|
|
})
|
|
);
|
|
} else {
|
|
updateRichHistory(query.ts, 'delete');
|
|
dispatch(notifyApp(createSuccessNotification('Query deleted')));
|
|
}
|
|
};
|
|
|
|
const onStarrQuery = () => {
|
|
updateRichHistory(query.ts, 'starred');
|
|
};
|
|
|
|
const toggleActiveUpdateComment = () => setActiveUpdateComment(!activeUpdateComment);
|
|
|
|
const onUpdateComment = () => {
|
|
updateRichHistory(query.ts, 'comment', comment);
|
|
setActiveUpdateComment(false);
|
|
};
|
|
|
|
const onCancelUpdateComment = () => {
|
|
setActiveUpdateComment(false);
|
|
setComment(query.comment);
|
|
};
|
|
|
|
const onKeyDown = (keyEvent: React.KeyboardEvent) => {
|
|
if (keyEvent.key === 'Enter' && (keyEvent.shiftKey || keyEvent.ctrlKey)) {
|
|
onUpdateComment();
|
|
}
|
|
|
|
if (keyEvent.key === 'Escape') {
|
|
onCancelUpdateComment();
|
|
}
|
|
};
|
|
|
|
const updateComment = (
|
|
<div className={styles.updateCommentContainer} aria-label={comment ? 'Update comment form' : 'Add comment form'}>
|
|
<TextArea
|
|
value={comment}
|
|
placeholder={comment ? undefined : 'An optional description of what the query does.'}
|
|
onChange={(e) => setComment(e.currentTarget.value)}
|
|
className={styles.textArea}
|
|
/>
|
|
<div className={styles.commentButtonRow}>
|
|
<Button onClick={onUpdateComment} aria-label="Submit button">
|
|
Save comment
|
|
</Button>
|
|
<Button variant="secondary" onClick={onCancelUpdateComment}>
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
const queryActionButtons = (
|
|
<div className={styles.queryActionButtons}>
|
|
<IconButton
|
|
name="comment-alt"
|
|
onClick={toggleActiveUpdateComment}
|
|
title={query.comment?.length > 0 ? 'Edit comment' : 'Add comment'}
|
|
/>
|
|
<IconButton name="copy" onClick={onCopyQuery} title="Copy query to clipboard" />
|
|
{!isRemoved && (
|
|
<IconButton name="share-alt" onClick={onCreateShortLink} title="Copy shortened link to clipboard" />
|
|
)}
|
|
<IconButton name="trash-alt" title={'Delete query'} onClick={onDeleteQuery} />
|
|
<IconButton
|
|
name={query.starred ? 'favorite' : 'star'}
|
|
iconType={query.starred ? 'mono' : 'default'}
|
|
onClick={onStarrQuery}
|
|
title={query.starred ? 'Unstar query' : 'Star query'}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<div className={styles.queryCard} onKeyDown={onKeyDown}>
|
|
<div className={styles.cardRow}>
|
|
<div className={styles.datasourceContainer}>
|
|
<img src={dsImg} aria-label="Data source icon" />
|
|
<div aria-label="Data source name">
|
|
{isRemoved ? 'Data source does not exist anymore' : query.datasourceName}
|
|
</div>
|
|
</div>
|
|
{queryActionButtons}
|
|
</div>
|
|
<div className={cx(styles.cardRow)}>
|
|
<div className={styles.queryContainer}>
|
|
{query.queries.map((q, i) => {
|
|
const queryText = createQueryText(q, queryDsInstance);
|
|
return (
|
|
<div aria-label="Query text" key={`${q}-${i}`} className={styles.queryRow}>
|
|
{queryText}
|
|
</div>
|
|
);
|
|
})}
|
|
{!activeUpdateComment && query.comment && (
|
|
<div aria-label="Query comment" className={styles.comment}>
|
|
{query.comment}
|
|
</div>
|
|
)}
|
|
{activeUpdateComment && updateComment}
|
|
</div>
|
|
{!activeUpdateComment && (
|
|
<div className={styles.runButton}>
|
|
<Button variant="secondary" onClick={onRunQuery} disabled={isRemoved}>
|
|
{datasourceInstance?.name === query.datasourceName ? 'Run query' : 'Switch data source and run query'}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function mapStateToProps(state: StoreState, { exploreId }: { exploreId: ExploreId }) {
|
|
const explore = state.explore;
|
|
const { datasourceInstance } = explore[exploreId]!;
|
|
return {
|
|
exploreId,
|
|
datasourceInstance,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
changeDatasource,
|
|
updateRichHistory,
|
|
setQueries,
|
|
};
|
|
|
|
export default hot(module)(connect(mapStateToProps, mapDispatchToProps)(RichHistoryCard));
|