123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- import {Fragment, useCallback, useEffect, useState} from 'react';
- import styled from '@emotion/styled';
- import {motion} from 'framer-motion';
- import {Location} from 'history';
- import beautify from 'js-beautify';
- import {Button} from 'sentry/components/button';
- import {CodeSnippet} from 'sentry/components/codeSnippet';
- import ExternalLink from 'sentry/components/links/externalLink';
- import LoadingError from 'sentry/components/loadingError';
- import {DocumentationWrapper} from 'sentry/components/onboarding/documentationWrapper';
- import {PRODUCT, ProductSelection} from 'sentry/components/onboarding/productSelection';
- import {PlatformKey} from 'sentry/data/platformCategories';
- import {IconChevron} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {Organization, Project, ProjectKey} from 'sentry/types';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {handleXhrErrorResponse} from 'sentry/utils/handleXhrErrorResponse';
- import {decodeList} from 'sentry/utils/queryString';
- import useApi from 'sentry/utils/useApi';
- export function SetupDocsLoader({
- organization,
- location,
- project,
- platform,
- close,
- }: {
- close: () => void;
- location: Location;
- organization: Organization;
- platform: PlatformKey | null;
- project: Project;
- }) {
- const api = useApi();
- const currentPlatform = platform ?? project?.platform ?? 'other';
- const [projectKey, setProjectKey] = useState<ProjectKey | null>(null);
- const [hasLoadingError, setHasLoadingError] = useState(false);
- const [projectKeyUpdateError, setProjectKeyUpdateError] = useState(false);
- const fetchData = useCallback(async () => {
- const keysApiUrl = `/projects/${organization.slug}/${project.slug}/keys/`;
- try {
- const loadedKeys = await api.requestPromise(keysApiUrl);
- if (loadedKeys.length === 0) {
- setHasLoadingError(true);
- return;
- }
- setProjectKey(loadedKeys[0]);
- setHasLoadingError(false);
- } catch (error) {
- setHasLoadingError(error);
- throw error;
- }
- }, [api, organization.slug, project.slug]);
- // Automatically update the products on the project key when the user changes the product selection
- // Note that on initial visit, this will also update the project key with the default products (=all products)
- // This DOES NOT take into account any initial products that may already be set on the project key - they will always be overwritten!
- const handleUpdateSelectedProducts = useCallback(async () => {
- const productsQuery =
- (location.query.product as PRODUCT | PRODUCT[] | undefined) ?? [];
- const products = decodeList(productsQuery);
- const keyId = projectKey?.id;
- if (!keyId) {
- return;
- }
- const newDynamicSdkLoaderOptions: ProjectKey['dynamicSdkLoaderOptions'] = {
- hasPerformance: false,
- hasReplay: false,
- hasDebug: false,
- };
- products.forEach(product => {
- // eslint-disable-next-line default-case
- switch (product) {
- case PRODUCT.PERFORMANCE_MONITORING:
- newDynamicSdkLoaderOptions.hasPerformance = true;
- break;
- case PRODUCT.SESSION_REPLAY:
- newDynamicSdkLoaderOptions.hasReplay = true;
- break;
- }
- });
- try {
- await api.requestPromise(
- `/projects/${organization.slug}/${project.slug}/keys/${keyId}/`,
- {
- method: 'PUT',
- data: {
- dynamicSdkLoaderOptions: newDynamicSdkLoaderOptions,
- },
- }
- );
- setProjectKeyUpdateError(false);
- } catch (error) {
- const message = t('Unable to updated dynamic SDK loader configuration');
- handleXhrErrorResponse(message, error);
- setProjectKeyUpdateError(true);
- }
- }, [api, location.query.product, organization.slug, project.slug, projectKey?.id]);
- const track = useCallback(() => {
- if (!project?.id) {
- return;
- }
- trackAnalytics('onboarding.setup_loader_docs_rendered', {
- organization,
- platform: currentPlatform,
- project_id: project?.id,
- });
- }, [organization, currentPlatform, project?.id]);
- useEffect(() => {
- fetchData();
- }, [fetchData, organization.slug, project.slug]);
- useEffect(() => {
- handleUpdateSelectedProducts();
- }, [handleUpdateSelectedProducts, location.query.product]);
- useEffect(() => {
- track();
- }, [track]);
- return (
- <Fragment>
- <ProductSelection
- defaultSelectedProducts={[PRODUCT.PERFORMANCE_MONITORING, PRODUCT.SESSION_REPLAY]}
- lazyLoader
- skipLazyLoader={close}
- />
- {projectKeyUpdateError && (
- <LoadingError
- message={t('Failed to update the project key with the selected products.')}
- onRetry={handleUpdateSelectedProducts}
- />
- )}
- {!hasLoadingError ? (
- projectKey !== null && (
- <ProjectKeyInfo
- projectKey={projectKey}
- platform={platform}
- organization={organization}
- project={project}
- />
- )
- ) : (
- <LoadingError
- message={t('Failed to load Client Keys for the project.')}
- onRetry={fetchData}
- />
- )}
- </Fragment>
- );
- }
- function ProjectKeyInfo({
- projectKey,
- platform,
- organization,
- project,
- }: {
- organization: Organization;
- platform: PlatformKey | null;
- project: Project;
- projectKey: ProjectKey;
- }) {
- const [showOptionalConfig, setShowOptionalConfig] = useState(false);
- const loaderLink = projectKey.dsn.cdn;
- const currentPlatform = platform ?? project?.platform ?? 'other';
- const configCodeSnippet = beautify.html(
- `<script>
- Sentry.onLoad(function() {
- Sentry.init({
- // No need to configure DSN here, it is already configured in the loader script
- // You can add any additional configuration here
- sampleRate: 0.5,
- });
- });
- </script>`,
- {indent_size: 2}
- );
- const verifyCodeSnippet = beautify.html(
- `<script>
- myUndefinedFunction();
- </script>`,
- {indent_size: 2}
- );
- const toggleOptionalConfiguration = useCallback(() => {
- const show = !showOptionalConfig;
- setShowOptionalConfig(show);
- if (show) {
- trackAnalytics('onboarding.js_loader_optional_configuration_shown', {
- organization,
- platform: currentPlatform,
- project_id: project.id,
- });
- }
- }, [organization, project.id, currentPlatform, showOptionalConfig]);
- return (
- <DocsWrapper>
- <DocumentationWrapper>
- <h2>{t('Install')}</h2>
- <p>{t('Add this script tag to the top of the page:')}</p>
- <CodeSnippet dark language="html">
- {beautify.html(
- `<script src="${loaderLink}" crossorigin="anonymous"></script>`,
- {indent_size: 2, wrap_attributes: 'force-expand-multiline'}
- )}
- </CodeSnippet>
- <OptionalConfigWrapper>
- <ToggleButton
- priority="link"
- borderless
- size="zero"
- icon={<IconChevron direction={showOptionalConfig ? 'down' : 'right'} />}
- aria-label={t('Toggle optional configuration')}
- onClick={toggleOptionalConfiguration}
- />
- <h2 onClick={toggleOptionalConfiguration}>{t('Configuration (Optional)')}</h2>
- </OptionalConfigWrapper>
- {showOptionalConfig && (
- <div>
- <p>
- {t(
- "Initialise Sentry as early as possible in your application's lifecycle."
- )}
- </p>
- <CodeSnippet dark language="html">
- {configCodeSnippet}
- </CodeSnippet>
- </div>
- )}
- <h2>{t('Verify')}</h2>
- <p>
- {t(
- "This snippet contains an intentional error and can be used as a test to make sure that everything's working as expected."
- )}
- </p>
- <CodeSnippet dark language="html">
- {verifyCodeSnippet}
- </CodeSnippet>
- <hr />
- <h2>{t('Next Steps')}</h2>
- <ul>
- <li>
- <ExternalLink href="https://docs.sentry.io/platforms/javascript/sourcemaps/">
- {t('Source Maps')}
- </ExternalLink>
- {': '}
- {t('Learn how to enable readable stack traces in your Sentry errors.')}
- </li>
- <li>
- <ExternalLink href="https://docs.sentry.io/platforms/javascript/configuration/">
- {t('SDK Configuration')}
- </ExternalLink>
- {': '}
- {t('Learn how to configure your SDK using our Loader Script')}
- </li>
- </ul>
- </DocumentationWrapper>
- </DocsWrapper>
- );
- }
- const DocsWrapper = styled(motion.div)``;
- const OptionalConfigWrapper = styled('div')`
- display: flex;
- cursor: pointer;
- `;
- const ToggleButton = styled(Button)`
- &,
- :hover {
- color: ${p => p.theme.gray500};
- }
- `;
|