mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
48587a7a62
[web] Successful subscription react migration GitOrigin-RevId: 1d7d849415f4b7a7f60ddf8a4e18570ff5142196
108 lines
3.7 KiB
TypeScript
108 lines
3.7 KiB
TypeScript
import { useTranslation, Trans } from 'react-i18next'
|
|
import { Col, Row } from 'react-bootstrap'
|
|
import { PriceExceptions } from '../shared/price-exceptions'
|
|
import PremiumFeaturesLink from '../dashboard/premium-features-link'
|
|
import getMeta from '../../../../utils/meta'
|
|
import { useSubscriptionDashboardContext } from '../../context/subscription-dashboard-context'
|
|
import { ExposedSettings } from '../../../../../../types/exposed-settings'
|
|
|
|
function SuccessfulSubscription() {
|
|
const { t } = useTranslation()
|
|
const { personalSubscription: subscription } =
|
|
useSubscriptionDashboardContext()
|
|
const postCheckoutRedirect = getMeta('ol-postCheckoutRedirect') as
|
|
| string
|
|
| undefined
|
|
const { appName, adminEmail }: ExposedSettings = getMeta('ol-ExposedSettings')
|
|
|
|
if (!subscription || !('recurly' in subscription)) return null
|
|
|
|
return (
|
|
<div className="container">
|
|
<Row>
|
|
<Col md={8} mdOffset={2}>
|
|
<div className="card">
|
|
<div className="page-header">
|
|
<h2>{t('thanks_for_subscribing')}</h2>
|
|
</div>
|
|
<div role="alert" className="alert alert-success">
|
|
{subscription.recurly.trial_ends_at && (
|
|
<>
|
|
<p>
|
|
<Trans
|
|
i18nKey="next_payment_of_x_collectected_on_y"
|
|
values={{
|
|
paymentAmmount: subscription.recurly.displayPrice,
|
|
collectionDate: subscription.recurly.nextPaymentDueAt,
|
|
}}
|
|
components={[<strong />, <strong />]} // eslint-disable-line react/jsx-key
|
|
/>
|
|
</p>
|
|
<PriceExceptions subscription={subscription} />
|
|
</>
|
|
)}
|
|
<p>
|
|
{t('to_modify_your_subscription_go_to')}
|
|
<a href="/user/subscription" rel="noopener noreferrer">
|
|
{t('manage_subscription')}.
|
|
</a>
|
|
</p>
|
|
</div>
|
|
{subscription.groupPlan && (
|
|
<p>
|
|
<a
|
|
href={`/manage/groups/${subscription._id}/members`}
|
|
className="btn btn-primary btn-large"
|
|
>
|
|
{t('add_your_first_group_member_now')}
|
|
</a>
|
|
</p>
|
|
)}
|
|
<p>
|
|
{t('thanks_for_subscribing_you_help_sl', {
|
|
planName: subscription.plan.name,
|
|
})}
|
|
</p>
|
|
<PremiumFeaturesLink />
|
|
<p>
|
|
{t('need_anything_contact_us_at')}
|
|
<a href={`mailto:${adminEmail}`} rel="noopener noreferrer">
|
|
{adminEmail}
|
|
</a>
|
|
.
|
|
</p>
|
|
<p>
|
|
<Trans
|
|
i18nKey="help_improve_overleaf_fill_out_this_survey"
|
|
components={[
|
|
// eslint-disable-next-line react/jsx-key, jsx-a11y/anchor-has-content
|
|
<a
|
|
href="https://forms.gle/CdLNX9m6NLxkv1yr5"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
/>,
|
|
]}
|
|
/>
|
|
</p>
|
|
<p>
|
|
{t('regards')},
|
|
<br />
|
|
The {appName} Team
|
|
</p>
|
|
<p>
|
|
<a
|
|
className="btn btn-primary"
|
|
href={postCheckoutRedirect || '/project'}
|
|
rel="noopener noreferrer"
|
|
>
|
|
< {t('back_to_your_projects')}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default SuccessfulSubscription
|