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