123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- import {Fragment, useContext, useEffect, useRef} from 'react';
- import {browserHistory} from 'react-router';
- import {css} from '@emotion/react';
- import styled from '@emotion/styled';
- import {Observer} from 'mobx-react';
- import NumberField from 'sentry/components/forms/fields/numberField';
- import SelectField from 'sentry/components/forms/fields/selectField';
- import SentryProjectSelectorField from 'sentry/components/forms/fields/sentryProjectSelectorField';
- import TextField from 'sentry/components/forms/fields/textField';
- import Form from 'sentry/components/forms/form';
- import FormContext from 'sentry/components/forms/formContext';
- import FormModel, {FieldValue} from 'sentry/components/forms/model';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import Placeholder from 'sentry/components/placeholder';
- import {timezoneOptions} from 'sentry/data/timezones';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {isActiveSuperuser} from 'sentry/utils/isActiveSuperuser';
- import {useApiQuery} from 'sentry/utils/queryClient';
- import commonTheme from 'sentry/utils/theme';
- import {useDimensions} from 'sentry/utils/useDimensions';
- import useOrganization from 'sentry/utils/useOrganization';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import useProjects from 'sentry/utils/useProjects';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import {
- DEFAULT_CRONTAB,
- DEFAULT_MONITOR_TYPE,
- mapMonitorFormErrors,
- transformMonitorFormData,
- } from 'sentry/views/monitors/components/monitorForm';
- import {MockCheckInTimeline} from 'sentry/views/monitors/components/overviewTimeline/checkInTimeline';
- import {
- GridLineOverlay,
- GridLineTimeLabels,
- } from 'sentry/views/monitors/components/overviewTimeline/gridLines';
- import {TimelinePlaceholder} from 'sentry/views/monitors/components/overviewTimeline/timelinePlaceholder';
- import {getConfigFromTimeRange} from 'sentry/views/monitors/components/overviewTimeline/utils';
- import {Monitor, ScheduleType} from 'sentry/views/monitors/types';
- import {crontabAsText, getScheduleIntervals} from 'sentry/views/monitors/utils';
- const NUM_SAMPLE_TICKS = 9;
- interface ScheduleConfig {
- cronSchedule?: FieldValue;
- intervalFrequency?: FieldValue;
- intervalUnit?: FieldValue;
- scheduleType?: FieldValue;
- }
- function isValidConfig(schedule: ScheduleConfig) {
- const {scheduleType, cronSchedule, intervalFrequency, intervalUnit} = schedule;
- return !!(
- (scheduleType === ScheduleType.CRONTAB && cronSchedule) ||
- (scheduleType === ScheduleType.INTERVAL && intervalFrequency && intervalUnit)
- );
- }
- const DEFAULT_SCHEDULE_CONFIG = {
- scheduleType: 'crontab',
- cronSchedule: DEFAULT_CRONTAB,
- intervalFrequency: '1',
- intervalUnit: 'day',
- };
- interface Props {
- schedule: ScheduleConfig;
- }
- function MockTimelineVisualization({schedule}: Props) {
- const {scheduleType, cronSchedule, intervalFrequency, intervalUnit} = schedule;
- const organization = useOrganization();
- const {form} = useContext(FormContext);
- const query = {
- num_ticks: NUM_SAMPLE_TICKS,
- schedule_type: scheduleType,
- schedule:
- scheduleType === 'interval' ? [intervalFrequency, intervalUnit] : cronSchedule,
- };
- const elementRef = useRef<HTMLDivElement>(null);
- const {width: timelineWidth} = useDimensions<HTMLDivElement>({elementRef});
- const sampleDataQueryKey = [
- `/organizations/${organization.slug}/monitors-schedule-data/`,
- {query},
- ] as const;
- const {data, isLoading, isError, error} = useApiQuery<number[]>(sampleDataQueryKey, {
- staleTime: 0,
- enabled: isValidConfig(schedule),
- retry: false,
- });
- const errorMessage =
- isError || !isValidConfig(schedule)
- ? error?.responseJSON?.schedule?.[0] ?? t('Invalid Schedule')
- : null;
- useEffect(() => {
- if (!form) {
- return;
- }
- if (scheduleType === ScheduleType.INTERVAL) {
- form.setError('config.schedule.frequency', errorMessage);
- } else if (scheduleType === ScheduleType.CRONTAB) {
- form.setError('config.schedule', errorMessage);
- }
- }, [errorMessage, form, scheduleType]);
- const mockTimestamps = data?.map(ts => new Date(ts * 1000));
- const start = mockTimestamps?.[0];
- const end = mockTimestamps?.[mockTimestamps.length - 1];
- const timeWindowConfig =
- start && end ? getConfigFromTimeRange(start, end, timelineWidth) : undefined;
- return (
- <TimelineContainer>
- <TimelineWidthTracker ref={elementRef} />
- {isLoading || !start || !end || !timeWindowConfig || !mockTimestamps ? (
- <Fragment>
- <Placeholder height="40px" />
- {errorMessage ? <Placeholder height="100px" /> : <TimelinePlaceholder />}
- </Fragment>
- ) : (
- <Fragment>
- <StyledGridLineTimeLabels
- timeWindowConfig={timeWindowConfig}
- start={start}
- end={end}
- width={timelineWidth}
- />
- <StyledGridLineOverlay
- showCursor={!isLoading}
- timeWindowConfig={timeWindowConfig}
- start={start}
- end={end}
- width={timelineWidth}
- />
- <MockCheckInTimeline
- width={timelineWidth}
- mockTimestamps={mockTimestamps.slice(1, mockTimestamps.length - 1)}
- start={start}
- end={end}
- timeWindowConfig={timeWindowConfig}
- />
- </Fragment>
- )}
- </TimelineContainer>
- );
- }
- const TimelineContainer = styled(Panel)`
- display: grid;
- grid-template-columns: 1fr;
- grid-template-rows: 40px 100px;
- align-items: center;
- `;
- const StyledGridLineTimeLabels = styled(GridLineTimeLabels)`
- grid-column: 0;
- `;
- const StyledGridLineOverlay = styled(GridLineOverlay)`
- grid-column: 0;
- `;
- const TimelineWidthTracker = styled('div')`
- position: absolute;
- width: 100%;
- grid-row: 1;
- grid-column: 0;
- `;
- export default function MonitorCreateForm() {
- const organization = useOrganization();
- const {projects} = useProjects();
- const {selection} = usePageFilters();
- const form = useRef(
- new FormModel({
- transformData: transformMonitorFormData,
- mapFormErrors: mapMonitorFormErrors,
- })
- );
- const selectedProjectId = selection.projects[0];
- const selectedProject = selectedProjectId
- ? projects.find(p => p.id === selectedProjectId + '')
- : null;
- const isSuperuser = isActiveSuperuser();
- const filteredProjects = projects.filter(project => isSuperuser || project.isMember);
- function onCreateMonitor(data: Monitor) {
- const endpointOptions = {
- query: {
- project: selection.projects,
- environment: selection.environments,
- },
- };
- browserHistory.push(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/crons/${data.slug}/`,
- query: endpointOptions.query,
- })
- );
- }
- function changeScheduleType(type: ScheduleType) {
- form.current.setValue('config.schedule_type', type);
- }
- return (
- <Form
- allowUndo
- requireChanges
- apiEndpoint={`/organizations/${organization.slug}/monitors/`}
- apiMethod="POST"
- model={form.current}
- initialData={{
- project: selectedProject ? selectedProject.slug : null,
- type: DEFAULT_MONITOR_TYPE,
- 'config.schedule_type': DEFAULT_SCHEDULE_CONFIG.scheduleType,
- }}
- onSubmitSuccess={onCreateMonitor}
- submitLabel={t('Next')}
- >
- <FieldContainer>
- <MultiColumnInput columns="250px 1fr">
- <StyledSentryProjectSelectorField
- name="project"
- projects={filteredProjects}
- placeholder={t('Choose Project')}
- disabledReason={t('Existing monitors cannot be moved between projects')}
- valueIsSlug
- required
- stacked
- inline={false}
- />
- <StyledTextField
- name="name"
- placeholder={t('My Cron Job')}
- required
- stacked
- inline={false}
- />
- </MultiColumnInput>
- <LabelText>{t('SCHEDULE')}</LabelText>
- <ScheduleOptions>
- <Observer>
- {() => {
- const currScheduleType = form.current.getValue('config.schedule_type');
- const selectedCrontab = currScheduleType === ScheduleType.CRONTAB;
- const parsedSchedule = form.current.getError('config.schedule')
- ? ''
- : crontabAsText(
- form.current.getValue('config.schedule')?.toString() ?? ''
- );
- return (
- <Fragment>
- <SchedulePanel
- highlighted={selectedCrontab}
- onClick={() => changeScheduleType(ScheduleType.CRONTAB)}
- >
- <PanelBody withPadding>
- <ScheduleLabel>{t('Crontab Schedule')}</ScheduleLabel>
- <MultiColumnInput columns="1fr 1fr">
- <StyledTextField
- name="config.schedule"
- placeholder="* * * * *"
- defaultValue={DEFAULT_SCHEDULE_CONFIG.cronSchedule}
- css={{input: {fontFamily: commonTheme.text.familyMono}}}
- required={selectedCrontab}
- stacked
- inline={false}
- hideControlState={!selectedCrontab}
- />
- <StyledSelectField
- name="config.timezone"
- defaultValue="UTC"
- options={timezoneOptions}
- required={selectedCrontab}
- stacked
- inline={false}
- />
- <CronstrueText>{parsedSchedule}</CronstrueText>
- </MultiColumnInput>
- </PanelBody>
- </SchedulePanel>
- <SchedulePanel
- highlighted={!selectedCrontab}
- onClick={() => changeScheduleType(ScheduleType.INTERVAL)}
- >
- <PanelBody withPadding>
- <ScheduleLabel>{t('Interval Schedule')}</ScheduleLabel>
- <MultiColumnInput columns="auto 1fr 2fr">
- <Label>{t('Every')}</Label>
- <StyledNumberField
- name="config.schedule.frequency"
- placeholder="e.g. 1"
- defaultValue={DEFAULT_SCHEDULE_CONFIG.intervalFrequency}
- required={!selectedCrontab}
- stacked
- inline={false}
- hideControlState={selectedCrontab}
- />
- <StyledSelectField
- name="config.schedule.interval"
- options={getScheduleIntervals(
- Number(
- form.current.getValue('config.schedule.frequency') ?? 1
- )
- )}
- defaultValue={DEFAULT_SCHEDULE_CONFIG.intervalUnit}
- required={!selectedCrontab}
- stacked
- inline={false}
- />
- </MultiColumnInput>
- </PanelBody>
- </SchedulePanel>
- </Fragment>
- );
- }}
- </Observer>
- </ScheduleOptions>
- <Observer>
- {() => {
- const scheduleType = form.current.getValue('config.schedule_type');
- const cronSchedule = form.current.getValue('config.schedule');
- const intervalFrequency = form.current.getValue('config.schedule.frequency');
- const intervalUnit = form.current.getValue('config.schedule.interval');
- const schedule = {
- scheduleType,
- cronSchedule,
- intervalFrequency,
- intervalUnit,
- };
- return <MockTimelineVisualization schedule={schedule} />;
- }}
- </Observer>
- </FieldContainer>
- </Form>
- );
- }
- const FieldContainer = styled('div')`
- width: 800px;
- `;
- const SchedulePanel = styled(Panel)<{highlighted: boolean}>`
- border-radius: 0 ${space(0.75)} ${space(0.75)} 0;
- ${p =>
- p.highlighted &&
- css`
- border: 2px solid ${p.theme.purple300};
- `};
- &:first-child {
- border-radius: ${space(0.75)} 0 0 ${space(0.75)};
- }
- `;
- const ScheduleLabel = styled('div')`
- font-weight: bold;
- margin-bottom: ${space(2)};
- `;
- const Label = styled('div')`
- font-weight: bold;
- color: ${p => p.theme.subText};
- `;
- const LabelText = styled(Label)`
- margin-top: ${space(2)};
- margin-bottom: ${space(1)};
- `;
- const ScheduleOptions = styled('div')`
- display: grid;
- grid-template-columns: 1fr 1fr;
- `;
- const MultiColumnInput = styled('div')<{columns?: string}>`
- display: grid;
- align-items: center;
- gap: ${space(1)};
- grid-template-columns: ${p => p.columns};
- `;
- const CronstrueText = styled(LabelText)`
- font-weight: normal;
- font-size: ${p => p.theme.fontSizeExtraSmall};
- font-family: ${p => p.theme.text.familyMono};
- grid-column: auto / span 2;
- `;
- const StyledNumberField = styled(NumberField)`
- padding: 0;
- `;
- const StyledSelectField = styled(SelectField)`
- padding: 0;
- `;
- const StyledTextField = styled(TextField)`
- padding: 0;
- `;
- const StyledSentryProjectSelectorField = styled(SentryProjectSelectorField)`
- padding: 0;
- `;
|