|
@@ -1,4 +1,4 @@
|
|
|
-import {Component, Fragment} from 'react';
|
|
|
+import {Fragment} from 'react';
|
|
|
import styled from '@emotion/styled';
|
|
|
|
|
|
import {
|
|
@@ -20,40 +20,45 @@ import space from 'sentry/styles/space';
|
|
|
import {Organization, Repository, RepositoryStatus} from 'sentry/types';
|
|
|
import withOrganization from 'sentry/utils/withOrganization';
|
|
|
|
|
|
-type DefaultProps = {
|
|
|
- showProvider?: boolean;
|
|
|
-};
|
|
|
-
|
|
|
-type Props = DefaultProps & {
|
|
|
+type Props = {
|
|
|
api: Client;
|
|
|
orgId: string;
|
|
|
organization: Organization;
|
|
|
repository: Repository;
|
|
|
onRepositoryChange?: (data: {id: string; status: RepositoryStatus}) => void;
|
|
|
+ showProvider?: boolean;
|
|
|
};
|
|
|
|
|
|
-class RepositoryRow extends Component<Props> {
|
|
|
- static defaultProps: DefaultProps = {
|
|
|
- showProvider: false,
|
|
|
- };
|
|
|
-
|
|
|
- getStatusLabel(repo: Repository) {
|
|
|
- switch (repo.status) {
|
|
|
- case RepositoryStatus.PENDING_DELETION:
|
|
|
- return 'Deletion Queued';
|
|
|
- case RepositoryStatus.DELETION_IN_PROGRESS:
|
|
|
- return 'Deletion in Progress';
|
|
|
- case RepositoryStatus.DISABLED:
|
|
|
- return 'Disabled';
|
|
|
- case RepositoryStatus.HIDDEN:
|
|
|
- return 'Disabled';
|
|
|
- default:
|
|
|
- return null;
|
|
|
- }
|
|
|
+function getStatusLabel(repo: Repository) {
|
|
|
+ switch (repo.status) {
|
|
|
+ case RepositoryStatus.PENDING_DELETION:
|
|
|
+ return 'Deletion Queued';
|
|
|
+ case RepositoryStatus.DELETION_IN_PROGRESS:
|
|
|
+ return 'Deletion in Progress';
|
|
|
+ case RepositoryStatus.DISABLED:
|
|
|
+ return 'Disabled';
|
|
|
+ case RepositoryStatus.HIDDEN:
|
|
|
+ return 'Disabled';
|
|
|
+ default:
|
|
|
+ return null;
|
|
|
}
|
|
|
+}
|
|
|
|
|
|
- cancelDelete = () => {
|
|
|
- const {api, orgId, repository, onRepositoryChange} = this.props;
|
|
|
+function RepositoryRow({
|
|
|
+ api,
|
|
|
+ repository,
|
|
|
+ onRepositoryChange,
|
|
|
+ organization,
|
|
|
+ orgId,
|
|
|
+ showProvider = false,
|
|
|
+}: Props) {
|
|
|
+ const isCustomRepo =
|
|
|
+ organization.features.includes('integrations-custom-scm') &&
|
|
|
+ repository.provider.id === 'integrations:custom_scm';
|
|
|
+
|
|
|
+ const isActive = repository.status === RepositoryStatus.ACTIVE;
|
|
|
+
|
|
|
+ const cancelDelete = () =>
|
|
|
cancelDeleteRepository(api, orgId, repository.id).then(
|
|
|
data => {
|
|
|
if (onRepositoryChange) {
|
|
@@ -62,10 +67,8 @@ class RepositoryRow extends Component<Props> {
|
|
|
},
|
|
|
() => {}
|
|
|
);
|
|
|
- };
|
|
|
|
|
|
- deleteRepo = () => {
|
|
|
- const {api, orgId, repository, onRepositoryChange} = this.props;
|
|
|
+ const deleteRepo = () =>
|
|
|
deleteRepository(api, orgId, repository.id).then(
|
|
|
data => {
|
|
|
if (onRepositoryChange) {
|
|
@@ -74,51 +77,38 @@ class RepositoryRow extends Component<Props> {
|
|
|
},
|
|
|
() => {}
|
|
|
);
|
|
|
- };
|
|
|
|
|
|
- handleEditRepo = (data: Repository) => {
|
|
|
- const {onRepositoryChange} = this.props;
|
|
|
- if (onRepositoryChange) {
|
|
|
- onRepositoryChange(data);
|
|
|
- }
|
|
|
+ const handleEditRepo = (data: Repository) => {
|
|
|
+ onRepositoryChange?.(data);
|
|
|
};
|
|
|
|
|
|
- get isActive() {
|
|
|
- return this.props.repository.status === RepositoryStatus.ACTIVE;
|
|
|
- }
|
|
|
-
|
|
|
- renderDeleteButton(hasAccess) {
|
|
|
- const {repository} = this.props;
|
|
|
- const isActive = this.isActive;
|
|
|
- return (
|
|
|
- <Tooltip
|
|
|
- title={t(
|
|
|
- 'You must be an organization owner, manager or admin to remove a repository.'
|
|
|
+ const renderDeleteButton = (hasAccess: boolean) => (
|
|
|
+ <Tooltip
|
|
|
+ title={t(
|
|
|
+ 'You must be an organization owner, manager or admin to remove a repository.'
|
|
|
+ )}
|
|
|
+ disabled={hasAccess}
|
|
|
+ >
|
|
|
+ <Confirm
|
|
|
+ disabled={
|
|
|
+ !hasAccess || (!isActive && repository.status !== RepositoryStatus.DISABLED)
|
|
|
+ }
|
|
|
+ onConfirm={deleteRepo}
|
|
|
+ message={t(
|
|
|
+ 'Are you sure you want to remove this repository? All associated commit data will be removed in addition to the repository.'
|
|
|
)}
|
|
|
- disabled={hasAccess}
|
|
|
>
|
|
|
- <Confirm
|
|
|
- disabled={
|
|
|
- !hasAccess || (!isActive && repository.status !== RepositoryStatus.DISABLED)
|
|
|
- }
|
|
|
- onConfirm={this.deleteRepo}
|
|
|
- message={t(
|
|
|
- 'Are you sure you want to remove this repository? All associated commit data will be removed in addition to the repository.'
|
|
|
- )}
|
|
|
- >
|
|
|
- <StyledButton
|
|
|
- size="xsmall"
|
|
|
- icon={<IconDelete size="xs" />}
|
|
|
- aria-label={t('delete')}
|
|
|
- disabled={!hasAccess}
|
|
|
- />
|
|
|
- </Confirm>
|
|
|
- </Tooltip>
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- openModal = () => {
|
|
|
- const {repository, orgId} = this.props;
|
|
|
+ <StyledButton
|
|
|
+ size="xsmall"
|
|
|
+ icon={<IconDelete size="xs" />}
|
|
|
+ aria-label={t('delete')}
|
|
|
+ disabled={!hasAccess}
|
|
|
+ />
|
|
|
+ </Confirm>
|
|
|
+ </Tooltip>
|
|
|
+ );
|
|
|
+
|
|
|
+ const triggerModal = () =>
|
|
|
openModal(({Body, Header, closeModal}) => (
|
|
|
<Fragment>
|
|
|
<Header closeButton>{t('Edit Repository')}</Header>
|
|
@@ -126,75 +116,66 @@ class RepositoryRow extends Component<Props> {
|
|
|
<RepositoryEditForm
|
|
|
orgSlug={orgId}
|
|
|
repository={repository}
|
|
|
- onSubmitSuccess={this.handleEditRepo}
|
|
|
+ onSubmitSuccess={handleEditRepo}
|
|
|
closeModal={closeModal}
|
|
|
onCancel={closeModal}
|
|
|
/>
|
|
|
</Body>
|
|
|
</Fragment>
|
|
|
));
|
|
|
- };
|
|
|
|
|
|
- render() {
|
|
|
- const {repository, showProvider, organization} = this.props;
|
|
|
- const isActive = this.isActive;
|
|
|
- const isCustomRepo =
|
|
|
- organization.features.includes('integrations-custom-scm') &&
|
|
|
- repository.provider.id === 'integrations:custom_scm';
|
|
|
-
|
|
|
- return (
|
|
|
- <Access access={['org:integrations']}>
|
|
|
- {({hasAccess}) => (
|
|
|
- <StyledPanelItem status={repository.status}>
|
|
|
- <RepositoryTitleAndUrl>
|
|
|
- <RepositoryTitle>
|
|
|
- <strong>{repository.name}</strong>
|
|
|
- {!isActive && <small> — {this.getStatusLabel(repository)}</small>}
|
|
|
- {repository.status === RepositoryStatus.PENDING_DELETION && (
|
|
|
- <StyledButton
|
|
|
- size="xsmall"
|
|
|
- onClick={this.cancelDelete}
|
|
|
- disabled={!hasAccess}
|
|
|
- data-test-id="repo-cancel"
|
|
|
- >
|
|
|
- {t('Cancel')}
|
|
|
- </StyledButton>
|
|
|
- )}
|
|
|
- </RepositoryTitle>
|
|
|
- <div>
|
|
|
- {showProvider && <small>{repository.provider.name}</small>}
|
|
|
- {showProvider && repository.url && <span> — </span>}
|
|
|
- {repository.url && (
|
|
|
- <small>
|
|
|
- <ExternalLink href={repository.url}>
|
|
|
- {repository.url.replace('https://', '')}
|
|
|
- </ExternalLink>
|
|
|
- </small>
|
|
|
- )}
|
|
|
- </div>
|
|
|
- </RepositoryTitleAndUrl>
|
|
|
- {isCustomRepo ? (
|
|
|
- <EditAndDelete>
|
|
|
+ return (
|
|
|
+ <Access access={['org:integrations']}>
|
|
|
+ {({hasAccess}) => (
|
|
|
+ <StyledPanelItem status={repository.status}>
|
|
|
+ <RepositoryTitleAndUrl>
|
|
|
+ <RepositoryTitle>
|
|
|
+ <strong>{repository.name}</strong>
|
|
|
+ {!isActive && <small> — {getStatusLabel(repository)}</small>}
|
|
|
+ {repository.status === RepositoryStatus.PENDING_DELETION && (
|
|
|
<StyledButton
|
|
|
size="xsmall"
|
|
|
- icon={<IconEdit size="xs" />}
|
|
|
- aria-label={t('edit')}
|
|
|
- disabled={
|
|
|
- !hasAccess ||
|
|
|
- (!isActive && repository.status !== RepositoryStatus.DISABLED)
|
|
|
- }
|
|
|
- onClick={() => this.openModal()}
|
|
|
- />
|
|
|
- {this.renderDeleteButton(hasAccess)}
|
|
|
- </EditAndDelete>
|
|
|
- ) : (
|
|
|
- this.renderDeleteButton(hasAccess)
|
|
|
- )}
|
|
|
- </StyledPanelItem>
|
|
|
- )}
|
|
|
- </Access>
|
|
|
- );
|
|
|
- }
|
|
|
+ onClick={cancelDelete}
|
|
|
+ disabled={!hasAccess}
|
|
|
+ data-test-id="repo-cancel"
|
|
|
+ >
|
|
|
+ {t('Cancel')}
|
|
|
+ </StyledButton>
|
|
|
+ )}
|
|
|
+ </RepositoryTitle>
|
|
|
+ <div>
|
|
|
+ {showProvider && <small>{repository.provider.name}</small>}
|
|
|
+ {showProvider && repository.url && <span> — </span>}
|
|
|
+ {repository.url && (
|
|
|
+ <small>
|
|
|
+ <ExternalLink href={repository.url}>
|
|
|
+ {repository.url.replace('https://', '')}
|
|
|
+ </ExternalLink>
|
|
|
+ </small>
|
|
|
+ )}
|
|
|
+ </div>
|
|
|
+ </RepositoryTitleAndUrl>
|
|
|
+ {isCustomRepo ? (
|
|
|
+ <EditAndDelete>
|
|
|
+ <StyledButton
|
|
|
+ size="xsmall"
|
|
|
+ icon={<IconEdit size="xs" />}
|
|
|
+ aria-label={t('edit')}
|
|
|
+ disabled={
|
|
|
+ !hasAccess ||
|
|
|
+ (!isActive && repository.status !== RepositoryStatus.DISABLED)
|
|
|
+ }
|
|
|
+ onClick={triggerModal}
|
|
|
+ />
|
|
|
+ {renderDeleteButton(hasAccess)}
|
|
|
+ </EditAndDelete>
|
|
|
+ ) : (
|
|
|
+ renderDeleteButton(hasAccess)
|
|
|
+ )}
|
|
|
+ </StyledPanelItem>
|
|
|
+ )}
|
|
|
+ </Access>
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
const StyledPanelItem = styled(PanelItem)<{status: RepositoryStatus}>`
|