123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import * as Layout from 'sentry/components/layouts/thirds';
- import NoProjectMessage from 'sentry/components/noProjectMessage';
- import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import type {InsightEventKey} from 'sentry/utils/analytics/insightAnalyticEvents';
- import useOrganization from 'sentry/utils/useOrganization';
- import {useHasDataTrackAnalytics} from 'sentry/views/insights/common/utils/useHasDataTrackAnalytics';
- import {useModuleTitles} from 'sentry/views/insights/common/utils/useModuleTitle';
- import {INSIGHTS_TITLE, QUERY_DATE_RANGE_LIMIT} from 'sentry/views/insights/settings';
- import type {ModuleName} from 'sentry/views/insights/types';
- type ModuleNameStrings = `${ModuleName}`;
- export type TitleableModuleNames = Exclude<ModuleNameStrings, '' | 'other'>;
- interface Props {
- children: React.ReactNode;
- moduleName: TitleableModuleNames;
- analyticEventName?: InsightEventKey;
- pageTitle?: string;
- }
- export function ModulePageProviders({
- moduleName,
- pageTitle,
- children,
- analyticEventName,
- }: Props) {
- const organization = useOrganization();
- const moduleTitles = useModuleTitles();
- const hasDateRangeQueryLimit = organization.features.includes(
- 'insights-query-date-range-limit'
- );
- useHasDataTrackAnalytics(moduleName as ModuleName, analyticEventName);
- const moduleTitle = moduleTitles[moduleName];
- const fullPageTitle = [pageTitle, moduleTitle, INSIGHTS_TITLE]
- .filter(Boolean)
- .join(' — ');
- return (
- <PageFiltersContainer
- maxPickableDays={hasDateRangeQueryLimit ? QUERY_DATE_RANGE_LIMIT : undefined}
- >
- <SentryDocumentTitle title={fullPageTitle} orgSlug={organization.slug}>
- <Layout.Page>
- <NoProjectMessage organization={organization}>{children}</NoProjectMessage>
- </Layout.Page>
- </SentryDocumentTitle>
- </PageFiltersContainer>
- );
- }
|