mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
146a207fd1
[SettingsPage] Refactor Linking Section GitOrigin-RevId: 49aa27cdcb3669c59c9a9c46edd3249cee876dd0
135 lines
4 KiB
TypeScript
135 lines
4 KiB
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import importOverleafModules from '../../../../macros/import-overleaf-module.macro'
|
|
import { useSSOContext, SSOSubscription } from '../context/sso-context'
|
|
import { SSOLinkingWidget } from './linking/sso-widget'
|
|
|
|
const integrationLinkingWidgets = importOverleafModules(
|
|
'integrationLinkingWidgets'
|
|
)
|
|
const referenceLinkingWidgets = importOverleafModules('referenceLinkingWidgets')
|
|
|
|
function LinkingSection() {
|
|
const { t } = useTranslation()
|
|
const { subscriptions } = useSSOContext()
|
|
|
|
const hasIntegrationLinkingSection = integrationLinkingWidgets.length
|
|
const hasReferencesLinkingSection = referenceLinkingWidgets.length
|
|
const hasSSOLinkingSection = Object.keys(subscriptions).length > 0
|
|
|
|
if (
|
|
!hasIntegrationLinkingSection &&
|
|
!hasReferencesLinkingSection &&
|
|
!hasSSOLinkingSection
|
|
) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<h3>{t('integrations')}</h3>
|
|
<p>{t('linked_accounts_explained')}</p>
|
|
{hasIntegrationLinkingSection ? (
|
|
<>
|
|
<h3 className="text-capitalize">{t('sync_dropbox_github')}</h3>
|
|
<div className="settings-widgets-container">
|
|
{integrationLinkingWidgets.map(
|
|
({ import: importObject, path }, widgetIndex) => (
|
|
<ModuleLinkingWidget
|
|
key={Object.keys(importObject)[0]}
|
|
ModuleComponent={Object.values(importObject)[0]}
|
|
isLast={widgetIndex === integrationLinkingWidgets.length - 1}
|
|
/>
|
|
)
|
|
)}
|
|
</div>
|
|
</>
|
|
) : null}
|
|
{hasReferencesLinkingSection ? (
|
|
<>
|
|
<h3 className="text-capitalize">{t('reference_sync')}</h3>
|
|
<div className="settings-widgets-container">
|
|
{referenceLinkingWidgets.map(
|
|
({ import: importObject, path }, widgetIndex) => (
|
|
<ModuleLinkingWidget
|
|
key={Object.keys(importObject)[0]}
|
|
ModuleComponent={Object.values(importObject)[0]}
|
|
isLast={widgetIndex === referenceLinkingWidgets.length - 1}
|
|
/>
|
|
)
|
|
)}
|
|
</div>
|
|
</>
|
|
) : null}
|
|
{hasSSOLinkingSection ? (
|
|
<>
|
|
<h3 className="text-capitalize">{t('linked_accounts')}</h3>
|
|
<div className="settings-widgets-container">
|
|
{Object.values(subscriptions).map(
|
|
(subscription, subscriptionIndex) => (
|
|
<SSOLinkingWidgetContainer
|
|
key={subscription.providerId}
|
|
subscription={subscription}
|
|
isLast={
|
|
subscriptionIndex === Object.keys(subscriptions).length - 1
|
|
}
|
|
/>
|
|
)
|
|
)}
|
|
</div>
|
|
</>
|
|
) : null}
|
|
{hasIntegrationLinkingSection ||
|
|
hasReferencesLinkingSection ||
|
|
hasSSOLinkingSection ? (
|
|
<hr />
|
|
) : null}
|
|
</>
|
|
)
|
|
}
|
|
|
|
type LinkingWidgetProps = {
|
|
ModuleComponent: any
|
|
isLast: boolean
|
|
}
|
|
|
|
function ModuleLinkingWidget({ ModuleComponent, isLast }: LinkingWidgetProps) {
|
|
return (
|
|
<>
|
|
<ModuleComponent />
|
|
{isLast ? null : <hr />}
|
|
</>
|
|
)
|
|
}
|
|
|
|
type SSOLinkingWidgetContainerProps = {
|
|
subscription: SSOSubscription
|
|
isLast: boolean
|
|
}
|
|
|
|
function SSOLinkingWidgetContainer({
|
|
subscription,
|
|
isLast,
|
|
}: SSOLinkingWidgetContainerProps) {
|
|
const { t } = useTranslation()
|
|
const { unlink } = useSSOContext()
|
|
|
|
return (
|
|
<>
|
|
<SSOLinkingWidget
|
|
providerId={subscription.providerId}
|
|
title={subscription.provider.name}
|
|
description={t(
|
|
subscription.provider.descriptionKey,
|
|
subscription.provider.descriptionOptions
|
|
)}
|
|
helpPath={subscription.provider.descriptionOptions?.link}
|
|
linked={subscription.linked}
|
|
linkPath={subscription.provider.linkPath}
|
|
onUnlink={() => unlink(subscription.providerId)}
|
|
/>
|
|
{isLast ? null : <hr />}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default LinkingSection
|