123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- import {useState} from 'react';
- import styled from '@emotion/styled';
- import partition from 'lodash/partition';
- import {CompactSelect} from 'sentry/components/compactSelect';
- import {PlatformKey} from 'sentry/data/platformCategories';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {ProjectKey} from 'sentry/types';
- import {useApiQuery} from 'sentry/utils/queryClient';
- import useOrganization from 'sentry/utils/useOrganization';
- import {
- CLICronQuickStart,
- CurlCronQuickStart,
- NodeJSCronQuickStart,
- PHPCronQuickStart,
- PHPLaravelCronQuickStart,
- PythonCeleryCronQuickStart,
- PythonCronQuickStart,
- QuickStartProps,
- } from 'sentry/views/monitors/components/quickStartEntries';
- import {Monitor} from '../types';
- interface Props {
- monitor: Monitor;
- }
- interface OnboardingGuide {
- Guide: React.ComponentType<QuickStartProps>;
- label: string;
- platforms?: Set<PlatformKey>;
- }
- const onboardingGuides: Record<string, OnboardingGuide> = {
- cli: {
- label: 'Sentry CLI',
- Guide: CLICronQuickStart,
- },
- curl: {
- label: 'cURL',
- Guide: CurlCronQuickStart,
- },
- python: {
- label: 'Python',
- Guide: PythonCronQuickStart,
- platforms: new Set([
- 'python',
- 'python-django',
- 'python-flask',
- 'python-fastapi',
- 'python-starlette',
- 'python-sanic',
- 'python-bottle',
- 'python-pylons',
- 'python-pyramid',
- 'python-tornado',
- 'python-rq',
- ]),
- },
- pythonCelery: {
- label: 'Celery',
- Guide: PythonCeleryCronQuickStart,
- platforms: new Set(['python-celery']),
- },
- php: {
- label: 'PHP',
- Guide: PHPCronQuickStart,
- platforms: new Set(['php', 'php-monolog', 'php-symfony2']),
- },
- phpLaravel: {
- label: 'Laravel',
- Guide: PHPLaravelCronQuickStart,
- platforms: new Set(['php-laravel']),
- },
- nodeJs: {
- label: 'Node',
- Guide: NodeJSCronQuickStart,
- platforms: new Set(['node']),
- },
- };
- const guideToSelectOption = ({key, label}) => ({label, value: key});
- export default function MonitorQuickStartGuide({monitor}: Props) {
- const org = useOrganization();
- const {data: projectKeys} = useApiQuery<Array<ProjectKey>>(
- [`/projects/${org.slug}/${monitor.project.slug}/keys/`],
- {staleTime: Infinity}
- );
- const guideList = Object.entries(onboardingGuides).map(([key, guide]) => ({
- ...guide,
- key,
- }));
- const [genericGuides, platformGuides] = partition(
- guideList,
- guide => guide.platforms === undefined
- );
- const exampleOptions = [
- {label: t('Platform Specfiic'), options: platformGuides.map(guideToSelectOption)},
- {label: t('Generic'), options: genericGuides.map(guideToSelectOption)},
- ];
- const platformSpecific = platformGuides.filter(guide =>
- guide.platforms?.has(monitor.project.platform ?? 'other')
- );
- const defaultExample = platformSpecific.length > 0 ? platformSpecific[0].key : 'cli';
- const [selectedGuide, setSelectedGuide] = useState(defaultExample);
- const {Guide} = onboardingGuides[selectedGuide];
- return (
- <Container>
- <CompactSelect
- options={exampleOptions}
- value={selectedGuide}
- onChange={({value}) => setSelectedGuide(value)}
- />
- <Guide
- slug={monitor.slug}
- orgSlug={org.slug}
- orgId={org.id}
- projectId={monitor.project.id}
- publicKey={projectKeys?.[0].public}
- dsnKey={projectKeys?.[0].dsn.public}
- />
- </Container>
- );
- }
- const Container = styled('div')`
- display: flex;
- flex-direction: column;
- gap: ${space(2)};
- `;
|