123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- import omit from 'lodash/omit';
- import {addErrorMessage} from 'sentry/actionCreators/indicator';
- import {Client} from 'sentry/api';
- import {ALL_ACCESS_PROJECTS} from 'sentry/constants/pageFilters';
- import {t} from 'sentry/locale';
- import PageFiltersStore from 'sentry/stores/pageFiltersStore';
- import {DashboardDetails, DashboardListItem, Widget} from 'sentry/views/dashboards/types';
- import {flattenErrors} from 'sentry/views/dashboards/utils';
- export function fetchDashboards(api: Client, orgSlug: string) {
- const promise: Promise<DashboardListItem[]> = api.requestPromise(
- `/organizations/${orgSlug}/dashboards/`,
- {
- method: 'GET',
- query: {sort: 'myDashboardsAndRecentlyViewed'},
- }
- );
- promise.catch(response => {
- const errorResponse = response?.responseJSON ?? null;
- if (errorResponse) {
- const errors = flattenErrors(errorResponse, {});
- addErrorMessage(errors[Object.keys(errors)[0]]);
- } else {
- addErrorMessage(t('Unable to fetch dashboards'));
- }
- });
- return promise;
- }
- export function createDashboard(
- api: Client,
- orgId: string,
- newDashboard: DashboardDetails,
- duplicate?: boolean
- ): Promise<DashboardDetails> {
- const {title, widgets, projects, environment, period, start, end, filters, utc} =
- newDashboard;
- const promise: Promise<DashboardDetails> = api.requestPromise(
- `/organizations/${orgId}/dashboards/`,
- {
- method: 'POST',
- data: {
- title,
- widgets: widgets.map(widget => omit(widget, ['tempId'])),
- duplicate,
- projects,
- environment,
- period,
- start,
- end,
- filters,
- utc,
- },
- query: {
- project: projects,
- environment,
- },
- }
- );
- promise.catch(response => {
- const errorResponse = response?.responseJSON ?? null;
- if (errorResponse) {
- const errors = flattenErrors(errorResponse, {});
- addErrorMessage(errors[Object.keys(errors)[0]]);
- } else {
- addErrorMessage(t('Unable to create dashboard'));
- }
- });
- return promise;
- }
- export function updateDashboardVisit(
- api: Client,
- orgId: string,
- dashboardId: string | string[]
- ): Promise<void> {
- const promise = api.requestPromise(
- `/organizations/${orgId}/dashboards/${dashboardId}/visit/`,
- {
- method: 'POST',
- }
- );
- return promise;
- }
- export function fetchDashboard(
- api: Client,
- orgId: string,
- dashboardId: string
- ): Promise<DashboardDetails> {
- const promise: Promise<DashboardDetails> = api.requestPromise(
- `/organizations/${orgId}/dashboards/${dashboardId}/`,
- {
- method: 'GET',
- }
- );
- promise.catch(response => {
- const errorResponse = response?.responseJSON ?? null;
- if (errorResponse) {
- const errors = flattenErrors(errorResponse, {});
- addErrorMessage(errors[Object.keys(errors)[0]]);
- } else {
- addErrorMessage(t('Unable to load dashboard'));
- }
- });
- return promise;
- }
- export function updateDashboard(
- api: Client,
- orgId: string,
- dashboard: DashboardDetails
- ): Promise<DashboardDetails> {
- const {title, widgets, projects, environment, period, start, end, filters, utc} =
- dashboard;
- const data = {
- title,
- widgets: widgets.map(widget => omit(widget, ['tempId'])),
- projects,
- environment,
- period,
- start,
- end,
- filters,
- utc,
- };
- const promise: Promise<DashboardDetails> = api.requestPromise(
- `/organizations/${orgId}/dashboards/${dashboard.id}/`,
- {
- method: 'PUT',
- data,
- query: {
- project: projects,
- environment,
- },
- }
- );
- // We let the callers of `updateDashboard` handle adding a success message, so
- // that it can be more specific than just "Dashboard updated," but do the
- // error-handling here, since it doesn't depend on the caller's context
- promise.catch(response => {
- const errorResponse = response?.responseJSON ?? null;
- if (errorResponse) {
- const errors = flattenErrors(errorResponse, {});
- addErrorMessage(errors[Object.keys(errors)[0]]);
- } else {
- addErrorMessage(t('Unable to update dashboard'));
- }
- });
- return promise;
- }
- export function deleteDashboard(
- api: Client,
- orgId: string,
- dashboardId: string
- ): Promise<undefined> {
- const promise: Promise<undefined> = api.requestPromise(
- `/organizations/${orgId}/dashboards/${dashboardId}/`,
- {
- method: 'DELETE',
- }
- );
- promise.catch(response => {
- const errorResponse = response?.responseJSON ?? null;
- if (errorResponse) {
- const errors = flattenErrors(errorResponse, {});
- addErrorMessage(errors[Object.keys(errors)[0]]);
- } else {
- addErrorMessage(t('Unable to delete dashboard'));
- }
- });
- return promise;
- }
- export function validateWidget(
- api: Client,
- orgId: string,
- widget: Widget
- ): Promise<undefined> {
- const {selection} = PageFiltersStore.getState();
- const promise: Promise<undefined> = api.requestPromise(
- `/organizations/${orgId}/dashboards/widgets/`,
- {
- method: 'POST',
- data: widget,
- query: {
- // TODO: This should be replaced in the future with projects
- // when we save Dashboard page filters. This is being sent to
- // bypass validation when creating or updating dashboards
- project: [ALL_ACCESS_PROJECTS],
- environment: selection.environments,
- },
- }
- );
- return promise;
- }
|