mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
dd31207ecf
* Search: Use folder id as key when present * Search: Do not render modals if not open
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import React, { FC } from 'react';
|
|
import { css } from 'emotion';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
import { ConfirmModal, stylesFactory, useTheme } from '@grafana/ui';
|
|
import { getLocationSrv } from '@grafana/runtime';
|
|
import { backendSrv } from 'app/core/services/backend_srv';
|
|
import { DashboardSection, OnDeleteItems } from '../types';
|
|
import { getCheckedUids } from '../utils';
|
|
|
|
interface Props {
|
|
onDeleteItems: OnDeleteItems;
|
|
results: DashboardSection[];
|
|
isOpen: boolean;
|
|
onDismiss: () => void;
|
|
}
|
|
|
|
export const ConfirmDeleteModal: FC<Props> = ({ results, onDeleteItems, isOpen, onDismiss }) => {
|
|
const theme = useTheme();
|
|
const styles = getStyles(theme);
|
|
|
|
const uids = getCheckedUids(results);
|
|
const { folders, dashboards } = uids;
|
|
const folderCount = folders.length;
|
|
const dashCount = dashboards.length;
|
|
|
|
let text = 'Do you want to delete the ';
|
|
let subtitle;
|
|
const dashEnding = dashCount === 1 ? '' : 's';
|
|
const folderEnding = folderCount === 1 ? '' : 's';
|
|
|
|
if (folderCount > 0 && dashCount > 0) {
|
|
text += `selected folder${folderEnding} and dashboard${dashEnding}?\n`;
|
|
subtitle = `All dashboards of the selected folder${folderEnding} will also be deleted`;
|
|
} else if (folderCount > 0) {
|
|
text += `selected folder${folderEnding} and all its dashboards?`;
|
|
} else {
|
|
text += `selected dashboard${dashEnding}?`;
|
|
}
|
|
|
|
const deleteItems = () => {
|
|
backendSrv.deleteFoldersAndDashboards(folders, dashboards).then(() => {
|
|
onDismiss();
|
|
// Redirect to /dashboard in case folder was deleted from f/:folder.uid
|
|
getLocationSrv().update({ path: '/dashboards' });
|
|
onDeleteItems(folders, dashboards);
|
|
});
|
|
};
|
|
|
|
return isOpen ? (
|
|
<ConfirmModal
|
|
isOpen={isOpen}
|
|
title="Delete"
|
|
body={
|
|
<>
|
|
{text} {subtitle && <div className={styles.subtitle}>{subtitle}</div>}
|
|
</>
|
|
}
|
|
confirmText="Delete"
|
|
onConfirm={deleteItems}
|
|
onDismiss={onDismiss}
|
|
/>
|
|
) : null;
|
|
};
|
|
|
|
const getStyles = stylesFactory((theme: GrafanaTheme) => {
|
|
return {
|
|
subtitle: css`
|
|
font-size: ${theme.typography.size.base};
|
|
padding-top: ${theme.spacing.md};
|
|
`,
|
|
};
|
|
});
|