From 6daab5e176382954d2229d8a9251ae819572a29e Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Wed, 11 Jul 2018 14:57:57 -0400 Subject: more stepped --- stepped-solutions/24/frontend/components/Items.js | 61 ++++++++++++++++++++ .../24/frontend/components/Pagination.js | 65 ++++++++++++++++++++++ stepped-solutions/24/frontend/pages/index.js | 9 +++ stepped-solutions/24/frontend/pages/items.js | 3 + 4 files changed, 138 insertions(+) create mode 100755 stepped-solutions/24/frontend/components/Items.js create mode 100755 stepped-solutions/24/frontend/components/Pagination.js create mode 100755 stepped-solutions/24/frontend/pages/index.js create mode 100755 stepped-solutions/24/frontend/pages/items.js (limited to 'stepped-solutions/24/frontend') diff --git a/stepped-solutions/24/frontend/components/Items.js b/stepped-solutions/24/frontend/components/Items.js new file mode 100755 index 0000000..9b5426c --- /dev/null +++ b/stepped-solutions/24/frontend/components/Items.js @@ -0,0 +1,61 @@ +import React, { Component } from 'react'; +import { Query } from 'react-apollo'; +import gql from 'graphql-tag'; +import styled from 'styled-components'; +import Item from './Item'; +import Pagination from './Pagination'; +import { perPage } from '../config'; + +const ALL_ITEMS_QUERY = gql` + query ALL_ITEMS_QUERY($skip: Int = 0, $first: Int = ${perPage}) { + items(first: $first, skip: $skip, orderBy: createdAt_DESC) { + id + title + price + description + image + largeImage + } + } +`; + +const Center = styled.div` + text-align: center; +`; + +const ItemsList = styled.div` + display: grid; + grid-template-columns: 1fr 1fr; + grid-gap: 60px; + max-width: ${props => props.theme.maxWidth}; + margin: 0 auto; +`; + +class Items extends Component { + render() { + return ( +
+ + + {({ data, error, loading }) => { + if (loading) return

Loading...

; + if (error) return

Error: {error.message}

; + return ( + {data.items.map(item => )} + ); + }} +
+ +
+ ); + } +} + +export default Items; +export { ALL_ITEMS_QUERY }; diff --git a/stepped-solutions/24/frontend/components/Pagination.js b/stepped-solutions/24/frontend/components/Pagination.js new file mode 100755 index 0000000..639f0d5 --- /dev/null +++ b/stepped-solutions/24/frontend/components/Pagination.js @@ -0,0 +1,65 @@ +import React from 'react'; +import gql from 'graphql-tag'; +import { Query } from 'react-apollo'; +import Head from 'next/head'; +import Link from 'next/link'; +import PaginationStyles from './styles/PaginationStyles'; +import { perPage } from '../config'; + +const PAGINATION_QUERY = gql` + query PAGINATION_QUERY { + itemsConnection { + aggregate { + count + } + } + } +`; + +const Pagination = props => ( + + {({ data, loading, error }) => { + if (loading) return

Loading...

; + const count = data.itemsConnection.aggregate.count; + const pages = Math.ceil(count / perPage); + const page = props.page; + return ( + + + + Sick Fits! — Page {page} of {pages} + + + + + ← Prev + + +

+ Page {props.page} of {pages}! +

+

{count} Items Total

+ + = pages}> + Next → + + +
+ ); + }} +
+); + +export default Pagination; diff --git a/stepped-solutions/24/frontend/pages/index.js b/stepped-solutions/24/frontend/pages/index.js new file mode 100755 index 0000000..edb45ab --- /dev/null +++ b/stepped-solutions/24/frontend/pages/index.js @@ -0,0 +1,9 @@ +import Items from '../components/Items'; + +const Home = props => ( +
+ +
+); + +export default Home; diff --git a/stepped-solutions/24/frontend/pages/items.js b/stepped-solutions/24/frontend/pages/items.js new file mode 100755 index 0000000..c95ff45 --- /dev/null +++ b/stepped-solutions/24/frontend/pages/items.js @@ -0,0 +1,3 @@ +import Items from './index'; + +export default Items; -- cgit v1.3