123456789101112131415161718192021222324252627282930313233343536373839 |
- import Feature from 'sentry/components/acl/feature';
- import FeatureDisabled from 'sentry/components/acl/featureDisabled';
- import {t} from 'sentry/locale';
- import type {Organization} from 'sentry/types';
- import Trace from 'sentry/views/replays/detail/trace/trace';
- import type {ReplayRecord} from 'sentry/views/replays/types';
- type Props = {
- organization: Organization;
- replayRecord: undefined | ReplayRecord;
- };
- const features = ['organizations:performance-view'];
- function PerfDisabled() {
- return (
- <FeatureDisabled
- featureName={t('Performance Monitoring')}
- features={features}
- hideHelpToggle
- message={t('Requires performance monitoring.')}
- />
- );
- }
- function TraceFeature({organization, replayRecord}: Props) {
- return (
- <Feature
- features={features}
- hookName={undefined}
- organization={organization}
- renderDisabled={PerfDisabled}
- >
- <Trace replayRecord={replayRecord} />
- </Feature>
- );
- }
- export default TraceFeature;
|