1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import {navigateTo} from 'sentry/actionCreators/navigation';
- import Feature from 'sentry/components/acl/feature';
- import {Button} from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import FeatureTourModal from 'sentry/components/modals/featureTourModal';
- import {t} from 'sentry/locale';
- import {Organization} from 'sentry/types';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import useRouter from 'sentry/utils/useRouter';
- import {PERFORMANCE_TOUR_STEPS} from 'sentry/views/performance/onboarding';
- const DOCS_URL = 'https://docs.sentry.io/performance-monitoring/getting-started/';
- type Props = {
- organization: Organization;
- };
- function MissingPerformanceButtons({organization}: Props) {
- const router = useRouter();
- function handleTourAdvance(step: number, duration: number) {
- trackAnalytics('project_detail.performance_tour.advance', {
- organization,
- step,
- duration,
- });
- }
- function handleClose(step: number, duration: number) {
- trackAnalytics('project_detail.performance_tour.close', {
- organization,
- step,
- duration,
- });
- }
- return (
- <Feature
- hookName="feature-disabled:project-performance-score-card"
- features="performance-view"
- organization={organization}
- >
- <ButtonBar gap={1}>
- <Button
- size="sm"
- priority="primary"
- onClick={event => {
- event.preventDefault();
- // TODO: add analytics here for this specific action.
- navigateTo(
- `/organizations/${organization.slug}/performance/?project=:project#performance-sidequest`,
- router
- );
- }}
- >
- {t('Start Setup')}
- </Button>
- <FeatureTourModal
- steps={PERFORMANCE_TOUR_STEPS}
- onAdvance={handleTourAdvance}
- onCloseModal={handleClose}
- doneText={t('Start Setup')}
- doneUrl={DOCS_URL}
- >
- {({showModal}) => (
- <Button size="sm" onClick={showModal}>
- {t('Get Tour')}
- </Button>
- )}
- </FeatureTourModal>
- </ButtonBar>
- </Feature>
- );
- }
- export default MissingPerformanceButtons;
|