mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1cde138160
GitOrigin-RevId: b88d765d859f1bdf1eb1d469131c8f239f327562
50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
import { Trans } from 'react-i18next'
|
|
import { Institution } from '../../../../../../types/institution'
|
|
import { useSubscriptionDashboardContext } from '../../context/subscription-dashboard-context'
|
|
|
|
function InstitutionMemberships() {
|
|
const { institutionMemberships } = useSubscriptionDashboardContext()
|
|
|
|
// memberships is undefined when data failed to load. If user has no memberships, then an empty array is returned
|
|
|
|
if (!institutionMemberships) {
|
|
return (
|
|
<div className="alert alert-warning">
|
|
<p>
|
|
Sorry, something went wrong. Subscription information related to
|
|
institutional affiliations may not be displayed. Please try again
|
|
later.
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (!institutionMemberships.length) return null
|
|
|
|
return (
|
|
<div>
|
|
{institutionMemberships.map((institution: Institution) => (
|
|
<div key={`${institution.id}`}>
|
|
<Trans
|
|
i18nKey="you_are_on_x_plan_as_a_confirmed_member_of_institution_y"
|
|
values={{
|
|
planName: 'Professional',
|
|
institutionName: institution.name || '',
|
|
}}
|
|
components={[
|
|
// eslint-disable-next-line react/jsx-key, jsx-a11y/anchor-has-content
|
|
<a href="/user/subscription/plans" rel="noopener" />,
|
|
// eslint-disable-next-line react/jsx-key
|
|
<strong />,
|
|
// eslint-disable-next-line react/jsx-key
|
|
<strong />,
|
|
]}
|
|
/>
|
|
<hr />
|
|
</div>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default InstitutionMemberships
|