1234567891011121314151617181920212223242526272829303132333435 |
- import type {ComponentProps} from 'react';
- import Feature from 'sentry/components/acl/feature';
- import {Alert} from 'sentry/components/alert';
- import * as Layout from 'sentry/components/layouts/thirds';
- import {t} from 'sentry/locale';
- import useOrganization from 'sentry/utils/useOrganization';
- import GroupReplays from './groupReplays';
- type Props = ComponentProps<typeof GroupReplays>;
- function renderNoAccess() {
- return (
- <Layout.Page withPadding>
- <Alert type="warning">{t("You don't have access to this feature")}</Alert>
- </Layout.Page>
- );
- }
- function GroupReplaysContainer(props: Props) {
- const organization = useOrganization();
- return (
- <Feature
- features="session-replay"
- organization={organization}
- renderDisabled={renderNoAccess}
- >
- <GroupReplays {...props} />
- </Feature>
- );
- }
- export default GroupReplaysContainer;
|