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/dashboard-scene/saving/useSaveDashboard.ts

88 lines
3.0 KiB

import { useAsyncFn } from 'react-use';
import { locationUtil } from '@grafana/data';
import { locationService, reportInteraction } from '@grafana/runtime';
import { Dashboard } from '@grafana/schema';
import appEvents from 'app/core/app_events';
import { useAppNotification } from 'app/core/copy/appNotification';
import { updateDashboardName } from 'app/core/reducers/navBarTree';
import { useSaveDashboardMutation } from 'app/features/browse-dashboards/api/browseDashboardsAPI';
import { SaveDashboardOptions } from 'app/features/dashboard/components/SaveDashboard/types';
import { useDispatch } from 'app/types';
import { DashboardSavedEvent } from 'app/types/events';
import { updateDashboardUidLastUsedDatasource } from '../../dashboard/utils/dashboard';
import { DashboardScene } from '../scene/DashboardScene';
export function useSaveDashboard(isCopy = false) {
const dispatch = useDispatch();
const notifyApp = useAppNotification();
const [saveDashboardRtkQuery] = useSaveDashboardMutation();
const [state, onSaveDashboard] = useAsyncFn(
async (scene: DashboardScene, saveModel: Dashboard, options: SaveDashboardOptions) => {
{
const result = await saveDashboardRtkQuery({
dashboard: saveModel,
folderUid: options.folderUid,
message: options.message,
overwrite: options.overwrite,
showErrorAlert: false,
});
if ('error' in result) {
throw result.error;
}
const resultData = result.data;
scene.saveCompleted(saveModel, resultData, options.folderUid);
// important that these happen before location redirect below
appEvents.publish(new DashboardSavedEvent());
notifyApp.success('Dashboard saved');
//Update local storage dashboard to handle things like last used datasource
updateDashboardUidLastUsedDatasource(resultData.uid);
if (isCopy) {
reportInteraction('grafana_dashboard_copied', {
name: saveModel.title,
url: resultData.url,
});
} else {
reportInteraction(`grafana_dashboard_${resultData.uid ? 'saved' : 'created'}`, {
name: saveModel.title,
url: resultData.url,
});
}
const currentLocation = locationService.getLocation();
const newUrl = locationUtil.stripBaseFromUrl(resultData.url);
if (newUrl !== currentLocation.pathname) {
setTimeout(() => {
// Because the path changes we need to stop and restart url sync
scene.stopUrlSync();
locationService.push({ pathname: newUrl, search: currentLocation.search });
scene.startUrlSync();
});
}
if (scene.state.meta.isStarred) {
dispatch(
updateDashboardName({
id: resultData.uid,
title: scene.state.title,
url: newUrl,
})
);
}
return result.data;
}
},
[dispatch, notifyApp]
);
return { state, onSaveDashboard };
}