mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
1ebc8a79cb
Upgrade Prettier to v2 GitOrigin-RevId: 85aa3fa1acb6332c4f58c46165a43d1a51471f33
26 lines
845 B
JavaScript
26 lines
845 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')
|
|
}
|
|
|
|
$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()
|
|
}
|
|
)
|