import AlertLink from 'sentry/components/alertLink'; import {Button} from 'sentry/components/button'; import EmptyMessage from 'sentry/components/emptyMessage'; import ExternalLink from 'sentry/components/links/externalLink'; import Panel from 'sentry/components/panels/panel'; import PanelBody from 'sentry/components/panels/panelBody'; import PanelHeader from 'sentry/components/panels/panelHeader'; import RepositoryRow from 'sentry/components/repositoryRow'; import {IconCommit} from 'sentry/icons'; import {t, tct} from 'sentry/locale'; import type {Organization, Repository, RepositoryStatus} from 'sentry/types'; import useApi from 'sentry/utils/useApi'; import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader'; import TextBlock from 'sentry/views/settings/components/text/textBlock'; type Props = { itemList: Repository[]; onRepositoryChange: (data: {id: string; status: RepositoryStatus}) => void; organization: Organization; }; function OrganizationRepositories({itemList, onRepositoryChange, organization}: Props) { const api = useApi(); const hasItemList = itemList && itemList.length > 0; return (
{t( 'Want to add a repository to start tracking commits? Install or configure your version control integration here.' )} {!hasItemList && (
{t( "Connecting a repository allows Sentry to capture commit data via webhooks. This enables features like suggested assignees and resolving issues via commit message. Once you've connected a repository, you can associate commits with releases via the API." )}   {tct('See our [link:documentation] for more details.', { link: , })}
)} {hasItemList ? ( {t('Added Repositories')}
{itemList.map(repo => ( ))}
) : ( } title={t('Sentry is better with commit data')} description={t( 'Adding one or more repositories will enable enhanced releases and the ability to resolve Sentry Issues via git message.' )} action={ } /> )}
); } export default OrganizationRepositories;