Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If Spree.pathFor is defined, use this to generate Stripe intent URL #407

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
If Spree.pathFor is defined, use this to generate Stripe intent URL
Without this change, the mount path of the Spree engine isn't taken
into account, and this hard-coded URL results in a 404.

Fixes #392
  • Loading branch information
dylanfisher committed Jul 18, 2022
commit be6fe81865119797fa727e13a109a8bd04e2ea37
6 changes: 5 additions & 1 deletion app/views/spree/checkout/_payment_confirm.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
var form = document.getElementById('checkout_form_payment_confirm');

function confirmCardPaymentResponseHandler(response) {
$.post("/api/v2/storefront/intents/handle_response", { response: response, order_token: "<%= @order.token %>" }).done(function (result) {
var url = 'api/v2/storefront/intents/handle_response';
if ( typeof Spree.pathFor == 'function' ) {
url = Spree.pathFor(url)
}
$.post(url, { response: response, order_token: "<%= @order.token %>" }).done(function (result) {
// conditional needs for spree 3.7
if(form.elements["commit"]) {
form.elements["commit"].disabled = false;
Expand Down