mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
4f340b0ed7
[web] Cleanup StartFreeTrialButton component GitOrigin-RevId: 67538882ff5a3389d2134ec6e4833431aa43f8e6
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
import * as eventTracking from '../infrastructure/event-tracking'
|
|
import getMeta from '../utils/meta'
|
|
|
|
const interstitialPaymentAfterPaywallVariant =
|
|
getMeta('ol-splitTestVariants')?.['interstitial-payment-from-paywall'] ??
|
|
'default'
|
|
|
|
function startFreeTrial(source, version, $scope) {
|
|
const plan = 'collaborator_free_trial_7_days'
|
|
|
|
eventTracking.send('subscription-funnel', 'upgraded-free-trial', source)
|
|
eventTracking.sendMB('paywall-click', { 'paywall-type': source })
|
|
|
|
const searchParams = new URLSearchParams({
|
|
planCode: 'collaborator_free_trial_7_days',
|
|
ssp: 'true',
|
|
itm_campaign: source,
|
|
})
|
|
|
|
if (version) {
|
|
searchParams.set('itm_content', version)
|
|
}
|
|
|
|
if ($scope) {
|
|
$scope.startedFreeTrial = true
|
|
}
|
|
|
|
if (interstitialPaymentAfterPaywallVariant === 'active') {
|
|
window.open(
|
|
`/user/subscription/choose-your-plan?${searchParams.toString()}`
|
|
)
|
|
} else {
|
|
searchParams.set('ssp', 'true')
|
|
searchParams.set('planCode', plan)
|
|
window.open(`/user/subscription/new?${searchParams.toString()}`)
|
|
}
|
|
}
|
|
|
|
function upgradePlan(source, $scope) {
|
|
const w = window.open()
|
|
const go = function () {
|
|
if (typeof ga === 'function') {
|
|
ga('send', 'event', 'subscription-funnel', 'upgraded-plan', source)
|
|
}
|
|
const url = '/user/subscription'
|
|
|
|
if ($scope) {
|
|
$scope.startedFreeTrial = true
|
|
}
|
|
|
|
w.location = url
|
|
}
|
|
|
|
go()
|
|
}
|
|
|
|
function paywallPrompt(source) {
|
|
eventTracking.sendMB('paywall-prompt', { 'paywall-type': source })
|
|
}
|
|
|
|
export { startFreeTrial, upgradePlan, paywallPrompt }
|