overleaf/services/web/frontend/js/main/account-upgrade.js
Paulo Jorge Reis 11e58b5844 Add timeout upgrade prompt to the new compile UI (#3528)
* Uncouple account-upgrade and exposted-settings from Angular

* Mock socket shim with the correct methods

* Extract timeout upgrade prompt to a component

GitOrigin-RevId: ee8058b38bf5e20924a21f40d32c5bb0ee06c555
2021-01-15 03:05:48 +00:00

49 lines
1 KiB
JavaScript

function startFreeTrial(source, version, $scope, eventTracking) {
const plan = 'collaborator_free_trial_7_days'
const w = window.open()
const go = function() {
let url
if (typeof ga === 'function') {
ga('send', 'event', 'subscription-funnel', 'upgraded-free-trial', source)
}
url = `/user/subscription/new?planCode=${plan}&ssp=true`
url = `${url}&itm_campaign=${source}`
if (version) {
url = `${url}&itm_content=${version}`
}
if ($scope) {
$scope.startedFreeTrial = true
}
if (eventTracking) {
eventTracking.sendMB('subscription-start-trial', { source, plan })
}
w.location = url
}
go()
}
function upgradePlan(source, $scope) {
const w = window.open()
const go = function() {
let url
if (typeof ga === 'function') {
ga('send', 'event', 'subscription-funnel', 'upgraded-plan', source)
}
url = '/user/subscription'
if ($scope) {
$scope.startedFreeTrial = true
}
w.location = url
}
go()
}
export { startFreeTrial, upgradePlan }