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.
33 lines
1.3 KiB
33 lines
1.3 KiB
import { useEffect } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import { useAsyncFn } from 'react-use';
|
|
import { AppEvents, locationUtil } from '@grafana/data';
|
|
import appEvents from 'app/core/app_events';
|
|
import { StoreState } from 'app/types';
|
|
import { historySrv } from './HistorySrv';
|
|
import { DashboardModel } from '../../state';
|
|
import { locationService } from '@grafana/runtime';
|
|
|
|
const restoreDashboard = async (version: number, dashboard: DashboardModel) => {
|
|
return await historySrv.restoreDashboard(dashboard, version);
|
|
};
|
|
|
|
export const useDashboardRestore = (version: number) => {
|
|
const dashboard = useSelector((state: StoreState) => state.dashboard.getModel());
|
|
const [state, onRestoreDashboard] = useAsyncFn(async () => await restoreDashboard(version, dashboard!), []);
|
|
|
|
useEffect(() => {
|
|
if (state.value) {
|
|
const location = locationService.getLocation();
|
|
const newUrl = locationUtil.stripBaseFromUrl(state.value.url);
|
|
const prevState = (location.state as any)?.routeReloadCounter;
|
|
locationService.replace({
|
|
...location,
|
|
pathname: newUrl,
|
|
state: { routeReloadCounter: prevState ? prevState + 1 : 1 },
|
|
});
|
|
appEvents.emit(AppEvents.alertSuccess, ['Dashboard restored', 'Restored from version ' + version]);
|
|
}
|
|
}, [state, version]);
|
|
return { state, onRestoreDashboard };
|
|
};
|
|
|