123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- import {Fragment, useEffect, useMemo} from 'react';
- import styled from '@emotion/styled';
- import Alert from 'sentry/components/alert';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import {Flamegraph} from 'sentry/components/profiling/flamegraph';
- import {ProfileDragDropImportProps} from 'sentry/components/profiling/profileDragDropImport';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {t} from 'sentry/locale';
- import {DeepPartial} from 'sentry/types/utils';
- import trackAdvancedAnalyticsEvent from 'sentry/utils/analytics/trackAdvancedAnalyticsEvent';
- import {
- decodeFlamegraphStateFromQueryParams,
- DEFAULT_FLAMEGRAPH_STATE,
- FLAMEGRAPH_LOCALSTORAGE_PREFERENCES_KEY,
- FlamegraphState,
- FlamegraphStateLocalStorageSync,
- FlamegraphStateProvider,
- FlamegraphStateQueryParamSync,
- } from 'sentry/utils/profiling/flamegraph/flamegraphStateProvider/index';
- import {FlamegraphThemeProvider} from 'sentry/utils/profiling/flamegraph/flamegraphThemeProvider';
- import {ProfileGroup} from 'sentry/utils/profiling/profile/importProfile';
- import {Profile} from 'sentry/utils/profiling/profile/profile';
- import {useLocalStorageState} from 'sentry/utils/useLocalStorageState';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import {useProfileGroup} from './profileGroupProvider';
- const LoadingGroup: ProfileGroup = {
- name: 'Loading',
- traceID: '',
- activeProfileIndex: 0,
- profiles: [Profile.Empty()],
- };
- function ProfileFlamegraph(): React.ReactElement {
- const location = useLocation();
- const organization = useOrganization();
- const [profileGroup, setProfileGroup] = useProfileGroup();
- const [storedPreferences] = useLocalStorageState<DeepPartial<FlamegraphState>>(
- FLAMEGRAPH_LOCALSTORAGE_PREFERENCES_KEY,
- {
- preferences: {layout: DEFAULT_FLAMEGRAPH_STATE.preferences.layout},
- }
- );
- useEffect(() => {
- trackAdvancedAnalyticsEvent('profiling_views.profile_flamegraph', {
- organization,
- });
- }, [organization]);
- const onImport: ProfileDragDropImportProps['onImport'] = profiles => {
- setProfileGroup({type: 'resolved', data: profiles});
- };
- const initialFlamegraphPreferencesState = useMemo((): DeepPartial<FlamegraphState> => {
- const queryStringState = decodeFlamegraphStateFromQueryParams(location.query);
- return {
- ...queryStringState,
- preferences: {
- ...storedPreferences.preferences,
- ...queryStringState.preferences,
- layout:
- storedPreferences?.preferences?.layout ??
- queryStringState.preferences?.layout ??
- DEFAULT_FLAMEGRAPH_STATE.preferences.layout,
- },
- };
- // We only want to decode this when our component mounts
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
- return (
- <SentryDocumentTitle
- title={t('Profiling \u2014 Flamechart')}
- orgSlug={organization.slug}
- >
- <FlamegraphStateProvider initialState={initialFlamegraphPreferencesState}>
- <FlamegraphThemeProvider>
- <FlamegraphStateQueryParamSync />
- <FlamegraphStateLocalStorageSync />
- <FlamegraphContainer>
- {profileGroup.type === 'errored' ? (
- <Alert type="error" showIcon>
- {profileGroup.error}
- </Alert>
- ) : profileGroup.type === 'loading' ? (
- <Fragment>
- <Flamegraph onImport={onImport} profiles={LoadingGroup} />
- <LoadingIndicatorContainer>
- <LoadingIndicator />
- </LoadingIndicatorContainer>
- </Fragment>
- ) : profileGroup.type === 'resolved' ? (
- <Flamegraph onImport={onImport} profiles={profileGroup.data} />
- ) : null}
- </FlamegraphContainer>
- </FlamegraphThemeProvider>
- </FlamegraphStateProvider>
- </SentryDocumentTitle>
- );
- }
- const LoadingIndicatorContainer = styled('div')`
- position: absolute;
- display: flex;
- flex-direction: column;
- justify-content: center;
- width: 100%;
- height: 100%;
- `;
- const FlamegraphContainer = styled('div')`
- display: flex;
- flex-direction: column;
- flex: 1 1 100%;
- /*
- * The footer component is a sibling of this div.
- * Remove it so the flamegraph can take up the
- * entire screen.
- */
- ~ footer {
- display: none;
- }
- `;
- export default ProfileFlamegraph;
|