1234567891011121314151617181920212223242526272829303132333435 |
- import Feature from 'sentry/components/acl/feature';
- import {Alert} from 'sentry/components/alert';
- import * as Layout from 'sentry/components/layouts/thirds';
- import NoProjectMessage from 'sentry/components/noProjectMessage';
- import {t} from 'sentry/locale';
- import type {Organization} from 'sentry/types/organization';
- import withOrganization from 'sentry/utils/withOrganization';
- type Props = {
- children: React.ReactNode;
- organization: Organization;
- };
- function DiscoverContainer({organization, children}: Props) {
- function renderNoAccess() {
- return (
- <Layout.Page withPadding>
- <Alert type="warning">{t("You don't have access to this feature")}</Alert>
- </Layout.Page>
- );
- }
- return (
- <Feature
- features="discover-basic"
- organization={organization}
- hookName="feature-disabled:discover2-page"
- renderDisabled={renderNoAccess}
- >
- <NoProjectMessage organization={organization}>{children}</NoProjectMessage>
- </Feature>
- );
- }
- export default withOrganization(DiscoverContainer);
|