12345678910111213141516171819202122232425262728293031323334 |
- import Feature from 'sentry/components/acl/feature';
- import Alert from 'sentry/components/alert';
- import {t} from 'sentry/locale';
- import {PageContent} from 'sentry/styles/organization';
- import {Organization} from 'sentry/types';
- import withOrganization from 'sentry/utils/withOrganization';
- type Props = {
- children: React.ReactChildren;
- organization: Organization;
- };
- function DiscoverContainer({organization, children}: Props) {
- function renderNoAccess() {
- return (
- <PageContent>
- <Alert type="warning">{t("You don't have access to this feature")}</Alert>
- </PageContent>
- );
- }
- return (
- <Feature
- features={['discover-basic']}
- organization={organization}
- hookName="feature-disabled:discover2-page"
- renderDisabled={renderNoAccess}
- >
- {children}
- </Feature>
- );
- }
- export default withOrganization(DiscoverContainer);
|