|
@@ -1,118 +1,25 @@
|
|
|
-import {useCallback} from 'react';
|
|
|
-import {browserHistory} from 'react-router';
|
|
|
-import styled from '@emotion/styled';
|
|
|
-import omit from 'lodash/omit';
|
|
|
-
|
|
|
import Feature from 'sentry/components/acl/feature';
|
|
|
-import {Breadcrumbs} from 'sentry/components/breadcrumbs';
|
|
|
-import ButtonBar from 'sentry/components/buttonBar';
|
|
|
-import ErrorBoundary from 'sentry/components/errorBoundary';
|
|
|
-import FeedbackWidgetButton from 'sentry/components/feedback/widget/feedbackWidgetButton';
|
|
|
-import * as Layout from 'sentry/components/layouts/thirds';
|
|
|
-import {DatePageFilter} from 'sentry/components/organizations/datePageFilter';
|
|
|
-import {EnvironmentPageFilter} from 'sentry/components/organizations/environmentPageFilter';
|
|
|
-import PageFilterBar from 'sentry/components/organizations/pageFilterBar';
|
|
|
-import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container';
|
|
|
-import {ProjectPageFilter} from 'sentry/components/organizations/projectPageFilter';
|
|
|
-import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
|
|
|
-import {t} from 'sentry/locale';
|
|
|
-import {space} from 'sentry/styles/space';
|
|
|
-import {PageAlert, PageAlertProvider} from 'sentry/utils/performance/contexts/pageAlert';
|
|
|
-import {useLocation} from 'sentry/utils/useLocation';
|
|
|
import useOrganization from 'sentry/utils/useOrganization';
|
|
|
-import {normalizeUrl} from 'sentry/utils/withDomainRequired';
|
|
|
-import {useOnboardingProject} from 'sentry/views/performance/browser/webVitals/utils/useOnboardingProject';
|
|
|
import AppStartup from 'sentry/views/performance/mobile/appStarts/screens';
|
|
|
import {StartTypeSelector} from 'sentry/views/performance/mobile/appStarts/screenSummary/startTypeSelector';
|
|
|
-import Onboarding from 'sentry/views/performance/onboarding';
|
|
|
-import {PlatformCompatibilityChecker} from 'sentry/views/performance/platformCompatibilityChecker';
|
|
|
-import {ReleaseComparisonSelector} from 'sentry/views/starfish/components/releaseSelector';
|
|
|
+import ScreensTemplate from 'sentry/views/performance/mobile/components/screensTemplate';
|
|
|
import {ROUTE_NAMES} from 'sentry/views/starfish/utils/routeNames';
|
|
|
|
|
|
export default function InitializationModule() {
|
|
|
const organization = useOrganization();
|
|
|
- const onboardingProject = useOnboardingProject();
|
|
|
- const location = useLocation();
|
|
|
-
|
|
|
- const handleProjectChange = useCallback(() => {
|
|
|
- browserHistory.replace({
|
|
|
- ...location,
|
|
|
- query: {
|
|
|
- ...omit(location.query, ['primaryRelease', 'secondaryRelease']),
|
|
|
- },
|
|
|
- });
|
|
|
- }, [location]);
|
|
|
|
|
|
return (
|
|
|
<Feature features="spans-first-ui" organization={organization}>
|
|
|
- <SentryDocumentTitle title={ROUTE_NAMES['app-startup']} orgSlug={organization.slug}>
|
|
|
- <Layout.Page>
|
|
|
- <PageAlertProvider>
|
|
|
- <Layout.Header>
|
|
|
- <Layout.HeaderContent>
|
|
|
- <Breadcrumbs
|
|
|
- crumbs={[
|
|
|
- {
|
|
|
- label: t('Performance'),
|
|
|
- to: normalizeUrl(
|
|
|
- `/organizations/${organization.slug}/performance/`
|
|
|
- ),
|
|
|
- preservePageFilters: true,
|
|
|
- },
|
|
|
- {
|
|
|
- label: ROUTE_NAMES['app-startup'],
|
|
|
- },
|
|
|
- ]}
|
|
|
- />
|
|
|
- <Layout.Title>{ROUTE_NAMES['app-startup']}</Layout.Title>
|
|
|
- </Layout.HeaderContent>
|
|
|
- <Layout.HeaderActions>
|
|
|
- <ButtonBar gap={1}>
|
|
|
- <FeedbackWidgetButton />
|
|
|
- </ButtonBar>
|
|
|
- </Layout.HeaderActions>
|
|
|
- </Layout.Header>
|
|
|
-
|
|
|
- <Layout.Body>
|
|
|
- <Layout.Main fullWidth>
|
|
|
- <PageFiltersContainer>
|
|
|
- <Container>
|
|
|
- <PageFilterBar condensed>
|
|
|
- <ProjectPageFilter onChange={handleProjectChange} />
|
|
|
- <EnvironmentPageFilter />
|
|
|
- <DatePageFilter />
|
|
|
- </PageFilterBar>
|
|
|
- <ReleaseComparisonSelector />
|
|
|
- <StartTypeSelector />
|
|
|
- </Container>
|
|
|
- </PageFiltersContainer>
|
|
|
- <PageAlert />
|
|
|
- <ErrorBoundary mini>
|
|
|
- <PlatformCompatibilityChecker
|
|
|
- compatibleSDKNames={['sentry.cocoa', 'sentry.java.android']}
|
|
|
- docsUrl="https://docs.sentry.io/product/performance/mobile-vitals/app-starts/#minimum-sdk-requirements"
|
|
|
- >
|
|
|
- {onboardingProject && (
|
|
|
- <Onboarding
|
|
|
- organization={organization}
|
|
|
- project={onboardingProject}
|
|
|
- />
|
|
|
- )}
|
|
|
- {!onboardingProject && <AppStartup chartHeight={200} />}
|
|
|
- </PlatformCompatibilityChecker>
|
|
|
- </ErrorBoundary>
|
|
|
- </Layout.Main>
|
|
|
- </Layout.Body>
|
|
|
- </PageAlertProvider>
|
|
|
- </Layout.Page>
|
|
|
- </SentryDocumentTitle>
|
|
|
+ <ScreensTemplate
|
|
|
+ additionalSelectors={<StartTypeSelector />}
|
|
|
+ compatibilityProps={{
|
|
|
+ compatibleSDKNames: ['sentry.cocoa', 'sentry.java.android'],
|
|
|
+ docsUrl:
|
|
|
+ 'https://docs.sentry.io/product/performance/mobile-vitals/app-starts/#minimum-sdk-requirements',
|
|
|
+ }}
|
|
|
+ content={<AppStartup chartHeight={200} />}
|
|
|
+ title={ROUTE_NAMES['app-startup']}
|
|
|
+ />
|
|
|
</Feature>
|
|
|
);
|
|
|
}
|
|
|
-
|
|
|
-const Container = styled('div')`
|
|
|
- display: flex;
|
|
|
- gap: ${space(2)};
|
|
|
- margin-bottom: ${space(2)};
|
|
|
- flex-wrap: wrap;
|
|
|
-`;
|