123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- import * as React from 'react';
- import {browserHistory} from 'react-router';
- import * as Sentry from '@sentry/react';
- import {
- addErrorMessage,
- addLoadingMessage,
- clearIndicators,
- } from 'sentry/actionCreators/indicator';
- import {Client} from 'sentry/api';
- import Button from 'sentry/components/button';
- import {t} from 'sentry/locale';
- import {Organization, Project} from 'sentry/types';
- import {trackAdhocEvent, trackAnalyticsEvent} from 'sentry/utils/analytics';
- import trackAdvancedAnalyticsEvent from 'sentry/utils/analytics/trackAdvancedAnalyticsEvent';
- import withApi from 'sentry/utils/withApi';
- import withOrganization from 'sentry/utils/withOrganization';
- type Props = React.ComponentProps<typeof Button> & {
- api: Client;
- organization: Organization;
- source: string;
- project?: Project;
- };
- type State = {
- creating: boolean;
- };
- const EVENT_POLL_RETRIES = 15;
- const EVENT_POLL_INTERVAL = 1000;
- async function latestEventAvailable(
- api: Client,
- groupID: string
- ): Promise<{eventCreated: boolean; retries: number}> {
- let retries = 0;
- // eslint-disable-next-line no-constant-condition
- while (true) {
- if (retries > EVENT_POLL_RETRIES) {
- return {eventCreated: false, retries: retries - 1};
- }
- await new Promise(resolve => setTimeout(resolve, EVENT_POLL_INTERVAL));
- try {
- await api.requestPromise(`/issues/${groupID}/events/latest/`);
- return {eventCreated: true, retries};
- } catch {
- ++retries;
- }
- }
- }
- class CreateSampleEventButton extends React.Component<Props, State> {
- state: State = {
- creating: false,
- };
- componentDidMount() {
- const {organization, project, source} = this.props;
- if (!project) {
- return;
- }
- trackAdhocEvent({
- eventKey: 'sample_event.button_viewed',
- org_id: organization.id,
- project_id: project.id,
- source,
- });
- }
- recordAnalytics({eventCreated, retries, duration}) {
- const {organization, project, source} = this.props;
- if (!project) {
- return;
- }
- const eventKey = `sample_event.${eventCreated ? 'created' : 'failed'}`;
- const eventName = `Sample Event ${eventCreated ? 'Created' : 'Failed'}`;
- trackAnalyticsEvent({
- eventKey,
- eventName,
- organization_id: organization.id,
- project_id: project.id,
- platform: project.platform || '',
- interval: EVENT_POLL_INTERVAL,
- retries,
- duration,
- source,
- });
- }
- createSampleGroup = async () => {
- // TODO(dena): swap out for action creator
- const {api, organization, project} = this.props;
- let eventData;
- if (!project) {
- return;
- }
- trackAdvancedAnalyticsEvent('growth.onboarding_view_sample_event', {
- platform: project.platform,
- organization,
- });
- addLoadingMessage(t('Processing sample event...'), {
- duration: EVENT_POLL_RETRIES * EVENT_POLL_INTERVAL,
- });
- this.setState({creating: true});
- try {
- const url = `/projects/${organization.slug}/${project.slug}/create-sample/`;
- eventData = await api.requestPromise(url, {method: 'POST'});
- } catch (error) {
- Sentry.withScope(scope => {
- scope.setExtra('error', error);
- Sentry.captureException(new Error('Failed to create sample event'));
- });
- this.setState({creating: false});
- clearIndicators();
- addErrorMessage(t('Failed to create a new sample event'));
- return;
- }
- // Wait for the event to be fully processed and available on the group
- // before redirecting.
- const t0 = performance.now();
- const {eventCreated, retries} = await latestEventAvailable(api, eventData.groupID);
- const t1 = performance.now();
- clearIndicators();
- this.setState({creating: false});
- const duration = Math.ceil(t1 - t0);
- this.recordAnalytics({eventCreated, retries, duration});
- if (!eventCreated) {
- addErrorMessage(t('Failed to load sample event'));
- Sentry.withScope(scope => {
- scope.setTag('groupID', eventData.groupID);
- scope.setTag('platform', project.platform || '');
- scope.setTag('interval', EVENT_POLL_INTERVAL.toString());
- scope.setTag('retries', retries.toString());
- scope.setTag('duration', duration.toString());
- scope.setLevel(Sentry.Severity.Warning);
- Sentry.captureMessage('Failed to load sample event');
- });
- return;
- }
- browserHistory.push(
- `/organizations/${organization.slug}/issues/${eventData.groupID}/?project=${project.id}`
- );
- };
- render() {
- const {
- api: _api,
- organization: _organization,
- project: _project,
- source: _source,
- ...props
- } = this.props;
- const {creating} = this.state;
- return (
- <Button
- {...props}
- data-test-id="create-sample-event"
- disabled={props.disabled || creating}
- onClick={this.createSampleGroup}
- />
- );
- }
- }
- export default withApi(withOrganization(CreateSampleEventButton));
|