UNPKG

@grafana/runtime

Version:
45 lines (42 loc) 1.16 kB
import { of, switchMap, catchError } from 'rxjs'; import { config } from '../config.mjs'; import { getBackendSrv } from '../services/backendSrv.mjs'; import { toDataQueryResponse } from './queryResponse.mjs'; function publicDashboardQueryHandler(request) { const { intervalMs, maxDataPoints, requestId, panelId, queryCachingTTL, range: { from: fromRange, to: toRange } } = request; if (!request.targets.length) { return of({ data: [] }); } const body = { intervalMs, maxDataPoints, queryCachingTTL, timeRange: { from: fromRange.valueOf().toString(), to: toRange.valueOf().toString(), timezone: request.timezone } }; return getBackendSrv().fetch({ url: `/api/public/dashboards/${config.publicDashboardAccessToken}/panels/${panelId}/query`, method: "POST", data: body, requestId }).pipe( switchMap((raw) => { return of(toDataQueryResponse(raw, request.targets)); }), catchError((err) => { return of(toDataQueryResponse(err)); }) ); } export { publicDashboardQueryHandler }; //# sourceMappingURL=publicDashboardQueryHandler.mjs.map