2014-06-16 09:49:35 -04:00
|
|
|
define ["libs/algolia", "libs/angular", "libs/angular-autocomplete/angular-autocomplete"], (algolia)->
|
2014-06-11 12:45:09 -04:00
|
|
|
|
2014-06-16 09:49:35 -04:00
|
|
|
app = angular.module("userProfileInformationApp", ["autocomplete"])
|
2014-06-11 12:45:09 -04:00
|
|
|
|
2014-06-13 12:17:58 -04:00
|
|
|
app.factory "Institutions", ->
|
2014-06-17 07:25:49 -04:00
|
|
|
new AlgoliaSearch(window.algolia.institutions.app_id, window.algolia.institutions.api_key).initIndex("institutions")
|
2014-06-11 12:45:09 -04:00
|
|
|
|
2014-06-16 11:22:45 -04:00
|
|
|
app.directive "focusInput", ($timeout) ->
|
|
|
|
return (scope, element, attr) ->
|
|
|
|
scope.$watch attr.focusInput, (value) ->
|
|
|
|
if value
|
|
|
|
$timeout ->
|
|
|
|
element.select()
|
|
|
|
|
2014-06-13 12:17:58 -04:00
|
|
|
app.controller "UpdateForm", ($scope, $http, Institutions)->
|
2014-06-16 09:49:35 -04:00
|
|
|
$scope.institutions = []
|
2014-06-16 11:14:58 -04:00
|
|
|
$scope.formVisable = false
|
2014-06-12 12:15:54 -04:00
|
|
|
$scope.hidePersonalInfoSection = true
|
2014-06-17 06:33:37 -04:00
|
|
|
$scope.roles = ["Student", "Post-graduate student", "Post-doctoral researcher", "Lecturer", "Professor"]
|
2014-06-11 12:45:09 -04:00
|
|
|
|
2014-06-12 12:15:54 -04:00
|
|
|
$http.get("/user/personal_info").success (data)->
|
2014-06-16 11:14:58 -04:00
|
|
|
$scope.userInfoForm =
|
2014-06-17 09:36:17 -04:00
|
|
|
first_name: data.first_name || ""
|
|
|
|
last_name: data.last_name || ""
|
|
|
|
role: data.role || ""
|
|
|
|
institution: data.institution || ""
|
2014-06-12 12:15:54 -04:00
|
|
|
_csrf : window.csrfToken
|
2014-06-11 12:45:09 -04:00
|
|
|
|
2014-06-12 12:15:54 -04:00
|
|
|
if getPercentComplete() != 100
|
2014-06-12 10:50:00 -04:00
|
|
|
$scope.percentComplete = getPercentComplete()
|
2014-06-12 12:15:54 -04:00
|
|
|
$scope.hidePersonalInfoSection = false
|
|
|
|
|
2014-06-16 11:14:58 -04:00
|
|
|
$scope.showForm = ->
|
|
|
|
$scope.formVisable = true
|
|
|
|
|
2014-06-12 12:15:54 -04:00
|
|
|
$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()
|
2014-06-12 05:23:42 -04:00
|
|
|
|
2014-06-12 12:15:54 -04:00
|
|
|
getPercentComplete = ->
|
2014-06-17 09:36:17 -04:00
|
|
|
results = _.filter $scope.userInfoForm, (value)-> !value? or value?.length != 0
|
2014-06-12 12:15:54 -04:00
|
|
|
results.length * 20
|
2014-06-12 10:50:00 -04:00
|
|
|
|
2014-06-17 06:27:45 -04:00
|
|
|
$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()
|
|
|
|
|
2014-06-13 12:17:58 -04:00
|
|
|
Institutions.search $scope.userInfoForm.institution, (err, response)->
|
2014-06-16 13:41:44 -04:00
|
|
|
$scope.institutions = _.map response.hits, (institution)->
|
2014-06-17 05:26:56 -04:00
|
|
|
"#{institution.name} (<span class='muted'>#{institution.domain}</span>)"
|
2014-06-13 12:17:58 -04:00
|
|
|
|
2014-06-16 11:14:58 -04:00
|
|
|
|
|
|
|
|
2014-06-12 12:15:54 -04:00
|
|
|
angular.bootstrap(document.getElementById("userProfileInformation"), ['userProfileInformationApp'])
|
2014-06-12 05:23:42 -04:00
|
|
|
|