12345678910111213141516171819202122232425262728293031323334353637383940 |
- import Panel from 'sentry/components/panels/panel';
- import PanelHeader from 'sentry/components/panels/panelHeader';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {t} from 'sentry/locale';
- import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
- import type {Organization} from 'sentry/types/organization';
- import withOrganization from 'sentry/utils/withOrganization';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import {OrganizationRegionAction} from 'sentry/views/settings/organizationGeneralSettings/organizationRegionAction';
- import withSubscription from 'getsentry/components/withSubscription';
- import type {Subscription} from 'getsentry/types';
- import {GDPRPanel} from 'getsentry/views/legalAndCompliance/gdprPanel';
- import {TermsAndConditions} from 'getsentry/views/legalAndCompliance/termsAndConditions';
- import {BillingDetailsFormContainer} from 'getsentry/views/subscriptionPage/billingDetails';
- type Props = RouteComponentProps<unknown, unknown> & {
- organization: Organization;
- subscription: Subscription;
- };
- function LegalAndCompliance(props: Props) {
- return (
- <div>
- <SentryDocumentTitle title={t('Legal & Compliance')} />
- <SettingsPageHeader
- title="Legal & Compliance"
- action={OrganizationRegionAction({organization: props.organization})}
- />
- <TermsAndConditions {...props} />
- <GDPRPanel subscription={props.subscription} />
- <Panel>
- <PanelHeader>{t('Company Details')}</PanelHeader>
- <BillingDetailsFormContainer organization={props.organization} />
- </Panel>
- </div>
- );
- }
- export default withOrganization(withSubscription(LegalAndCompliance));
|