blob: 6135db530a030996d220dbafc4ba3549ece7998a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
import React from 'react';
import StripeCheckout from 'react-stripe-checkout';
import { Mutation } from 'react-apollo';
import Router from 'next/router';
import NProgress from 'nprogress';
import PropTypes from 'prop-types';
import gql from 'graphql-tag';
import calcTotalPrice from '../lib/calcTotalPrice';
import Error from './ErrorMessage';
import User, { CURRENT_USER_QUERY } from './User';
const CREATE_ORDER_MUTATION = gql`
mutation createOrder($token: String!) {
createOrder(token: $token) {
id
charge
total
items {
id
title
}
}
}
`;
function totalItems(cart) {
return cart.reduce((tally, cartItem) => tally + cartItem.quantity, 0);
}
class TakeMyMoney extends React.Component {
onToken = async (res, createOrder) => {
console.log('On Token Called!');
console.log(res.id);
// manually call the mutation once we have the stripe token
const order = await createOrder({
variables: {
token: res.id,
},
}).catch(err => {
alert(err.message);
});
console.log(order);
};
render() {
return (
<User>
{({ data: { me } }) => (
<Mutation
mutation={CREATE_ORDER_MUTATION}
refetchQueries={[{ query: CURRENT_USER_QUERY }]}
>
{createOrder => (
<StripeCheckout
amount={calcTotalPrice(me.cart)}
name="Sick Fits"
description={`Order of ${totalItems(me.cart)} items!`}
image={me.cart.length && me.cart[0].item && me.cart[0].item.image}
stripeKey="pk_test_Vtknn6vSdcZWSG2JWvEiWSqC"
currency="USD"
email={me.email}
token={res => this.onToken(res, createOrder)}
>
{this.props.children}
</StripeCheckout>
)}
</Mutation>
)}
</User>
);
}
}
export default TakeMyMoney;
|