123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- import {Fragment} from 'react';
- // eslint-disable-next-line no-restricted-imports
- import {withRouter, WithRouterProps} from 'react-router';
- import styled from '@emotion/styled';
- import capitalize from 'lodash/capitalize';
- import MenuItemActionLink from 'sentry/components/actions/menuItemActionLink';
- import AsyncComponent from 'sentry/components/asyncComponent';
- import Button from 'sentry/components/button';
- import DropdownLink from 'sentry/components/dropdownLink';
- import EmptyMessage from 'sentry/components/emptyMessage';
- import IntegrationExternalMappingForm from 'sentry/components/integrationExternalMappingForm';
- import Pagination from 'sentry/components/pagination';
- import {Panel, PanelBody, PanelHeader, PanelItem} from 'sentry/components/panels';
- import Tooltip from 'sentry/components/tooltip';
- import {IconAdd, IconArrow, IconEllipsis, IconQuestion} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import PluginIcon from 'sentry/plugins/components/pluginIcon';
- import space from 'sentry/styles/space';
- import {
- ExternalActorMapping,
- ExternalActorMappingOrSuggestion,
- ExternalActorSuggestion,
- Integration,
- Organization,
- } from 'sentry/types';
- import {getIntegrationIcon, isExternalActorMapping} from 'sentry/utils/integrationUtil';
- type CodeOwnersAssociationMappings = {
- [projectSlug: string]: {
- associations: {
- [externalName: string]: string;
- };
- errors: {
- [errorKey: string]: string;
- };
- };
- };
- type Props = AsyncComponent['props'] &
- WithRouterProps &
- Pick<
- IntegrationExternalMappingForm['props'],
- | 'dataEndpoint'
- | 'getBaseFormEndpoint'
- | 'sentryNamesMapper'
- | 'onResults'
- | 'defaultOptions'
- > & {
- integration: Integration;
- mappings: ExternalActorMapping[];
- onCreate: (mapping?: ExternalActorMappingOrSuggestion) => void;
- onDelete: (mapping: ExternalActorMapping) => void;
- organization: Organization;
- type: 'team' | 'user';
- pageLinks?: string;
- };
- type State = AsyncComponent['state'] & {
- associationMappings: CodeOwnersAssociationMappings;
- newlyAssociatedMappings: ExternalActorMapping[];
- };
- class IntegrationExternalMappings extends AsyncComponent<Props, State> {
- getDefaultState(): State {
- return {
- ...super.getDefaultState(),
- associationMappings: {},
- newlyAssociatedMappings: [],
- };
- }
- getEndpoints(): ReturnType<AsyncComponent['getEndpoints']> {
- const {organization, integration} = this.props;
- return [
- [
- 'associationMappings',
- `/organizations/${organization.slug}/codeowners-associations/`,
- {query: {provider: integration.provider.key}},
- ],
- ];
- }
- get isFirstPage(): boolean {
- const {cursor} = this.props.location.query;
- return cursor ? cursor?.split(':')[1] === '0' : true;
- }
- get unassociatedMappings(): ExternalActorSuggestion[] {
- const {type} = this.props;
- const {associationMappings} = this.state;
- const errorKey = `missing_external_${type}s`;
- const unassociatedMappings = Object.values(associationMappings).reduce(
- (map, {errors}) => {
- return new Set<string>([...map, ...errors[errorKey]]);
- },
- new Set<string>()
- );
- return Array.from(unassociatedMappings).map(externalName => ({externalName}));
- }
- get allMappings(): ExternalActorMappingOrSuggestion[] {
- const {mappings} = this.props;
- if (!this.isFirstPage) {
- return mappings;
- }
- const {newlyAssociatedMappings} = this.state;
- const inlineMappings = this.unassociatedMappings.map(mapping => {
- // If this mapping has been changed, replace it with the new version from its change's response
- // The new version will be used in IntegrationExternalMappingForm to update the apiMethod and apiEndpoint
- const newlyAssociatedMapping = newlyAssociatedMappings.find(
- ({externalName}) => externalName === mapping.externalName
- );
- return newlyAssociatedMapping ?? mapping;
- });
- return [...inlineMappings, ...mappings];
- }
- renderMappingName(mapping: ExternalActorMappingOrSuggestion) {
- const {
- type,
- getBaseFormEndpoint,
- integration,
- dataEndpoint,
- sentryNamesMapper,
- onResults,
- defaultOptions,
- } = this.props;
- return (
- <IntegrationExternalMappingForm
- type={type}
- integration={integration}
- dataEndpoint={dataEndpoint}
- getBaseFormEndpoint={getBaseFormEndpoint}
- mapping={mapping}
- sentryNamesMapper={sentryNamesMapper}
- onResults={onResults}
- onSubmitSuccess={(newMapping: ExternalActorMapping) => {
- this.setState({
- newlyAssociatedMappings: [
- ...this.state.newlyAssociatedMappings.filter(
- map => map.externalName !== newMapping.externalName
- ),
- newMapping as ExternalActorMapping,
- ],
- });
- }}
- isInline
- defaultOptions={defaultOptions}
- />
- );
- }
- renderMappingOptions(mapping: ExternalActorMappingOrSuggestion) {
- const {type, onDelete, organization} = this.props;
- const canDelete = organization.access.includes('org:integrations');
- return isExternalActorMapping(mapping) ? (
- <Tooltip
- title={t(
- 'You must be an organization owner, manager or admin to delete an external user mapping.'
- )}
- disabled={canDelete}
- >
- <DropdownLink
- anchorRight
- disabled={!canDelete}
- customTitle={
- <Button
- borderless
- size="sm"
- icon={<IconEllipsisVertical size="sm" />}
- aria-label={t('Actions')}
- data-test-id="mapping-option"
- disabled={!canDelete}
- />
- }
- >
- <MenuItemActionLink
- shouldConfirm
- message={t('Are you sure you want to remove this external %s mapping?', type)}
- onAction={() => onDelete(mapping)}
- aria-label={t('Delete External %s', capitalize(type))}
- data-test-id="delete-mapping-button"
- >
- <RedText>{t('Delete')}</RedText>
- </MenuItemActionLink>
- </DropdownLink>
- </Tooltip>
- ) : (
- <Tooltip
- title={t('This %s mapping suggestion was generated from a CODEOWNERS file', type)}
- >
- <Button
- disabled
- borderless
- size="sm"
- icon={<IconQuestion size="sm" />}
- aria-label={t(
- `This %s mapping suggestion was generated from a CODEOWNERS file`,
- type
- )}
- data-test-id="suggestion-option"
- />
- </Tooltip>
- );
- }
- renderBody() {
- const {integration, type, onCreate, pageLinks} = this.props;
- return (
- <Fragment>
- <Panel>
- <PanelHeader disablePadding hasButtons>
- <HeaderLayout>
- <ExternalNameColumn header>
- {tct('External [type]', {type})}
- </ExternalNameColumn>
- <ArrowColumn>
- <IconArrow direction="right" size="md" />
- </ArrowColumn>
- <SentryNameColumn>{tct('Sentry [type]', {type})}</SentryNameColumn>
- <ButtonColumn>
- <AddButton
- data-test-id="add-mapping-button"
- onClick={() => onCreate()}
- size="xs"
- icon={<IconAdd size="xs" isCircled />}
- >
- <ButtonText>{tct('Add [type] Mapping', {type})}</ButtonText>
- </AddButton>
- </ButtonColumn>
- </HeaderLayout>
- </PanelHeader>
- <PanelBody data-test-id="mapping-table">
- {!this.allMappings.length && (
- <EmptyMessage
- icon={getIntegrationIcon(integration.provider.key, 'lg')}
- data-test-id="empty-message"
- >
- {tct('Set up External [type] Mappings.', {type: capitalize(type)})}
- </EmptyMessage>
- )}
- {this.allMappings.map((mapping, index) => (
- <ConfigPanelItem key={index}>
- <Layout>
- <ExternalNameColumn>
- <StyledPluginIcon pluginId={integration.provider.key} size={19} />
- <span>{mapping.externalName}</span>
- </ExternalNameColumn>
- <ArrowColumn>
- <IconArrow direction="right" size="md" />
- </ArrowColumn>
- <SentryNameColumn>{this.renderMappingName(mapping)}</SentryNameColumn>
- <ButtonColumn>{this.renderMappingOptions(mapping)}</ButtonColumn>
- </Layout>
- </ConfigPanelItem>
- ))}
- </PanelBody>
- </Panel>
- <Pagination pageLinks={pageLinks} />
- </Fragment>
- );
- }
- }
- export default withRouter(IntegrationExternalMappings);
- const AddButton = styled(Button)`
- text-transform: capitalize;
- height: inherit;
- `;
- const ButtonText = styled('div')`
- white-space: break-spaces;
- `;
- const Layout = styled('div')`
- display: grid;
- grid-column-gap: ${space(1)};
- padding: ${space(1)};
- width: 100%;
- align-items: center;
- grid-template-columns: 2.25fr 50px 2.75fr 100px;
- grid-template-areas: 'external-name arrow sentry-name button';
- `;
- const HeaderLayout = styled(Layout)`
- align-items: center;
- padding: 0 ${space(1)} 0 ${space(2)};
- text-transform: uppercase;
- `;
- const ConfigPanelItem = styled(PanelItem)`
- padding: 0 ${space(1)};
- `;
- const IconEllipsisVertical = styled(IconEllipsis)`
- transform: rotate(90deg);
- `;
- const StyledPluginIcon = styled(PluginIcon)`
- min-width: ${p => p.size}px;
- margin-right: ${space(2)};
- `;
- // Columns below
- const Column = styled('span')`
- overflow: hidden;
- overflow-wrap: break-word;
- `;
- const ExternalNameColumn = styled(Column)<{header?: boolean}>`
- grid-area: external-name;
- display: flex;
- align-items: center;
- font-family: ${p => (p.header ? 'inherit' : p.theme.text.familyMono)};
- `;
- const ArrowColumn = styled(Column)`
- grid-area: arrow;
- `;
- const SentryNameColumn = styled(Column)`
- grid-area: sentry-name;
- overflow: visible;
- `;
- const ButtonColumn = styled(Column)`
- grid-area: button;
- text-align: right;
- overflow: visible;
- `;
- const RedText = styled('span')`
- color: ${p => p.theme.red300};
- `;
|