12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import {browserHistory} from 'react-router';
- import {deleteMonitor, updateMonitor} from 'sentry/actionCreators/monitors';
- import {Button} from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import Confirm from 'sentry/components/confirm';
- import FeedbackWidgetButton from 'sentry/components/feedback/widget/feedbackWidgetButton';
- import {IconDelete, IconEdit, IconSubscribed, IconUnsubscribed} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import useApi from 'sentry/utils/useApi';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import {Monitor} from '../types';
- import {StatusToggleButton} from './statusToggleButton';
- type Props = {
- monitor: Monitor;
- onUpdate: (data: Monitor) => void;
- orgId: string;
- };
- function MonitorHeaderActions({monitor, orgId, onUpdate}: Props) {
- const api = useApi();
- const {selection} = usePageFilters();
- const endpointOptions = {
- query: {
- project: selection.projects,
- environment: selection.environments,
- },
- };
- const handleDelete = async () => {
- await deleteMonitor(api, orgId, monitor.slug);
- browserHistory.push(
- normalizeUrl({
- pathname: `/organizations/${orgId}/crons/`,
- query: endpointOptions.query,
- })
- );
- };
- const handleUpdate = async (data: Partial<Monitor>) => {
- const resp = await updateMonitor(api, orgId, monitor.slug, data);
- onUpdate?.(resp);
- };
- const toggleMute = () => handleUpdate({isMuted: !monitor.isMuted});
- const toggleStatus = () =>
- handleUpdate({status: monitor.status === 'active' ? 'disabled' : 'active'});
- return (
- <ButtonBar gap={1}>
- <FeedbackWidgetButton />
- <Button
- size="sm"
- icon={monitor.isMuted ? <IconSubscribed /> : <IconUnsubscribed />}
- onClick={toggleMute}
- >
- {monitor.isMuted ? t('Unmute') : t('Mute')}
- </Button>
- <StatusToggleButton size="sm" onClick={toggleStatus} monitor={monitor} />
- <Confirm
- onConfirm={handleDelete}
- message={t('Are you sure you want to permanently delete this cron monitor?')}
- >
- <Button size="sm" icon={<IconDelete size="xs" />} aria-label={t('Delete')} />
- </Confirm>
- <Button
- priority="primary"
- size="sm"
- icon={<IconEdit />}
- to={{
- pathname: `/organizations/${orgId}/crons/${monitor.slug}/edit/`,
- // TODO(davidenwang): Right now we have to pass the environment
- // through the URL so that when we save the monitor and are
- // redirected back to the details page it queries the backend
- // for a monitor environment with check-in data
- query: {
- environment: selection.environments,
- project: selection.projects,
- },
- }}
- >
- {t('Edit')}
- </Button>
- </ButtonBar>
- );
- }
- export default MonitorHeaderActions;
|