mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 21:32:14 +08:00

* i18n: removes useTranslate hook * chore: fix duplicate imports * chore: fix import sorting and hook dependencies
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { useEffect } from 'react';
|
|
|
|
import { Trans, t } from '@grafana/i18n';
|
|
import { ConfirmModal } from '@grafana/ui';
|
|
|
|
import { useDashboardRestore } from './useDashboardRestore';
|
|
export interface RevertDashboardModalProps {
|
|
hideModal: () => void;
|
|
id: number;
|
|
version: number;
|
|
}
|
|
|
|
export const RevertDashboardModal = ({ hideModal, id, version }: RevertDashboardModalProps) => {
|
|
// TODO: how should state.error be handled?
|
|
const { state, onRestoreDashboard } = useDashboardRestore(id, version);
|
|
|
|
useEffect(() => {
|
|
if (!state.loading && state.value) {
|
|
hideModal();
|
|
}
|
|
}, [state, hideModal]);
|
|
|
|
return (
|
|
<ConfirmModal
|
|
isOpen={true}
|
|
title={t('dashboard.revert-dashboard-modal.title-restore-version', 'Restore version')}
|
|
icon="history"
|
|
onDismiss={hideModal}
|
|
onConfirm={onRestoreDashboard}
|
|
body={
|
|
<p>
|
|
<Trans i18nKey="dashboard.revert-dashboard-modal.body-restore-version">
|
|
Are you sure you want to restore the dashboard to version {{ version }}? All unsaved changes will be lost.
|
|
</Trans>
|
|
</p>
|
|
}
|
|
confirmText={`Yes, restore to version ${version}`}
|
|
/>
|
|
);
|
|
};
|