123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- import {
- addErrorMessage,
- addLoadingMessage,
- clearIndicators,
- } from 'sentry/actionCreators/indicator';
- import {Client} from 'sentry/api';
- import {t} from 'sentry/locale';
- import {logException} from 'sentry/utils/logging';
- import RequestError from 'sentry/utils/requestError/requestError';
- import {Monitor} from 'sentry/views/monitors/types';
- export async function deleteMonitor(api: Client, orgId: string, monitorSlug: string) {
- addLoadingMessage(t('Deleting Monitor...'));
- try {
- await api.requestPromise(`/organizations/${orgId}/monitors/${monitorSlug}/`, {
- method: 'DELETE',
- });
- clearIndicators();
- } catch {
- addErrorMessage(t('Unable to remove monitor.'));
- }
- }
- export async function deleteMonitorEnvironment(
- api: Client,
- orgId: string,
- monitorSlug: string,
- environment: string
- ): Promise<boolean> {
- addLoadingMessage(t('Deleting Environment...'));
- try {
- await api.requestPromise(`/organizations/${orgId}/monitors/${monitorSlug}/`, {
- method: 'DELETE',
- query: {
- environment,
- },
- });
- clearIndicators();
- return true;
- } catch {
- addErrorMessage(t('Unable to remove environment from monitor.'));
- }
- return false;
- }
- export async function updateMonitor(
- api: Client,
- orgId: string,
- monitorSlug: string,
- data: Partial<Monitor>
- ): Promise<Monitor | null> {
- addLoadingMessage();
- try {
- const resp = await api.requestPromise(
- `/organizations/${orgId}/monitors/${monitorSlug}/`,
- {method: 'PUT', data}
- );
- clearIndicators();
- return resp;
- } catch (err) {
- const respError: RequestError = err;
- const updateKeys = Object.keys(data);
- // If we are updating a single value in the monitor we can read the
- // validation error for that key, otherwise fallback to the default error
- const validationError =
- updateKeys.length === 1 ? respError.responseJSON?.[updateKeys[0]]?.[0] : undefined;
- logException(err);
- addErrorMessage(validationError ?? t('Unable to update monitor.'));
- }
- return null;
- }
- export async function setEnvironmentIsMuted(
- api: Client,
- orgId: string,
- monitorSlug: string,
- environment: string,
- isMuted: boolean
- ) {
- addLoadingMessage();
- try {
- const resp = await api.requestPromise(
- `/organizations/${orgId}/monitors/${monitorSlug}/environments/${environment}`,
- {method: 'PUT', data: {isMuted}}
- );
- clearIndicators();
- return resp;
- } catch (err) {
- logException(err);
- addErrorMessage(
- isMuted ? t('Unable to mute environment.') : t('Unable to unmute environment.')
- );
- }
- return null;
- }
|