blob: 03242a49ecec385d3622f98db68bae0c4420b47a (
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
|
import { Component } from 'react';
import { Mutation } from 'react-apollo';
import PropTypes from 'prop-types';
import gql from 'graphql-tag';
import User, { CURRENT_USER_QUERY } from './User';
const ADD_TO_CART_MUTATION = gql`
mutation addToCart($id: ID!) {
addToCart(id: $id) {
id
quantity
item {
id
price
description
image
title
}
}
}
`;
class AddToCart extends Component {
static propTypes = {
id: PropTypes.string.isRequired,
};
update = (cache, payload) => {
const newCartItem = payload.data.addToCart;
const data = cache.readQuery({ query: CURRENT_USER_QUERY });
const existingIndex = data.me.cart.findIndex(cartItem => cartItem.id === newCartItem.id);
if (existingIndex >= 0) {
// already in cache, just replace it
data.me.cart = [
...data.me.cart.slice(0, existingIndex),
newCartItem,
...data.me.cart.slice(existingIndex + 1),
];
} else {
data.me.cart = [...data.me.cart, newCartItem];
}
cache.writeQuery({ query: CURRENT_USER_QUERY, data });
};
render() {
const { id } = this.props;
return (
<User>
{({ data: { me }, loading }) => {
if (!me || loading) return null;
return (
<Mutation mutation={ADD_TO_CART_MUTATION} variables={{ id }} update={this.update}>
{(addToCart, { loading }) => (
<button disabled={loading} onClick={addToCart}>
🛒 Add{loading && 'ing'} To Cart
</button>
)}
</Mutation>
);
}}
</User>
);
}
}
export default AddToCart;
export { ADD_TO_CART_MUTATION };
|