123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- import {Fragment, useState} from 'react';
- import styled from '@emotion/styled';
- import {removeSentryApp} from 'sentry/actionCreators/sentryApps';
- import EmptyMessage from 'sentry/components/emptyMessage';
- import ExternalLink from 'sentry/components/links/externalLink';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import NavTabs from 'sentry/components/navTabs';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import PanelHeader from 'sentry/components/panels/panelHeader';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {t, tct} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {SentryApp} from 'sentry/types/integrations';
- import {
- platformEventLinkMap,
- PlatformEvents,
- } from 'sentry/utils/analytics/integrations/platformAnalyticsEvents';
- import {trackIntegrationAnalytics} from 'sentry/utils/integrationUtil';
- import {useApiQuery} from 'sentry/utils/queryClient';
- import useApi from 'sentry/utils/useApi';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import SentryApplicationRow from 'sentry/views/settings/organizationDeveloperSettings/sentryApplicationRow';
- import CreateIntegrationButton from 'sentry/views/settings/organizationIntegrations/createIntegrationButton';
- import ExampleIntegrationButton from 'sentry/views/settings/organizationIntegrations/exampleIntegrationButton';
- type Tab = 'public' | 'internal';
- function OrganizationDeveloperSettings() {
- const location = useLocation();
- const organization = useOrganization();
- const api = useApi({persistInFlight: true});
- const value =
- ['public', 'internal'].find(tab => tab === location?.query?.type) || 'internal';
- const analyticsView = 'developer_settings';
- const tabs: Array<[id: Tab, label: string]> = [
- ['internal', t('Internal Integration')],
- ['public', t('Public Integration')],
- ];
- const [tab, setTab] = useState<Tab>(value as Tab);
- const [applicationsState, setApplicationsState] = useState<SentryApp[] | undefined>(
- undefined
- );
- const {
- data: fetchedApplications,
- isPending,
- isError,
- refetch,
- } = useApiQuery<SentryApp[]>([`/organizations/${organization.slug}/sentry-apps/`], {
- staleTime: 0,
- });
- if (isPending) {
- return <LoadingIndicator />;
- }
- if (isError) {
- return <LoadingError onRetry={refetch} />;
- }
- const applications = applicationsState ?? fetchedApplications;
- const removeApp = (app: SentryApp) => {
- const apps = applications.filter(a => a.slug !== app.slug);
- removeSentryApp(api, app).then(
- () => setApplicationsState(apps),
- () => {}
- );
- };
- const renderApplicationRow = (app: SentryApp) => {
- return (
- <SentryApplicationRow
- key={app.uuid}
- app={app}
- organization={organization}
- onRemoveApp={removeApp}
- />
- );
- };
- const renderInternalIntegrations = () => {
- const integrations = applications.filter(
- (app: SentryApp) => app.status === 'internal'
- );
- const isEmpty = integrations.length === 0;
- return (
- <Panel>
- <PanelHeader>{t('Internal Integrations')}</PanelHeader>
- <PanelBody>
- {!isEmpty ? (
- integrations.map(renderApplicationRow)
- ) : (
- <EmptyMessage>
- {t('No internal integrations have been created yet.')}
- </EmptyMessage>
- )}
- </PanelBody>
- </Panel>
- );
- };
- const renderPublicIntegrations = () => {
- const integrations = applications.filter(app => app.status !== 'internal');
- const isEmpty = integrations.length === 0;
- return (
- <Panel>
- <PanelHeader>{t('Public Integrations')}</PanelHeader>
- <PanelBody>
- {!isEmpty ? (
- integrations.map(renderApplicationRow)
- ) : (
- <EmptyMessage>
- {t('No public integrations have been created yet.')}
- </EmptyMessage>
- )}
- </PanelBody>
- </Panel>
- );
- };
- const renderTabContent = () => {
- switch (tab) {
- case 'internal':
- return renderInternalIntegrations();
- case 'public':
- default:
- return renderPublicIntegrations();
- }
- };
- return (
- <div>
- <SentryDocumentTitle title={t('Custom Integrations')} orgSlug={organization.slug} />
- <SettingsPageHeader
- title={t('Custom Integrations')}
- body={
- <Fragment>
- {t(
- 'Create integrations that interact with Sentry using the REST API and webhooks. '
- )}
- <br />
- {tct('For more information [link: see our docs].', {
- link: (
- <ExternalLink
- href={platformEventLinkMap[PlatformEvents.DOCS]}
- onClick={() => {
- trackIntegrationAnalytics(PlatformEvents.DOCS, {
- organization,
- view: analyticsView,
- });
- }}
- />
- ),
- })}
- </Fragment>
- }
- action={
- <ActionContainer>
- <ExampleIntegrationButton
- analyticsView={analyticsView}
- style={{marginRight: space(1)}}
- />
- <CreateIntegrationButton analyticsView={analyticsView} />
- </ActionContainer>
- }
- />
- <NavTabs underlined>
- {tabs.map(([type, label]) => (
- <li
- key={type}
- className={tab === type ? 'active' : ''}
- onClick={() => setTab(type)}
- >
- <a>{label}</a>
- </li>
- ))}
- </NavTabs>
- {renderTabContent()}
- </div>
- );
- }
- const ActionContainer = styled('div')`
- display: flex;
- `;
- export default OrganizationDeveloperSettings;
|