123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- import type {RouteComponentProps} from 'react-router';
- import {addErrorMessage} from 'sentry/actionCreators/indicator';
- import SelectField from 'sentry/components/forms/fields/selectField';
- import Form from 'sentry/components/forms/form';
- import NarrowLayout from 'sentry/components/narrowLayout';
- import {t, tct} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import DeprecatedAsyncView from 'sentry/views/deprecatedAsyncView';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- type Props = RouteComponentProps<{}, {}>;
- type TransferDetails = {
- organizations: Organization[];
- project: Project;
- };
- type State = {
- transferDetails: TransferDetails | null;
- } & DeprecatedAsyncView['state'];
- class AcceptProjectTransfer extends DeprecatedAsyncView<Props, State> {
- disableErrorReport = false;
- get regionHost(): string | undefined {
- // Because this route happens outside of OrganizationContext we
- // need to use initial data to decide which host to send the request to
- // as `/accept-transfer/` cannot be resolved to a region.
- const initialData = window.__initialData;
- let host: string | undefined = undefined;
- if (initialData && initialData.links?.regionUrl !== initialData.links?.sentryUrl) {
- host = initialData.links.regionUrl;
- }
- return host;
- }
- getEndpoints(): ReturnType<DeprecatedAsyncView['getEndpoints']> {
- const query = this.props.location.query;
- const host = this.regionHost;
- return [['transferDetails', '/accept-transfer/', {query, host}]];
- }
- getTitle() {
- return t('Accept Project Transfer');
- }
- handleSubmit = formData => {
- this.api.request('/accept-transfer/', {
- method: 'POST',
- host: this.regionHost,
- data: {
- data: this.props.location.query.data,
- organization: formData.organization,
- },
- success: () => {
- const orgSlug = formData.organization;
- const projectSlug = this.state?.transferDetails?.project.slug;
- const sentryUrl = ConfigStore.get('links').sentryUrl;
- if (!projectSlug) {
- window.location.href = `${sentryUrl}/organizations/${orgSlug}/projects/`;
- } else {
- window.location.href = `${sentryUrl}/organizations/${orgSlug}/settings/projects/${projectSlug}/teams/`;
- // done this way since we need to change subdomains
- }
- },
- error: error => {
- const errorMsg =
- error?.responseJSON && typeof error.responseJSON.detail === 'string'
- ? error.responseJSON.detail
- : '';
- addErrorMessage(
- t('Unable to transfer project') + errorMsg ? `: ${errorMsg}` : ''
- );
- },
- });
- };
- renderError(error) {
- let disableLog = false;
- // Check if there is an error message with `transferDetails` endpoint
- // If so, show as toast and ignore, otherwise log to sentry
- if (error?.responseJSON && typeof error.responseJSON.detail === 'string') {
- addErrorMessage(error.responseJSON.detail);
- disableLog = true;
- }
- return super.renderError(error, disableLog);
- }
- renderBody() {
- const {transferDetails} = this.state;
- const options = transferDetails?.organizations.map(org => ({
- label: org.slug,
- value: org.slug,
- }));
- const organization = options?.[0]?.value;
- return (
- <NarrowLayout>
- <SettingsPageHeader title={t('Approve Transfer Project Request')} />
- <p>
- {tct(
- 'Projects must be transferred to a specific [organization]. You can grant specific teams access to the project later under the [projectSettings]. (Note that granting access to at least one team is necessary for the project to appear in all parts of the UI.)',
- {
- organization: <strong>{t('Organization')}</strong>,
- projectSettings: <strong>{t('Project Settings')}</strong>,
- }
- )}
- </p>
- {transferDetails && (
- <p>
- {tct(
- 'Please select which [organization] you want for the project [project].',
- {
- organization: <strong>{t('Organization')}</strong>,
- project: transferDetails.project.slug,
- }
- )}
- </p>
- )}
- <Form
- onSubmit={this.handleSubmit}
- submitLabel={t('Transfer Project')}
- submitPriority="danger"
- initialData={organization ? {organization} : undefined}
- >
- <SelectField
- options={options}
- label={t('Organization')}
- name="organization"
- style={{borderBottom: 'none'}}
- />
- </Form>
- </NarrowLayout>
- );
- }
- }
- export default AcceptProjectTransfer;
|