123456789101112131415161718192021222324252627282930313233343536 |
- import Feature from 'sentry/components/acl/feature';
- import Alert from 'sentry/components/alert';
- import AnalyticsArea from 'sentry/components/analyticsArea';
- import * as Layout from 'sentry/components/layouts/thirds';
- import NoProjectMessage from 'sentry/components/noProjectMessage';
- import {t} from 'sentry/locale';
- import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
- import useOrganization from 'sentry/utils/useOrganization';
- type Props = RouteComponentProps<{}, {}> & {
- children: React.ReactNode;
- };
- export default function FeedbackContainer({children}: Props) {
- const organization = useOrganization();
- return (
- <Feature
- features="user-feedback-ui"
- organization={organization}
- renderDisabled={NoAccess}
- >
- <AnalyticsArea name="feedback">
- <NoProjectMessage organization={organization}>{children}</NoProjectMessage>
- </AnalyticsArea>
- </Feature>
- );
- }
- function NoAccess() {
- return (
- <Layout.Page withPadding>
- <Alert type="warning">{t("You don't have access to this feature")}</Alert>
- </Layout.Page>
- );
- }
|