687bab1c05
Also changes the system so we don't apply the invite until it is called explicitly from the frontend Fixes #241
53 lines
No EOL
1.6 KiB
JavaScript
53 lines
No EOL
1.6 KiB
JavaScript
/**
|
|
* An element which displays the sign up form.
|
|
*/
|
|
angular.module('quay').directive('signupForm', function () {
|
|
var directiveDefinitionObject = {
|
|
priority: 0,
|
|
templateUrl: '/static/directives/signup-form.html',
|
|
replace: false,
|
|
transclude: true,
|
|
restrict: 'C',
|
|
scope: {
|
|
'inviteCode': '=inviteCode',
|
|
'hideRegisteredMessage': '@hideRegisteredMessage',
|
|
'userRegistered': '&userRegistered'
|
|
},
|
|
controller: function($scope, $location, $timeout, ApiService, KeyService, UserService, Config, UIService) {
|
|
$('.form-signup').popover();
|
|
|
|
$scope.awaitingConfirmation = false;
|
|
$scope.registering = false;
|
|
|
|
$scope.register = function() {
|
|
UIService.hidePopover('#signupButton');
|
|
$scope.registering = true;
|
|
|
|
if ($scope.inviteCode) {
|
|
$scope.newUser['invite_code'] = $scope.inviteCode;
|
|
}
|
|
|
|
ApiService.createNewUser($scope.newUser).then(function(resp) {
|
|
$scope.registering = false;
|
|
$scope.awaitingConfirmation = !!resp['awaiting_verification'];
|
|
|
|
if (Config.MIXPANEL_KEY) {
|
|
mixpanel.alias($scope.newUser.username);
|
|
}
|
|
|
|
$scope.userRegistered({'username': $scope.newUser.username});
|
|
|
|
if (!$scope.awaitingConfirmation && !$scope.inviteCode) {
|
|
document.location = '/';
|
|
}
|
|
|
|
UserService.load();
|
|
}, function(result) {
|
|
$scope.registering = false;
|
|
UIService.showFormError('#signupButton', result);
|
|
});
|
|
};
|
|
}
|
|
};
|
|
return directiveDefinitionObject;
|
|
}); |