mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9cd5922cef
[web] Add upgrade-button-click event with source segmentation key GitOrigin-RevId: c095e2e8e521b6aad40509b49cedd1cd6afc0e66
29 lines
936 B
JavaScript
29 lines
936 B
JavaScript
import App from '../../base'
|
|
|
|
export default App.controller(
|
|
'LeftHandMenuPromoController',
|
|
function ($scope, UserAffiliationsDataService, eventTracking) {
|
|
$scope.hasProjects = window.data.projects.length > 0
|
|
$scope.userHasNoSubscription = window.userHasNoSubscription
|
|
|
|
$scope.upgradeSubscription = function () {
|
|
eventTracking.send('subscription-funnel', 'project-page', 'upgrade')
|
|
eventTracking.sendMB('upgrade-button-click', {
|
|
source: 'dashboard',
|
|
})
|
|
}
|
|
|
|
$scope.share = function () {
|
|
eventTracking.send('subscription-funnel', 'project-page', 'sharing')
|
|
}
|
|
|
|
const _userHasNoAffiliation = function () {
|
|
$scope.withAffiliations = window.data.userAffiliations.length > 0
|
|
$scope.userOnPayingUniversity = window.data.userAffiliations.some(
|
|
affiliation => affiliation.licence && affiliation.licence !== 'free'
|
|
)
|
|
}
|
|
|
|
_userHasNoAffiliation()
|
|
}
|
|
)
|