123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- import 'prism-sentry/index.css';
- import {Component, Fragment} from 'react';
- import {browserHistory, RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import {loadDocs} from 'sentry/actionCreators/projects';
- import {Client} from 'sentry/api';
- import Feature from 'sentry/components/acl/feature';
- import Alert from 'sentry/components/alert';
- import Button from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import NotFound from 'sentry/components/errors/notFound';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {
- performance as performancePlatforms,
- PlatformKey,
- } from 'sentry/data/platformCategories';
- import platforms from 'sentry/data/platforms';
- import {t, tct} from 'sentry/locale';
- import {PageHeader} from 'sentry/styles/organization';
- import space from 'sentry/styles/space';
- import {Organization, Project} from 'sentry/types';
- import Projects from 'sentry/utils/projects';
- import withApi from 'sentry/utils/withApi';
- import withOrganization from 'sentry/utils/withOrganization';
- type Props = {
- api: Client;
- organization: Organization;
- } & RouteComponentProps<{orgId: string; platform: string; projectId: string}, {}>;
- type State = {
- error: boolean;
- html: string;
- loading: boolean;
- };
- class ProjectInstallPlatform extends Component<Props, State> {
- state: State = {
- loading: true,
- error: false,
- html: '',
- };
- componentDidMount() {
- this.fetchData();
- window.scrollTo(0, 0);
- const {platform} = this.props.params;
- // redirect if platform is not known.
- if (!platform || platform === 'other') {
- this.redirectToNeutralDocs();
- }
- }
- get isGettingStarted() {
- return window.location.href.indexOf('getting-started') > 0;
- }
- fetchData = async () => {
- const {api, params} = this.props;
- const {orgId, projectId, platform} = params;
- this.setState({loading: true});
- try {
- const {html} = await loadDocs(api, orgId, projectId, platform as PlatformKey);
- this.setState({html});
- } catch (error) {
- this.setState({error});
- }
- this.setState({loading: false});
- };
- redirectToNeutralDocs() {
- const {orgId, projectId} = this.props.params;
- const url = `/organizations/${orgId}/projects/${projectId}/getting-started/`;
- browserHistory.push(url);
- }
- render() {
- const {params} = this.props;
- const {orgId, projectId} = params;
- const platform = platforms.find(p => p.id === params.platform);
- if (!platform) {
- return <NotFound />;
- }
- const issueStreamLink = `/organizations/${orgId}/issues/`;
- const performanceOverviewLink = `/organizations/${orgId}/performance/`;
- const gettingStartedLink = `/organizations/${orgId}/projects/${projectId}/getting-started/`;
- const platformLink = platform.link ?? undefined;
- return (
- <Fragment>
- <StyledPageHeader>
- <h2>{t('Configure %(platform)s', {platform: platform.name})}</h2>
- <ButtonBar gap={1}>
- <Button size="sm" to={gettingStartedLink}>
- {t('< Back')}
- </Button>
- <Button size="sm" href={platformLink} external>
- {t('Full Documentation')}
- </Button>
- </ButtonBar>
- </StyledPageHeader>
- <div>
- <Alert type="info" showIcon>
- {tct(
- `
- This is a quick getting started guide. For in-depth instructions
- on integrating Sentry with [platform], view
- [docLink:our complete documentation].`,
- {
- platform: platform.name,
- docLink: <a href={platformLink} />,
- }
- )}
- </Alert>
- {this.state.loading ? (
- <LoadingIndicator />
- ) : this.state.error ? (
- <LoadingError onRetry={this.fetchData} />
- ) : (
- <Fragment>
- <SentryDocumentTitle
- title={`${t('Configure')} ${platform.name}`}
- projectSlug={projectId}
- />
- <DocumentationWrapper dangerouslySetInnerHTML={{__html: this.state.html}} />
- </Fragment>
- )}
- {this.isGettingStarted && (
- <Projects
- key={`${orgId}-${projectId}`}
- orgId={orgId}
- slugs={[projectId]}
- passthroughPlaceholderProject={false}
- >
- {({projects, initiallyLoaded, fetching, fetchError}) => {
- const projectsLoading = !initiallyLoaded && fetching;
- const projectFilter =
- !projectsLoading && !fetchError && projects.length
- ? {
- project: (projects[0] as Project).id,
- }
- : {};
- const showPerformancePrompt = performancePlatforms.includes(
- platform.id as PlatformKey
- );
- return (
- <Fragment>
- {showPerformancePrompt && (
- <Feature
- features={['performance-view']}
- hookName="feature-disabled:performance-new-project"
- >
- {({hasFeature}) => {
- if (hasFeature) {
- return null;
- }
- return (
- <StyledAlert type="info" showIcon>
- {t(
- `Your selected platform supports performance, but your organization does not have performance enabled.`
- )}
- </StyledAlert>
- );
- }}
- </Feature>
- )}
- <StyledButtonBar gap={1}>
- <Button
- priority="primary"
- busy={projectsLoading}
- to={{
- pathname: issueStreamLink,
- query: projectFilter,
- hash: '#welcome',
- }}
- >
- {t('Take me to Issues')}
- </Button>
- <Button
- busy={projectsLoading}
- to={{
- pathname: performanceOverviewLink,
- query: projectFilter,
- }}
- >
- {t('Take me to Performance')}
- </Button>
- </StyledButtonBar>
- </Fragment>
- );
- }}
- </Projects>
- )}
- </div>
- </Fragment>
- );
- }
- }
- const DocumentationWrapper = styled('div')`
- line-height: 1.5;
- .gatsby-highlight {
- margin-bottom: ${space(3)};
- &:last-child {
- margin-bottom: 0;
- }
- }
- .alert {
- margin-bottom: ${space(3)};
- border-radius: ${p => p.theme.borderRadius};
- }
- pre {
- word-break: break-all;
- white-space: pre-wrap;
- }
- blockquote {
- padding: ${space(1)};
- margin-left: 0;
- background: ${p => p.theme.alert.info.backgroundLight};
- border-left: 2px solid ${p => p.theme.alert.info.border};
- }
- blockquote > *:last-child {
- margin-bottom: 0;
- }
- `;
- const StyledButtonBar = styled(ButtonBar)`
- margin-top: ${space(3)};
- width: max-content;
- @media (max-width: ${p => p.theme.breakpoints.small}) {
- width: auto;
- grid-row-gap: ${space(1)};
- grid-auto-flow: row;
- }
- `;
- const StyledPageHeader = styled(PageHeader)`
- margin-bottom: ${space(3)};
- h2 {
- margin: 0;
- }
- @media (max-width: ${p => p.theme.breakpoints.small}) {
- flex-direction: column;
- align-items: flex-start;
- h2 {
- margin-bottom: ${space(2)};
- }
- }
- `;
- const StyledAlert = styled(Alert)`
- margin-top: ${space(2)};
- `;
- export {ProjectInstallPlatform};
- export default withApi(withOrganization(ProjectInstallPlatform));
|