mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8abf8ba956
[web] Various fixes for Group SSO GitOrigin-RevId: 0a98d7eed14b2878a6be5e28e54ab1f7ceb9be5f
89 lines
3.3 KiB
TypeScript
89 lines
3.3 KiB
TypeScript
import GroupSettingsButton from '@/features/subscription/components/dashboard/group-settings-button'
|
|
import getMeta from '@/utils/meta'
|
|
import { Trans, useTranslation } from 'react-i18next'
|
|
import { useSubscriptionDashboardContext } from '../../context/subscription-dashboard-context'
|
|
import { RowLink } from './row-link'
|
|
|
|
export default function ManagedGroupSubscriptions() {
|
|
const { t } = useTranslation()
|
|
const { managedGroupSubscriptions } = useSubscriptionDashboardContext()
|
|
|
|
if (!managedGroupSubscriptions) {
|
|
return null
|
|
}
|
|
|
|
const groupSettingsEnabledFor = getMeta(
|
|
'ol-groupSettingsEnabledFor',
|
|
[]
|
|
) as string[]
|
|
|
|
return (
|
|
<>
|
|
{managedGroupSubscriptions.map(subscription => {
|
|
return (
|
|
<div key={`managed-group-${subscription._id}`}>
|
|
<p>
|
|
{subscription.userIsGroupMember ? (
|
|
<Trans
|
|
i18nKey="you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z"
|
|
components={[
|
|
// eslint-disable-next-line react/jsx-key, jsx-a11y/anchor-has-content
|
|
<a href="/user/subscription/plans" />,
|
|
// eslint-disable-next-line react/jsx-key
|
|
<strong />,
|
|
]}
|
|
values={{
|
|
planName: subscription.planLevelName,
|
|
groupName: subscription.teamName || '',
|
|
adminEmail: subscription.admin_id.email,
|
|
}}
|
|
shouldUnescape
|
|
tOptions={{ interpolation: { escapeValue: true } }}
|
|
/>
|
|
) : (
|
|
<Trans
|
|
i18nKey="you_are_a_manager_of_x_plan_as_member_of_group_subscription_y_administered_by_z"
|
|
components={[
|
|
// eslint-disable-next-line react/jsx-key, jsx-a11y/anchor-has-content
|
|
<a href="/user/subscription/plans" />,
|
|
// eslint-disable-next-line react/jsx-key
|
|
<strong />,
|
|
]}
|
|
values={{
|
|
planName: subscription.planLevelName,
|
|
groupName: subscription.teamName || '',
|
|
adminEmail: subscription.admin_id.email,
|
|
}}
|
|
shouldUnescape
|
|
tOptions={{ interpolation: { escapeValue: true } }}
|
|
/>
|
|
)}
|
|
</p>
|
|
<RowLink
|
|
href={`/manage/groups/${subscription._id}/members`}
|
|
heading={t('manage_members')}
|
|
subtext={t('manage_group_members_subtext')}
|
|
icon="groups"
|
|
/>
|
|
<RowLink
|
|
href={`/manage/groups/${subscription._id}/managers`}
|
|
heading={t('manage_group_managers')}
|
|
subtext={t('manage_managers_subtext')}
|
|
icon="manage_accounts"
|
|
/>
|
|
{groupSettingsEnabledFor?.includes(subscription._id) && (
|
|
<GroupSettingsButton subscription={subscription} />
|
|
)}
|
|
<RowLink
|
|
href={`/metrics/groups/${subscription._id}`}
|
|
heading={t('view_metrics')}
|
|
subtext={t('view_metrics_group_subtext')}
|
|
icon="insights"
|
|
/>
|
|
<hr />
|
|
</div>
|
|
)
|
|
})}
|
|
</>
|
|
)
|
|
}
|