overleaf/services/web/public/coffee/main/account-settings.coffee

83 lines
2.1 KiB
CoffeeScript
Raw Normal View History

2014-07-08 07:02:26 -04:00
define [
"base"
], (App) ->
App.controller "AccountSettingsController", ["$scope", "$http", "$modal", ($scope, $http, $modal) ->
$scope.subscribed = true
$scope.unsubscribe = () ->
$scope.unsubscribing = true
$http({
method: "DELETE"
url: "/user/newsletter/unsubscribe"
headers:
"X-CSRF-Token": window.csrfToken
})
.then () ->
2014-07-08 07:02:26 -04:00
$scope.unsubscribing = false
$scope.subscribed = false
.catch () ->
2014-07-08 07:02:26 -04:00
$scope.unsubscribing = true
$scope.deleteAccount = () ->
modalInstance = $modal.open(
templateUrl: "deleteAccountModalTemplate"
controller: "DeleteAccountModalController",
scope: $scope
2014-07-08 07:02:26 -04:00
)
]
App.controller "DeleteAccountModalController", [
"$scope", "$modalInstance", "$timeout", "$http",
($scope, $modalInstance, $timeout, $http) ->
$scope.state =
isValid : false
deleteText: ""
password: ""
2014-07-08 07:02:26 -04:00
inflight: false
error: false
invalidCredentials: false
2014-07-08 07:02:26 -04:00
$modalInstance.opened.then () ->
$timeout () ->
$scope.$broadcast "open"
, 700
$scope.checkValidation = ->
$scope.state.isValid = $scope.state.deleteText == $scope.email and $scope.state.password.length > 0
2014-07-08 07:02:26 -04:00
$scope.delete = () ->
$scope.state.inflight = true
$scope.state.error = false
$scope.state.invalidCredentials = false
2014-07-08 07:02:26 -04:00
$http({
method: "POST"
url: "/user/delete"
2014-07-08 07:02:26 -04:00
headers:
"X-CSRF-Token": window.csrfToken
"Content-Type": 'application/json'
data:
password: $scope.state.password
2016-11-04 11:44:12 -04:00
disableAutoLoginRedirect: true # we want to handle errors ourselves
2014-07-08 07:02:26 -04:00
})
.then () ->
2014-07-08 07:02:26 -04:00
$modalInstance.close()
$scope.state.inflight = false
$scope.state.error = false
$scope.state.invalidCredentials = false
setTimeout(
() ->
window.location = "/login"
, 1000
)
.catch (response) ->
{ data, status } = response
$scope.state.inflight = false
if status == 403
$scope.state.invalidCredentials = true
else
$scope.state.error = true
2014-07-08 07:02:26 -04:00
$scope.cancel = () ->
$modalInstance.dismiss('cancel')
]