blob: 1895235740ca9caa4a5e63737e6c2d1341d0a98b (
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
|
import React from 'react';
import { Query, Mutation } from 'react-apollo';
import gql from 'graphql-tag';
import User from './User';
import CartStyles from './styles/CartStyles';
import Supreme from './styles/Supreme';
import CloseButton from './styles/CloseButton';
import SickButton from './styles/SickButton';
import CartItem from './CartItem';
import calcTotalPrice from '../lib/calcTotalPrice';
import formatMoney from '../lib/formatMoney';
const LOCAL_STATE_QUERY = gql`
query {
cartOpen @client
}
`;
const TOGGLE_CART_MUTATION = gql`
mutation {
toggleCart @client
}
`;
const Cart = () => (
<User>
{({ data: { me } }) => {
if (!me) return null;
console.log(me);
return (
<Mutation mutation={TOGGLE_CART_MUTATION}>
{toggleCart => (
<Query query={LOCAL_STATE_QUERY}>
{({ data }) => (
<CartStyles open={data.cartOpen}>
<header>
<CloseButton onClick={toggleCart} title="close">
×
</CloseButton>
<Supreme>{me.name}'s Cart</Supreme>
<p>
You Have {me.cart.length} Item{me.cart.length === 1 ? '' : 's'} in your cart.
</p>
</header>
<ul>
{me.cart.map(cartItem => <CartItem key={cartItem.id} cartItem={cartItem} />)}
</ul>
<footer>
<p>{formatMoney(calcTotalPrice(me.cart))}</p>
<SickButton>Checkout</SickButton>
</footer>
</CartStyles>
)}
</Query>
)}
</Mutation>
);
}}
</User>
);
export default Cart;
export { LOCAL_STATE_QUERY, TOGGLE_CART_MUTATION };
|