mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c62dd1cacb
Remove error upon success for asyncForms GitOrigin-RevId: 27e09667b11229b010d270ec2637082e069fcc95
188 lines
6 KiB
JavaScript
188 lines
6 KiB
JavaScript
/* eslint-disable
|
|
max-len,
|
|
no-return-assign,
|
|
no-undef,
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS101: Remove unnecessary use of Array.from
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
define(['../base', 'libs/passfield'], function(App) {
|
|
App.directive('asyncForm', ($http, validateCaptcha, validateCaptchaV3) => ({
|
|
controller: [
|
|
'$scope',
|
|
function($scope) {
|
|
this.getEmail = () => $scope.email
|
|
return this
|
|
}
|
|
],
|
|
link(scope, element, attrs) {
|
|
let response
|
|
const formName = attrs.asyncForm
|
|
|
|
scope[attrs.name].response = response = {}
|
|
scope[attrs.name].inflight = false
|
|
|
|
const validateCaptchaIfEnabled = function(callback) {
|
|
if (callback == null) {
|
|
callback = function(response) {}
|
|
}
|
|
if (attrs.captchaActionName) {
|
|
validateCaptchaV3(attrs.captchaActionName)
|
|
}
|
|
if (attrs.captcha != null) {
|
|
return validateCaptcha(callback)
|
|
} else {
|
|
return callback()
|
|
}
|
|
}
|
|
|
|
const submitRequest = function(grecaptchaResponse) {
|
|
const formData = {}
|
|
for (var data of Array.from(element.serializeArray())) {
|
|
formData[data.name] = data.value
|
|
}
|
|
|
|
if (grecaptchaResponse != null) {
|
|
formData['g-recaptcha-response'] = grecaptchaResponse
|
|
}
|
|
|
|
// clear the response object which may be referenced downstream
|
|
Object.keys(response).forEach(field => delete response[field])
|
|
scope[attrs.name].inflight = true
|
|
|
|
// for asyncForm prevent automatic redirect to /login if
|
|
// authentication fails, we will handle it ourselves
|
|
const httpRequestFn = _httpRequestFn(element.attr('method'))
|
|
return httpRequestFn(element.attr('action'), formData, {
|
|
disableAutoLoginRedirect: true
|
|
})
|
|
.then(function(httpResponse) {
|
|
const { data, headers } = httpResponse
|
|
scope[attrs.name].inflight = false
|
|
response.success = true
|
|
response.error = false
|
|
|
|
const onSuccessHandler = scope[attrs.onSuccess]
|
|
if (onSuccessHandler) {
|
|
onSuccessHandler(httpResponse)
|
|
return
|
|
}
|
|
|
|
if (data.redir != null) {
|
|
ga('send', 'event', formName, 'success')
|
|
return (window.location = data.redir)
|
|
} else if (data.message != null) {
|
|
response.message = data.message
|
|
|
|
if (data.message.type === 'error') {
|
|
response.success = false
|
|
response.error = true
|
|
return ga('send', 'event', formName, 'failure', data.message)
|
|
} else {
|
|
return ga('send', 'event', formName, 'success')
|
|
}
|
|
} else if (scope.$eval(attrs.asyncFormDownloadResponse)) {
|
|
const blob = new Blob([data], {
|
|
type: headers('Content-Type')
|
|
})
|
|
location.href = URL.createObjectURL(blob) // Trigger file save
|
|
}
|
|
})
|
|
.catch(function(httpResponse) {
|
|
let config, headers, status
|
|
;({ data, status, headers, config } = httpResponse)
|
|
scope[attrs.name].inflight = false
|
|
response.success = false
|
|
response.error = true
|
|
response.status = status
|
|
response.data = data
|
|
|
|
const onErrorHandler = scope[attrs.onError]
|
|
if (onErrorHandler) {
|
|
onErrorHandler(httpResponse)
|
|
return
|
|
}
|
|
|
|
if (status === 400 && data.accountLinkingError) {
|
|
// Bad Request for account linking
|
|
response.message = {
|
|
text: data.accountLinkingError,
|
|
type: 'error'
|
|
}
|
|
} else if (status === 400) {
|
|
// Bad Request
|
|
response.message = {
|
|
text: 'Invalid Request. Please correct the data and try again.',
|
|
type: 'error'
|
|
}
|
|
} else if (status === 403) {
|
|
// Forbidden
|
|
response.message = {
|
|
text:
|
|
'Session error. Please check you have cookies enabled. If the problem persists, try clearing your cache and cookies.',
|
|
type: 'error'
|
|
}
|
|
} else if (status === 429) {
|
|
response.message = {
|
|
text:
|
|
'Too many attempts. Please wait for a while and try again.',
|
|
type: 'error'
|
|
}
|
|
} else {
|
|
response.message = {
|
|
text:
|
|
(data.message != null ? data.message.text : undefined) ||
|
|
data.message ||
|
|
'Something went wrong talking to the server :(. Please try again.',
|
|
type: 'error'
|
|
}
|
|
}
|
|
return ga('send', 'event', formName, 'failure', data.message)
|
|
})
|
|
}
|
|
|
|
const submit = () =>
|
|
validateCaptchaIfEnabled(response => submitRequest(response))
|
|
|
|
const _httpRequestFn = (method = 'post') => {
|
|
const $HTTP_FNS = {
|
|
post: $http.post,
|
|
get: $http.get
|
|
}
|
|
return $HTTP_FNS[method.toLowerCase()]
|
|
}
|
|
|
|
element.on('submit', function(e) {
|
|
e.preventDefault()
|
|
return submit()
|
|
})
|
|
|
|
if (attrs.autoSubmit) {
|
|
return submit()
|
|
}
|
|
}
|
|
}))
|
|
|
|
App.directive('formMessages', () => ({
|
|
restrict: 'E',
|
|
template: `\
|
|
<div class="alert" ng-class="{
|
|
'alert-danger': form.response.message.type == 'error',
|
|
'alert-success': form.response.message.type != 'error'
|
|
}" ng-show="!!form.response.message" ng-bind-html="form.response.message.text">
|
|
</div>
|
|
<div ng-transclude></div>\
|
|
`,
|
|
transclude: true,
|
|
scope: {
|
|
form: '=for'
|
|
}
|
|
}))
|
|
})
|