mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
2499ecadcc
[web] Begin to migrate personal subscription dash commons to React GitOrigin-RevId: 43c096bd72199c8c0a7b40c8fd84a0a12c108217
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import { Trans } from 'react-i18next'
|
|
import { Institution } from '../../../../../../types/institution'
|
|
import PremiumFeaturesLink from './premium-features-link'
|
|
|
|
type InstitutionMembershipsProps = {
|
|
memberships?: Array<Institution>
|
|
}
|
|
|
|
function InstitutionMemberships({ memberships }: InstitutionMembershipsProps) {
|
|
// memberships is undefined when data failed to load. If user has no memberships, then an empty array is returned
|
|
|
|
if (!memberships) {
|
|
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>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
{memberships.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>
|
|
))}
|
|
{memberships.length > 0 && <PremiumFeaturesLink />}
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default InstitutionMemberships
|