mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
61 lines
2.2 KiB
CoffeeScript
61 lines
2.2 KiB
CoffeeScript
define ["libs/algolia", "libs/angular", "libs/angular-autocomplete/angular-autocomplete"], (algolia)->
|
|
|
|
app = angular.module("userProfileInformationApp", ["autocomplete"])
|
|
|
|
app.factory "Institutions", ->
|
|
new AlgoliaSearch(window.algolia.institutions.app_id, window.algolia.institutions.api_key).initIndex("institutions")
|
|
|
|
app.directive "focusInput", ($timeout) ->
|
|
return (scope, element, attr) ->
|
|
scope.$watch attr.focusInput, (value) ->
|
|
if value
|
|
$timeout ->
|
|
element.select()
|
|
|
|
app.controller "UpdateForm", ($scope, $http, Institutions)->
|
|
$scope.institutions = []
|
|
$scope.formVisable = false
|
|
$scope.hidePersonalInfoSection = true
|
|
$scope.roles = ["Student", "Post-graduate student", "Post-doctoral researcher", "Lecturer", "Professor"]
|
|
|
|
$http.get("/user/personal_info").success (data)->
|
|
$scope.userInfoForm =
|
|
first_name: data.first_name || ""
|
|
last_name: data.last_name || ""
|
|
role: data.role || ""
|
|
institution: data.institution || ""
|
|
_csrf : window.csrfToken
|
|
|
|
if getPercentComplete() != 100
|
|
$scope.percentComplete = getPercentComplete()
|
|
$scope.hidePersonalInfoSection = false
|
|
|
|
$scope.showForm = ->
|
|
$scope.formVisable = true
|
|
|
|
$scope.sendUpdate = ->
|
|
request = $http.post "/user/personal_info", $scope.userInfoForm
|
|
request.success (data, status)->
|
|
request.error (data, status)->
|
|
console.log "the request failed"
|
|
$scope.percentComplete = getPercentComplete()
|
|
|
|
getPercentComplete = ->
|
|
results = _.filter $scope.userInfoForm, (value)-> !value? or value?.length != 0
|
|
results.length * 20
|
|
|
|
$scope.updateInstitutionsList = (inputVal)->
|
|
|
|
# this is a little hack to use until we change auto compelete lib with redesign and can
|
|
# listen for blur events on institution field to send the post
|
|
if inputVal?.indexOf("(") != -1 and inputVal?.indexOf(")") != -1
|
|
$scope.sendUpdate()
|
|
|
|
Institutions.search $scope.userInfoForm.institution, (err, response)->
|
|
$scope.institutions = _.map response.hits, (institution)->
|
|
"#{institution.name} (<span class='muted'>#{institution.domain}</span>)"
|
|
|
|
|
|
|
|
angular.bootstrap(document.getElementById("userProfileInformation"), ['userProfileInformationApp'])
|
|
|