### # Copyright (C) 2014 Andrey Antukh # Copyright (C) 2014 Jesús Espino Garcia # Copyright (C) 2014 David Barragán Merino # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # # File: modules/user-settings/main.coffee ### taiga = @.taiga mixOf = @.taiga.mixOf module = angular.module("taigaUserSettings") ############################################################################# ## User settings Controller ############################################################################# class UserSettingsController extends mixOf(taiga.Controller, taiga.PageMixin) @.$inject = [ "$scope", "$rootScope", "$tgRepo", "$tgConfirm", "$tgResources", "$routeParams", "$q", "$tgLocation", "$tgNavUrls", "$tgAuth" ] constructor: (@scope, @rootscope, @repo, @confirm, @rs, @params, @q, @location, @navUrls, @auth) -> @scope.sectionName = "User Profile" #i18n @scope.project = {} @scope.user = @auth.getUser() promise = @.loadInitialData() promise.then null, @.onInitialDataError.bind(@) loadProject: -> return @rs.projects.get(@scope.projectId).then (project) => @scope.project = project @scope.$emit('project:loaded', project) return project loadInitialData: -> promise = @repo.resolve({pslug: @params.pslug}).then (data) => @scope.projectId = data.project return data return promise.then(=> @.loadProject()) openDeleteLightbox: -> @rootscope.$broadcast("deletelightbox:new", @scope.user) module.controller("UserSettingsController", UserSettingsController) ############################################################################# ## User Profile Directive ############################################################################# UserProfileDirective = ($confirm, $auth, $repo) -> link = ($scope, $el, $attrs) -> $el.on "click", ".user-profile form .save-profile", (event) -> form = $el.find("form").checksley() return if not form.validate() changeEmail = $scope.user.isAttributeModified("email") onSuccess = (data) => $auth.setUser($scope.user) if changeEmail $confirm.success("Check your inbox!
We have sent a mail to your account
with the instructions to set your new address") #TODO: i18n else $confirm.notify('success') onError = (data) => form.setErrors(data) $confirm.notify('error', data._error_message) $repo.save($scope.user).then(onSuccess, onError) $scope.$on "$destroy", -> $el.off() return {link:link} module.directive("tgUserProfile", ["$tgConfirm", "$tgAuth", "$tgRepo", UserProfileDirective]) ############################################################################# ## User Avatar Directive ############################################################################# UserAvatarDirective = ($auth, $model, $rs, $confirm) -> link = ($scope, $el, $attrs) -> onSuccess = (response) -> user = $model.make_model("users", response.data) $auth.setUser(user) $scope.user = user $el.find('.overlay').hide() $confirm.notify('success') onError = (response) -> $el.find('.overlay').hide() $confirm.notify('error', response.data._error_message) # Change photo $el.on "click", ".button.change", -> $el.find("#avatar-field").click() $el.on "change", "#avatar-field", (event) -> $el.find('.overlay').show() $rs.userSettings.changeAvatar($scope.avatarAttachment).then(onSuccess, onError) # Use gravatar photo $el.on "click", "a.use-gravatar", (event) -> $el.find('.overlay').show() $rs.userSettings.removeAvatar().then(onSuccess, onError) $scope.$on "$destroy", -> $el.off() return {link:link} module.directive("tgUserAvatar", ["$tgAuth", "$tgModel", "$tgResources", "$tgConfirm", UserAvatarDirective]) ############################################################################# ## User Avatar Model Directive ############################################################################# TaigaAvatarModelDirective = ($parse) -> link = ($scope, $el, $attrs) -> model = $parse($attrs.tgAvatarModel) modelSetter = model.assign $el.bind 'change', -> $scope.$apply -> modelSetter($scope, $el[0].files[0]) return {link:link} module.directive('tgAvatarModel', ['$parse', TaigaAvatarModelDirective])