mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
bc1b73d74e
Transform absolute paths in frontend to relative GitOrigin-RevId: c1914c0fd09d68984ba6c85a1f00aa3e6858d944
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
define(['../../base'], App =>
|
|
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.userEmails = []
|
|
$scope.userAffiliations = []
|
|
return UserAffiliationsDataService.getUserEmails().then(function(emails) {
|
|
$scope.userEmails = emails
|
|
$scope.userAffiliations = emails
|
|
.filter(email => email.affiliation)
|
|
.map(email => email.affiliation)
|
|
$scope.userOnPayingUniversity = $scope.userAffiliations.some(
|
|
affiliation => affiliation.licence && affiliation.licence !== 'free'
|
|
)
|
|
})
|
|
}
|
|
|
|
_userHasNoAffiliation()
|
|
}))
|