mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import { Button, HorizontalGroup, Modal, VerticalGroup } from '@grafana/ui';
|
|
import { SaveDashboardButton } from './SaveDashboardButton';
|
|
import { DashboardModel } from '../../state';
|
|
import { css } from 'emotion';
|
|
|
|
interface UnsavedChangesModalProps {
|
|
dashboard: DashboardModel;
|
|
onDiscard: () => void;
|
|
onDismiss: () => void;
|
|
onSaveSuccess?: () => void;
|
|
}
|
|
|
|
export const UnsavedChangesModal: React.FC<UnsavedChangesModalProps> = ({
|
|
dashboard,
|
|
onSaveSuccess,
|
|
onDiscard,
|
|
onDismiss,
|
|
}) => {
|
|
return (
|
|
<Modal
|
|
isOpen={true}
|
|
title="Unsaved changes"
|
|
onDismiss={onDismiss}
|
|
icon="exclamation-triangle"
|
|
className={css`
|
|
width: 500px;
|
|
`}
|
|
>
|
|
<VerticalGroup align={'center'} spacing={'md'}>
|
|
<h4>Do you want to save your changes?</h4>
|
|
<HorizontalGroup justify="center">
|
|
<SaveDashboardButton dashboard={dashboard} onSaveSuccess={onSaveSuccess} />
|
|
<Button
|
|
variant="destructive"
|
|
onClick={() => {
|
|
onDiscard();
|
|
onDismiss();
|
|
}}
|
|
>
|
|
Discard
|
|
</Button>
|
|
<Button variant="secondary" onClick={onDismiss}>
|
|
Cancel
|
|
</Button>
|
|
</HorizontalGroup>
|
|
</VerticalGroup>
|
|
</Modal>
|
|
);
|
|
};
|