mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-28 22:23:17 -05:00
Merge pull request #11970 from overleaf/ab-sub-dash-already-have-warning
[web] Display a warning on subscription dash when coming from plans page GitOrigin-RevId: 6c6294fbf634a5dcd1a09b94538add6586ebd15b
This commit is contained in:
parent
ebc04e4a9d
commit
0037e45740
5 changed files with 25 additions and 0 deletions
|
@ -15,6 +15,7 @@ block append meta
|
||||||
meta(name="ol-planCodesChangingAtTermEnd" data-type="json", content=planCodesChangingAtTermEnd)
|
meta(name="ol-planCodesChangingAtTermEnd" data-type="json", content=planCodesChangingAtTermEnd)
|
||||||
meta(name="ol-currentInstitutionsWithLicence" data-type="json" content=currentInstitutionsWithLicence)
|
meta(name="ol-currentInstitutionsWithLicence" data-type="json" content=currentInstitutionsWithLicence)
|
||||||
meta(name="ol-hasSubscription" data-type="boolean" content=hasSubscription)
|
meta(name="ol-hasSubscription" data-type="boolean" content=hasSubscription)
|
||||||
|
meta(name="ol-fromPlansPage" data-type="boolean" content=fromPlansPage)
|
||||||
meta(name="ol-plans", data-type="json" content=plans)
|
meta(name="ol-plans", data-type="json" content=plans)
|
||||||
if (personalSubscription && personalSubscription.recurly)
|
if (personalSubscription && personalSubscription.recurly)
|
||||||
meta(name="ol-recurlyApiKey" content=settings.apis.recurly.publicKey)
|
meta(name="ol-recurlyApiKey" content=settings.apis.recurly.publicKey)
|
||||||
|
|
|
@ -913,6 +913,7 @@
|
||||||
"x_price_per_user": "",
|
"x_price_per_user": "",
|
||||||
"x_price_per_year": "",
|
"x_price_per_year": "",
|
||||||
"year": "",
|
"year": "",
|
||||||
|
"you_already_have_a_subscription": "",
|
||||||
"you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z": "",
|
"you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z": "",
|
||||||
"you_are_a_manager_of_commons_at_institution_x": "",
|
"you_are_a_manager_of_commons_at_institution_x": "",
|
||||||
"you_are_a_manager_of_publisher_x": "",
|
"you_are_a_manager_of_publisher_x": "",
|
||||||
|
|
|
@ -8,16 +8,25 @@ import PersonalSubscription from './personal-subscription'
|
||||||
import ManagedGroupSubscriptions from './managed-group-subscriptions'
|
import ManagedGroupSubscriptions from './managed-group-subscriptions'
|
||||||
import ManagedInstitutions from './managed-institutions'
|
import ManagedInstitutions from './managed-institutions'
|
||||||
import { useSubscriptionDashboardContext } from '../../context/subscription-dashboard-context'
|
import { useSubscriptionDashboardContext } from '../../context/subscription-dashboard-context'
|
||||||
|
import getMeta from '../../../../utils/meta'
|
||||||
|
import { Alert } from 'react-bootstrap'
|
||||||
|
|
||||||
function SubscriptionDashboard() {
|
function SubscriptionDashboard() {
|
||||||
const { t } = useTranslation()
|
const { t } = useTranslation()
|
||||||
const { hasDisplayedSubscription, hasSubscription } =
|
const { hasDisplayedSubscription, hasSubscription } =
|
||||||
useSubscriptionDashboardContext()
|
useSubscriptionDashboardContext()
|
||||||
|
|
||||||
|
const fromPlansPage: boolean = getMeta('ol-fromPlansPage')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-md-8 col-md-offset-2">
|
<div className="col-md-8 col-md-offset-2">
|
||||||
|
{fromPlansPage && (
|
||||||
|
<Alert bsStyle="warning">
|
||||||
|
{t('you_already_have_a_subscription')}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
<div className="card">
|
<div className="card">
|
||||||
<div className="page-header">
|
<div className="page-header">
|
||||||
<h1>{t('your_subscription')}</h1>
|
<h1>{t('your_subscription')}</h1>
|
||||||
|
|
|
@ -1680,6 +1680,7 @@
|
||||||
"year": "year",
|
"year": "year",
|
||||||
"yes_move_me_to_personal_plan": "Yes, move me to the Personal plan",
|
"yes_move_me_to_personal_plan": "Yes, move me to the Personal plan",
|
||||||
"yes_that_is_correct": "Yes, that’s correct",
|
"yes_that_is_correct": "Yes, that’s correct",
|
||||||
|
"you_already_have_a_subscription": "You already have a subscription",
|
||||||
"you_and_collaborators_get_access_to": "You and your project collaborators get access to",
|
"you_and_collaborators_get_access_to": "You and your project collaborators get access to",
|
||||||
"you_and_collaborators_get_access_to_info": "These features are available to you and your collaborators (other Overleaf users that you invite to your projects).",
|
"you_and_collaborators_get_access_to_info": "These features are available to you and your collaborators (other Overleaf users that you invite to your projects).",
|
||||||
"you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z": "You are a <1>manager</1> and <1>member</1> of the <0>__planName__</0> group subscription <1>__groupName__</1> administered by <1>__adminEmail__</1>",
|
"you_are_a_manager_and_member_of_x_plan_as_member_of_group_subscription_y_administered_by_z": "You are a <1>manager</1> and <1>member</1> of the <0>__planName__</0> group subscription <1>__groupName__</1> administered by <1>__adminEmail__</1>",
|
||||||
|
|
|
@ -57,4 +57,17 @@ describe('<SubscriptionDashboard />', function () {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('Show a warning when coming from plans page', function () {
|
||||||
|
renderWithSubscriptionDashContext(<SubscriptionDashboard />, {
|
||||||
|
metaTags: [
|
||||||
|
{
|
||||||
|
name: 'ol-fromPlansPage',
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
|
screen.getByText('You already have a subscription')
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue