import {Component} from 'react'; import styled from '@emotion/styled'; import type {SelectAsyncControlProps} from 'sentry/components/forms/controls/selectAsyncControl'; import FieldFromConfig from 'sentry/components/forms/fieldFromConfig'; import type {FormProps} from 'sentry/components/forms/form'; import Form from 'sentry/components/forms/form'; import FormModel from 'sentry/components/forms/model'; import type {Field} from 'sentry/components/forms/types'; import {t, tct} from 'sentry/locale'; import type { ExternalActorMapping, ExternalActorMappingOrSuggestion, Integration, } from 'sentry/types'; import { getExternalActorEndpointDetails, isExternalActorMapping, sentryNameToOption, } from 'sentry/utils/integrationUtil'; import {capitalize} from 'sentry/utils/string/capitalize'; type Props = Pick & Pick & { dataEndpoint: string; getBaseFormEndpoint: (mapping?: ExternalActorMappingOrSuggestion) => string; integration: Integration; sentryNamesMapper: (v: any) => {id: string; name: string}[]; type: 'user' | 'team'; isInline?: boolean; mapping?: ExternalActorMappingOrSuggestion; mappingKey?: string; onResults?: (data: any, mappingKey?: string) => void; }; export default class IntegrationExternalMappingForm extends Component { model = new FormModel(); get initialData() { const {integration, mapping} = this.props; return { provider: integration.provider.key, integrationId: integration.id, ...mapping, }; } getDefaultOptions(mapping?: ExternalActorMappingOrSuggestion) { const {defaultOptions, type} = this.props; if (typeof defaultOptions !== 'object') { return defaultOptions; } const options = [...(defaultOptions ?? [])]; if (!mapping || !isExternalActorMapping(mapping) || !mapping.sentryName) { return options; } // For organizations with >100 entries, we want to make sure their // saved mapping gets populated in the results if it wouldn't have // been in the initial 100 API results, which is why we add it here const mappingId = mapping[`${type}Id`]; const isMappingInOptionsAlready = options.some( ({value}) => mappingId && value === mappingId ); return isMappingInOptionsAlready ? options : [{value: mappingId, label: mapping.sentryName}, ...options]; } get formFields(): Field[] { const { dataEndpoint, isInline, mapping, mappingKey, onResults, sentryNamesMapper, type, } = this.props; const fields: Field[] = [ { flexibleControlStateSize: true, name: `${type}Id`, type: 'select_async', required: true, label: isInline ? undefined : tct('Sentry [type]', {type: capitalize(type)}), placeholder: t('Select Sentry %s', capitalize(type)), url: dataEndpoint, defaultOptions: this.getDefaultOptions(mapping), onResults: result => { onResults?.(result, isInline ? mapping?.externalName : mappingKey); return sentryNamesMapper(result).map(sentryNameToOption); }, }, ]; // We only add the field for externalName if it's the full (not inline) form if (!isInline) { fields.unshift({ name: 'externalName', type: 'string', flexibleControlStateSize: true, required: true, label: isInline ? undefined : tct('External [type]', {type: capitalize(type)}), placeholder: type === 'user' ? t('@username') : t('@org/teamname'), }); } return fields; } get extraFormFieldProps() { const {isInline} = this.props; return isInline ? { // We need to submit the entire model since it could be a new one or an update getData: () => this.model.getData(), // We need to update the model onBlur for inline forms since the model's 'onPreSubmit' hook // does NOT run when using `saveOnBlur`. onBlur: () => this.updateModel(), } : {flexibleControlStateSize: true}; } // This function is necessary since the endpoint we submit to changes depending on the value selected updateModel() { const {getBaseFormEndpoint, mapping} = this.props; const updatedMapping: ExternalActorMapping = { ...mapping, ...(this.model.getData() as ExternalActorMapping), }; if (updatedMapping) { const options = getExternalActorEndpointDetails( getBaseFormEndpoint(updatedMapping), updatedMapping ); this.model.setFormOptions(options); } } render() { const {isInline, onCancel, onSubmitError, onSubmitSuccess} = this.props; return (
this.updateModel()} > {this.formFields.map(field => ( ))}
); } } // Prevents errors from appearing off the modal const FormWrapper = styled('div')` position: relative; width: inherit; `;