mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Chore: Remove angular dependency from backendSrv * Refactor: Naive soultion for logging out unauthorized users * Refactor: Restructures to different streams * Refactor: Restructures datasourceRequest * Refactor: Flipped back if statement * Refactor: Extracted getFromFetchStream * Refactor: Extracts toFailureStream operation * Refactor: Fixes issue when options.params contains arrays * Refactor: Fixes broken test (but we need a lot more) * Refactor: Adds explaining comments * Refactor: Adds latest RxJs version so cancellations work * Refactor: Cleans up the takeUntil code * Refactor: Adds tests for request function * Refactor: Separates into smaller functions * Refactor: Adds last error tests * Started to changed so we require getBackendSrv from the @grafana-runtime when applicable. * Using the getBackendSrv from @grafana/runtime. * Changed so we use the getBackendSrv from the @grafana-runtime when possible. * Fixed so Server Admin -> Orgs works again. * Removed unused dependency. * Fixed digest issues on the Server Admin -> Users page. * Fix: Fixes digest problems in Playlists * Fix: Fixes digest issues in VersionHistory * Tests: Fixes broken tests * Fix: Fixes digest issues in Alerting => Notification channels * Fixed digest issues on the Intive page. * Fixed so we run digest after password reset email sent. * Fixed digest issue when trying to sign up account. * Fixed so the Server Admin -> Edit Org works with backendSrv * Fixed so Server Admin -> Users works with backend srv. * Fixed digest issues in Server Admin -> Orgs * Fix: Fixes digest issues in DashList plugin * Fixed digest issues on Server Admin -> users. * Fix: Fixes digest issues with Snapshots * Fixed digest issue when deleting a user. * Fix: Fixes digest issues with dashLink * Chore: Changes RxJs version to 6.5.4 which includes the same cancellation fix * Fix: Fixes digest issue when toggling folder in manage dashboards * Fix: Fixes bug in executeInOrder * Fix: Fixes digest issue with CreateFolderCtrl and FolderDashboardsCtrl * Fix: Fixes tslint error in test * Refactor: Changes default behaviour for emitted messages as before migration * Fix: Fixes various digest issues when saving, starring or deleting dashboards * Fix: Fixes digest issues with FolderPickerCtrl * Fixed digest issue. * Fixed digest issues. * Fixed issues with angular digest. * Removed the this.digest pattern. Co-authored-by: Hugo Häggmark <hugo.haggmark@gmail.com> Co-authored-by: Marcus Andersson <systemvetaren@gmail.com>
260 lines
8.3 KiB
TypeScript
260 lines
8.3 KiB
TypeScript
// Services & Utils
|
|
import { createErrorNotification } from 'app/core/copy/appNotification';
|
|
import { backendSrv } from 'app/core/services/backend_srv';
|
|
import { DashboardSrv } from 'app/features/dashboard/services/DashboardSrv';
|
|
import { DashboardLoaderSrv } from 'app/features/dashboard/services/DashboardLoaderSrv';
|
|
import { TimeSrv } from 'app/features/dashboard/services/TimeSrv';
|
|
import { AnnotationsSrv } from 'app/features/annotations/annotations_srv';
|
|
import { VariableSrv } from 'app/features/templating/variable_srv';
|
|
import { KeybindingSrv } from 'app/core/services/keybindingSrv';
|
|
|
|
// Actions
|
|
import { updateLocation } from 'app/core/actions';
|
|
import { notifyApp } from 'app/core/actions';
|
|
import locationUtil from 'app/core/utils/location_util';
|
|
import {
|
|
dashboardInitFetching,
|
|
dashboardInitCompleted,
|
|
dashboardInitFailed,
|
|
dashboardInitSlow,
|
|
dashboardInitServices,
|
|
clearDashboardQueriesToUpdate,
|
|
} from './actions';
|
|
|
|
// Types
|
|
import { DashboardRouteInfo, StoreState, ThunkDispatch, ThunkResult, DashboardDTO } from 'app/types';
|
|
import { DashboardModel } from './DashboardModel';
|
|
import { DataQuery } from '@grafana/data';
|
|
|
|
export interface InitDashboardArgs {
|
|
$injector: any;
|
|
$scope: any;
|
|
urlUid?: string;
|
|
urlSlug?: string;
|
|
urlType?: string;
|
|
urlFolderId?: string;
|
|
routeInfo: DashboardRouteInfo;
|
|
fixUrl: boolean;
|
|
}
|
|
|
|
async function redirectToNewUrl(slug: string, dispatch: ThunkDispatch, currentPath: string) {
|
|
const res = await backendSrv.getDashboardBySlug(slug);
|
|
|
|
if (res) {
|
|
let newUrl = res.meta.url;
|
|
|
|
// fix solo route urls
|
|
if (currentPath.indexOf('dashboard-solo') !== -1) {
|
|
newUrl = newUrl.replace('/d/', '/d-solo/');
|
|
}
|
|
|
|
const url = locationUtil.stripBaseFromUrl(newUrl);
|
|
dispatch(updateLocation({ path: url, partial: true, replace: true }));
|
|
}
|
|
}
|
|
|
|
async function fetchDashboard(
|
|
args: InitDashboardArgs,
|
|
dispatch: ThunkDispatch,
|
|
getState: () => StoreState
|
|
): Promise<DashboardDTO | null> {
|
|
try {
|
|
switch (args.routeInfo) {
|
|
case DashboardRouteInfo.Home: {
|
|
// load home dash
|
|
const dashDTO: DashboardDTO = await backendSrv.get('/api/dashboards/home');
|
|
|
|
// if user specified a custom home dashboard redirect to that
|
|
if (dashDTO.redirectUri) {
|
|
const newUrl = locationUtil.stripBaseFromUrl(dashDTO.redirectUri);
|
|
dispatch(updateLocation({ path: newUrl, replace: true }));
|
|
return null;
|
|
}
|
|
|
|
// disable some actions on the default home dashboard
|
|
dashDTO.meta.canSave = false;
|
|
dashDTO.meta.canShare = false;
|
|
dashDTO.meta.canStar = false;
|
|
return dashDTO;
|
|
}
|
|
case DashboardRouteInfo.Normal: {
|
|
// for old db routes we redirect
|
|
if (args.urlType === 'db') {
|
|
redirectToNewUrl(args.urlSlug, dispatch, getState().location.path);
|
|
return null;
|
|
}
|
|
|
|
const loaderSrv: DashboardLoaderSrv = args.$injector.get('dashboardLoaderSrv');
|
|
const dashDTO: DashboardDTO = await loaderSrv.loadDashboard(args.urlType, args.urlSlug, args.urlUid);
|
|
|
|
if (args.fixUrl && dashDTO.meta.url) {
|
|
// check if the current url is correct (might be old slug)
|
|
const dashboardUrl = locationUtil.stripBaseFromUrl(dashDTO.meta.url);
|
|
const currentPath = getState().location.path;
|
|
|
|
if (dashboardUrl !== currentPath) {
|
|
// replace url to not create additional history items and then return so that initDashboard below isn't executed multiple times.
|
|
dispatch(updateLocation({ path: dashboardUrl, partial: true, replace: true }));
|
|
return null;
|
|
}
|
|
}
|
|
return dashDTO;
|
|
}
|
|
case DashboardRouteInfo.New: {
|
|
return getNewDashboardModelData(args.urlFolderId);
|
|
}
|
|
default:
|
|
throw { message: 'Unknown route ' + args.routeInfo };
|
|
}
|
|
} catch (err) {
|
|
dispatch(dashboardInitFailed({ message: 'Failed to fetch dashboard', error: err }));
|
|
console.log(err);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This action (or saga) does everything needed to bootstrap a dashboard & dashboard model.
|
|
* First it handles the process of fetching the dashboard, correcting the url if required (causing redirects/url updates)
|
|
*
|
|
* This is used both for single dashboard & solo panel routes, home & new dashboard routes.
|
|
*
|
|
* Then it handles the initializing of the old angular services that the dashboard components & panels still depend on
|
|
*
|
|
*/
|
|
export function initDashboard(args: InitDashboardArgs): ThunkResult<void> {
|
|
return async (dispatch, getState) => {
|
|
// set fetching state
|
|
dispatch(dashboardInitFetching());
|
|
|
|
// Detect slow loading / initializing and set state flag
|
|
// This is in order to not show loading indication for fast loading dashboards as it creates blinking/flashing
|
|
setTimeout(() => {
|
|
if (getState().dashboard.model === null) {
|
|
dispatch(dashboardInitSlow());
|
|
}
|
|
}, 500);
|
|
|
|
// fetch dashboard data
|
|
const dashDTO = await fetchDashboard(args, dispatch, getState);
|
|
|
|
// returns null if there was a redirect or error
|
|
if (!dashDTO) {
|
|
return;
|
|
}
|
|
|
|
// set initializing state
|
|
dispatch(dashboardInitServices());
|
|
|
|
// create model
|
|
let dashboard: DashboardModel;
|
|
try {
|
|
dashboard = new DashboardModel(dashDTO.dashboard, dashDTO.meta);
|
|
} catch (err) {
|
|
dispatch(dashboardInitFailed({ message: 'Failed create dashboard model', error: err }));
|
|
console.log(err);
|
|
return;
|
|
}
|
|
|
|
// add missing orgId query param
|
|
const storeState = getState();
|
|
if (!storeState.location.query.orgId) {
|
|
dispatch(updateLocation({ query: { orgId: storeState.user.orgId }, partial: true, replace: true }));
|
|
}
|
|
|
|
// init services
|
|
const timeSrv: TimeSrv = args.$injector.get('timeSrv');
|
|
const annotationsSrv: AnnotationsSrv = args.$injector.get('annotationsSrv');
|
|
const variableSrv: VariableSrv = args.$injector.get('variableSrv');
|
|
const keybindingSrv: KeybindingSrv = args.$injector.get('keybindingSrv');
|
|
const unsavedChangesSrv = args.$injector.get('unsavedChangesSrv');
|
|
const dashboardSrv: DashboardSrv = args.$injector.get('dashboardSrv');
|
|
|
|
timeSrv.init(dashboard);
|
|
annotationsSrv.init(dashboard);
|
|
|
|
const { panelId, queries } = storeState.dashboard.modifiedQueries;
|
|
dashboard.meta.fromExplore = !!(panelId && queries);
|
|
|
|
// template values service needs to initialize completely before
|
|
// the rest of the dashboard can load
|
|
try {
|
|
await variableSrv.init(dashboard);
|
|
} catch (err) {
|
|
dispatch(notifyApp(createErrorNotification('Templating init failed', err)));
|
|
console.log(err);
|
|
}
|
|
|
|
try {
|
|
dashboard.processRepeats();
|
|
dashboard.updateSubmenuVisibility();
|
|
|
|
// handle auto fix experimental feature
|
|
const queryParams = getState().location.query;
|
|
if (queryParams.autofitpanels) {
|
|
dashboard.autoFitPanels(window.innerHeight, queryParams.kiosk);
|
|
}
|
|
|
|
// init unsaved changes tracking
|
|
unsavedChangesSrv.init(dashboard, args.$scope);
|
|
keybindingSrv.setupDashboardBindings(args.$scope, dashboard);
|
|
} catch (err) {
|
|
dispatch(notifyApp(createErrorNotification('Dashboard init failed', err)));
|
|
console.log(err);
|
|
}
|
|
|
|
if (dashboard.meta.fromExplore) {
|
|
updateQueriesWhenComingFromExplore(dispatch, dashboard, panelId, queries);
|
|
}
|
|
|
|
// legacy srv state
|
|
dashboardSrv.setCurrent(dashboard);
|
|
|
|
// yay we are done
|
|
dispatch(dashboardInitCompleted(dashboard));
|
|
};
|
|
}
|
|
|
|
function getNewDashboardModelData(urlFolderId?: string): any {
|
|
const data = {
|
|
meta: {
|
|
canStar: false,
|
|
canShare: false,
|
|
isNew: true,
|
|
folderId: 0,
|
|
},
|
|
dashboard: {
|
|
title: 'New dashboard',
|
|
panels: [
|
|
{
|
|
type: 'add-panel',
|
|
gridPos: { x: 0, y: 0, w: 12, h: 9 },
|
|
title: 'Panel Title',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
if (urlFolderId) {
|
|
data.meta.folderId = parseInt(urlFolderId, 10);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
function updateQueriesWhenComingFromExplore(
|
|
dispatch: ThunkDispatch,
|
|
dashboard: DashboardModel,
|
|
originPanelId: number,
|
|
queries: DataQuery[]
|
|
) {
|
|
const panelArrId = dashboard.panels.findIndex(panel => panel.id === originPanelId);
|
|
|
|
if (panelArrId > -1) {
|
|
dashboard.panels[panelArrId].targets = queries;
|
|
}
|
|
|
|
// Clear update state now that we're done
|
|
dispatch(clearDashboardQueriesToUpdate());
|
|
}
|