/usr/share/grafana/public/app/features/dashboard/components/PanelEditor
import { css, cx } from '@emotion/css'; import { Component } from 'react'; import { GrafanaTheme2, renderMarkdown, LinkModelSupplier, ScopedVars, IconName } from '@grafana/data'; import { selectors } from '@grafana/e2e-selectors'; import { locationService, getTemplateSrv } from '@grafana/runtime'; import { Tooltip, PopoverContent, Icon, Themeable2, withTheme2, useStyles2 } from '@grafana/ui'; import { getTimeSrv, TimeSrv } from 'app/features/dashboard/services/TimeSrv'; import { PanelModel } from 'app/features/dashboard/state/PanelModel'; import { InspectTab } from 'app/features/inspector/types'; enum InfoMode { Error = 'Error', Info = 'Info', Links = 'Links', } export interface Props extends Themeable2 { panel: PanelModel; title?: string; description?: string; scopedVars?: ScopedVars; links?: LinkModelSupplier<PanelModel>; error?: string; } export class PanelHeaderCorner extends Component<Props> { timeSrv: TimeSrv = getTimeSrv(); getInfoMode = () => { const { panel, error } = this.props; if (error) { return InfoMode.Error; } if (!!panel.description) { return InfoMode.Info; } if (panel.links && panel.links.length) { return InfoMode.Links; } return undefined; }; getInfoContent = (): JSX.Element => { const { panel, theme } = this.props; const markdown = panel.description || ''; const interpolatedMarkdown = getTemplateSrv().replace(markdown, panel.scopedVars); const markedInterpolatedMarkdown = renderMarkdown(interpolatedMarkdown); const links = this.props.links && this.props.links.getLinks(panel.replaceVariables); const styles = getContentStyles(theme); return ( <div className={styles.content}> <div dangerouslySetInnerHTML={{ __html: markedInterpolatedMarkdown }} /> {links && links.length > 0 && ( <ul className={styles.cornerLinks}> {links.map((link, idx) => { return ( <li key={idx}> <a href={link.href} target={link.target}> {link.title} </a> </li> ); })} </ul> )} </div> ); }; /** * Open the Panel Inspector when we click on an error */ onClickError = () => { locationService.partial({ inspect: this.props.panel.id, inspectTab: InspectTab.Error, }); }; render() { const { error } = this.props; const infoMode: InfoMode | undefined = this.getInfoMode(); if (!infoMode) { return null; } if (infoMode === InfoMode.Error && error) { return <PanelInfoCorner infoMode={infoMode} content={error} onClick={this.onClickError} />; } if (infoMode === InfoMode.Info || infoMode === InfoMode.Links) { return <PanelInfoCorner infoMode={infoMode} content={this.getInfoContent} />; } return null; } } export default withTheme2(PanelHeaderCorner); interface PanelInfoCornerProps { infoMode: InfoMode; content: PopoverContent; onClick?: () => void; } function PanelInfoCorner({ infoMode, content, onClick }: PanelInfoCornerProps) { const theme = infoMode === InfoMode.Error ? 'error' : 'info'; const ariaLabel = selectors.components.Panels.Panel.headerCornerInfo(infoMode.toLowerCase()); const styles = useStyles2(getStyles); return ( <Tooltip content={content} placement="top-start" theme={theme} interactive> <button type="button" className={styles.infoCorner} onClick={onClick} aria-label={ariaLabel}> <Icon name={iconMap[infoMode]} size={infoMode === InfoMode.Links ? 'sm' : 'lg'} className={cx(styles.icon, { [styles.iconLinks]: infoMode === InfoMode.Links })} /> <span className={cx(styles.inner, { [styles.error]: infoMode === InfoMode.Error })} /> </button> </Tooltip> ); } const iconMap: Record<InfoMode, IconName> = { [InfoMode.Error]: 'exclamation', [InfoMode.Info]: 'info', [InfoMode.Links]: 'external-link-alt', }; const getContentStyles = (theme: GrafanaTheme2) => ({ content: css({ overflow: 'auto', code: { whiteSpace: 'normal', wordWrap: 'break-word', }, 'pre > code': { display: 'block', }, }), cornerLinks: css({ listStyle: 'none', paddingLeft: 0, }), }); const getStyles = (theme: GrafanaTheme2) => { return { icon: css({ position: 'absolute', top: 0, left: 0, zIndex: 2, fill: theme.colors.text.maxContrast, }), iconLinks: css({ left: theme.spacing(0.5), top: theme.spacing(0.25), }), inner: css({ width: 0, height: 0, position: 'absolute', left: 0, bottom: 0, borderBottom: `${theme.spacing(4)} solid transparent`, borderLeft: `${theme.spacing(4)} solid ${theme.colors.background.secondary}`, }), error: css({ borderLeftColor: theme.colors.error.main, }), infoCorner: css({ background: 'none', border: 'none', color: theme.colors.text.secondary, cursor: 'pointer', position: 'absolute', left: 0, top: 0, width: theme.spacing(4), height: theme.spacing(4), zIndex: 3, }), }; };
.
Edit
..
Edit
DynamicConfigValueEditor.tsx
Edit
OptionsPane.tsx
Edit
OptionsPaneCategory.tsx
Edit
OptionsPaneCategoryDescriptor.tsx
Edit
OptionsPaneItemDescriptor.tsx
Edit
OptionsPaneItemOverrides.tsx
Edit
OptionsPaneOptions.test.tsx
Edit
OptionsPaneOptions.tsx
Edit
OverrideCategoryTitle.tsx
Edit
PanelEditor.tsx
Edit
PanelEditorQueries.tsx
Edit
PanelEditorTableView.test.tsx
Edit
PanelEditorTableView.tsx
Edit
PanelEditorTabs.tsx
Edit
PanelHeaderCorner.test.tsx
Edit
PanelHeaderCorner.tsx
Edit
PanelNotSupported.test.tsx
Edit
PanelNotSupported.tsx
Edit
VisualizationButton.tsx
Edit
VisualizationSelectPane.tsx
Edit
getFieldOverrideElements.tsx
Edit
getLibraryPanelOptions.tsx
Edit
getPanelFrameOptions.tsx
Edit
getVisualizationOptions.test.ts
Edit
getVisualizationOptions.tsx
Edit
state
Edit
types.ts
Edit
usePanelLatestData.ts
Edit
utils.test.ts
Edit
utils.ts
Edit