mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
c8ef5e6f65
[web] Migrate institution memberships dash to React GitOrigin-RevId: 75bb8e7d7338418733a836a8e654fe5b0a9fceff
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import { Trans } from 'react-i18next'
|
|
import { Institution } from '../../../../../../types/institution'
|
|
|
|
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>
|
|
))}
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default InstitutionMemberships
|