The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/alerting/unified/components/rule-editor/RuleFolderPicker.tsx

76 lines
2.2 KiB

import { css } from '@emotion/css';
import { GrafanaTheme2 } from '@grafana/data';
import { Icon, Stack, Tooltip, useStyles2 } from '@grafana/ui';
import { Props as FolderPickerProps, OldFolderPicker } from 'app/core/components/Select/OldFolderPicker';
import { PermissionLevelString, SearchQueryType } from 'app/types';
import { CustomAdd, FolderWarning } from '../../../../../core/components/Select/OldFolderPicker';
export interface Folder {
title: string;
uid: string;
}
export interface RuleFolderPickerProps extends Omit<FolderPickerProps, 'initialTitle' | 'initialFolderId'> {
value?: Folder;
invalid?: boolean;
}
const SlashesWarning = () => {
const styles = useStyles2(getStyles);
const onClick = () => window.open('https://github.com/grafana/grafana/issues/42947', '_blank');
return (
<Stack gap={0.5}>
<div className={styles.slashNotAllowed}>Folders with &apos;/&apos; character are not allowed.</div>
<Tooltip placement="top" content={'Link to the Github issue'} theme="info">
<Icon name="info-circle" size="xs" className={styles.infoIcon} onClick={onClick} />
</Tooltip>
</Stack>
);
};
export const containsSlashes = (str: string): boolean => str.indexOf('/') !== -1;
export function RuleFolderPicker(props: RuleFolderPickerProps) {
const { value } = props;
const warningCondition = (folderName: string) => containsSlashes(folderName);
const folderWarning: FolderWarning = {
warningCondition: warningCondition,
warningComponent: SlashesWarning,
};
const customAdd: CustomAdd = {
disallowValues: true,
isAllowedValue: (value) => !containsSlashes(value),
};
return (
<OldFolderPicker
showRoot={false}
rootName=""
allowEmpty={true}
initialFolderUid={value?.uid}
searchQueryType={SearchQueryType.AlertFolder}
{...props}
permissionLevel={PermissionLevelString.Edit}
customAdd={customAdd}
folderWarning={folderWarning}
/>
);
}
const getStyles = (theme: GrafanaTheme2) => ({
slashNotAllowed: css({
color: theme.colors.warning.main,
fontSize: '12px',
marginBottom: '2px',
}),
infoIcon: css({
color: theme.colors.warning.main,
fontSize: '12px',
marginBottom: '2px',
cursor: 'pointer',
}),
});