mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 07:55:33 +00:00
Merge pull request #3980 from overleaf/tm-show-error-if-plan-change-fails
Show error in plan change modal if plan change fails GitOrigin-RevId: 698aab43feacdb5ced41f239167c5d132f7ca8de
This commit is contained in:
parent
f7b96e86a7
commit
682abe9ca5
3 changed files with 15 additions and 4 deletions
|
@ -94,6 +94,8 @@ script(type='text/ng-template', id='confirmChangePlanModalTemplate')
|
|||
.modal-header
|
||||
h3 #{translate("change_plan")}
|
||||
.modal-body
|
||||
.alert.alert-warning(ng-show="genericError")
|
||||
strong #{translate("generic_something_went_wrong")}. #{translate("try_again")}. #{translate("generic_if_problem_continues_contact_us")}.
|
||||
p !{translate("sure_you_want_to_change_plan", {planName: '{{plan.name}}'}, ['strong'])}
|
||||
div(ng-show="planChangesAtTermEnd")
|
||||
p #{translate("existing_plan_active_until_term_end")}
|
||||
|
@ -114,6 +116,8 @@ script(type='text/ng-template', id='cancelPendingPlanChangeModalTemplate')
|
|||
.modal-header
|
||||
h3 #{translate("change_plan")}
|
||||
.modal-body
|
||||
.alert.alert-warning(ng-show="genericError")
|
||||
strong #{translate("generic_something_went_wrong")}. #{translate("try_again")}. #{translate("generic_if_problem_continues_contact_us")}.
|
||||
p !{translate("sure_you_want_to_cancel_plan_change", {planName: '{{plan.name}}'}, ['strong'])}
|
||||
.modal-footer
|
||||
button.btn.btn-default(
|
||||
|
|
|
@ -144,12 +144,16 @@ App.controller(
|
|||
_csrf: window.csrfToken,
|
||||
}
|
||||
|
||||
$scope.genericError = false
|
||||
$scope.inflight = true
|
||||
|
||||
return $http
|
||||
.post(`${SUBSCRIPTION_URL}?origin=confirmChangePlan`, body)
|
||||
.then(() => location.reload())
|
||||
.catch(() => console.log('something went wrong changing plan'))
|
||||
.catch(() => {
|
||||
$scope.genericError = true
|
||||
$scope.inflight = false
|
||||
})
|
||||
}
|
||||
|
||||
return ($scope.cancel = () => $modalInstance.dismiss('cancel'))
|
||||
|
@ -164,14 +168,16 @@ App.controller(
|
|||
_csrf: window.csrfToken,
|
||||
}
|
||||
|
||||
$scope.genericError = false
|
||||
$scope.inflight = true
|
||||
|
||||
return $http
|
||||
.post('/user/subscription/cancel-pending', body)
|
||||
.then(() => location.reload())
|
||||
.catch(() =>
|
||||
console.log('something went wrong reverting pending plan change')
|
||||
)
|
||||
.catch(() => {
|
||||
$scope.genericError = true
|
||||
$scope.inflight = false
|
||||
})
|
||||
}
|
||||
|
||||
return ($scope.cancel = () => $modalInstance.dismiss('cancel'))
|
||||
|
|
|
@ -969,6 +969,7 @@
|
|||
"ask_proj_owner_to_upgrade_for_history": "Please ask the project owner to upgrade to use the History feature.",
|
||||
"anonymous": "Anonymous",
|
||||
"generic_something_went_wrong": "Sorry, something went wrong",
|
||||
"generic_if_problem_continues_contact_us": "If the problem continues please contact us",
|
||||
"restoring": "Restoring",
|
||||
"restore_to_before_these_changes": "Restore to before these changes",
|
||||
"profile_complete_percentage": "Your profile is __percentval__% complete",
|
||||
|
|
Loading…
Reference in a new issue