blob: a273b394b2f75ade92ff79d56e722e5446a919f3 (
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
|
import React from 'react';
import { Query, Mutation } from 'react-apollo';
import gql from 'graphql-tag';
import CartStyles from './styles/CartStyles';
import Supreme from './styles/Supreme';
import CloseButton from './styles/CloseButton';
import SickButton from './styles/SickButton';
const LOCAL_STATE_QUERY = gql`
query {
cartOpen @client
}
`;
const TOGGLE_CART_MUTATION = gql`
mutation {
toggleCart @client
}
`;
const Cart = () => (
<Mutation mutation={TOGGLE_CART_MUTATION}>
{toggleCart => (
<Query query={LOCAL_STATE_QUERY}>
{({ data }) => (
<CartStyles open={data.cartOpen}>
<header>
<CloseButton onClick={toggleCart} title="close">
×
</CloseButton>
<Supreme>Your Cart</Supreme>
<p>You Have __ Items in your cart.</p>
</header>
<footer>
<p>$10.10</p>
<SickButton>Checkout</SickButton>
</footer>
</CartStyles>
)}
</Query>
)}
</Mutation>
);
export default Cart;
export { LOCAL_STATE_QUERY, TOGGLE_CART_MUTATION };
|