Skip to content

Commit 15f7fd8

Browse files
committed
Improve UX, allow order authors by new fields
1 parent 21169d9 commit 15f7fd8

13 files changed

+67
-15
lines changed

public/manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "React App",
3-
"name": "Create React App Sample",
2+
"short_name": "Quotes",
3+
"name": "Quotes",
44
"icons": [
55
{
66
"src": "favicon.png",

schema.graphql

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# source: http://localhost:3010/graphql
2-
# timestamp: Sat Nov 06 2021 12:16:11 GMT+0100 (Central European Standard Time)
2+
# timestamp: Sat Nov 12 2022 12:05:52 GMT+0100 (Central European Standard Time)
33

4-
"""Exposes a URL that specifies the behaviour of this scalar."""
4+
"""Exposes a URL that specifies the behavior of this scalar."""
55
directive @specifiedBy(
6-
"""The URL that specifies the behaviour of this scalar."""
6+
"""The URL that specifies the behavior of this scalar."""
77
url: String!
88
) on SCALAR
99

@@ -57,6 +57,8 @@ input AuthorsOrder {
5757

5858
enum AuthorsOrderField {
5959
ID
60+
FIRST_NAME
61+
LAST_NAME
6062
CREATED_AT
6163
}
6264

src/App.css

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
html, body, #root {
2+
min-height: 100vh;
3+
}
4+
5+
.main-container {
6+
padding-bottom: 50px;
7+
min-height: calc(100vh - 162px);
8+
}

src/App.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ import Home from './pages/Home';
77
import Authors from './pages/Authors';
88
import environment from './environment';
99
import 'bootstrap/dist/css/bootstrap.min.css';
10+
import './App.css';
1011

1112
const App = () => (
1213
<RelayEnvironmentProvider environment={environment}>
1314
<BrowserRouter>
1415
<>
1516
<Menu />
1617
<ForkMe />
17-
<main role="main" className="flex-shrink-0" style={{ marginTop: 25, marginBottom: 81 }}>
18+
<main role="main" className="flex-shrink-0 main-container" style={{ marginTop: 25, marginBottom: 25 }}>
1819
<Routes>
1920
<Route path="/authors" element={<Authors />} />
2021
<Route path="/" element={<Home />} />

src/components/Footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Row from 'react-bootstrap/Row';
44
import Col from 'react-bootstrap/Col';
55

66
const Footer = () => (
7-
<footer className="footer mt-auto py-3 bg-dark fixed-bottom" style={{ color: '#fff' }}>
7+
<footer className="footer mt-auto py-3 bg-dark" style={{ color: '#fff' }}>
88
<Container fluid={true}>
99
<Row>
1010
<Col>

src/environment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { RequestParameters } from 'relay-runtime/lib/util/RelayConcreteNode';
88
import { Variables } from 'relay-runtime/lib/util/RelayRuntimeTypes';
99

1010
async function fetchGraphQL(params: RequestParameters, variables: Variables) {
11-
const response = await fetch(`https://graphql.juffalow.com/graphql`, {
11+
const response = await fetch(`https://quotes.juffalow.com/graphql`, {
1212
method: 'POST',
1313
headers: {
1414
'Content-Type': 'application/json',

src/pages/authors/Filter.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ const Filter: React.FC<Props> = (props: Props) => {
8484
<Form.Label>Order by:</Form.Label>
8585
<Form.Control as="select" placeholder="field" value={orderField} onChange={handleOrderFieldChange}>
8686
<option value="ID">ID</option>
87+
<option value="FIRST_NAME">FIRST_NAME</option>
88+
<option value="LAST_NAME">LAST_NAME</option>
8789
<option value="CREATED_AT">CREATED_AT</option>
8890
</Form.Control>
8991
</FormGroup>

src/pages/authors/__generated__/AuthorsContainerAuthorsQuery.graphql.ts

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/authors/__generated__/AuthorsContainerQuery.graphql.ts

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/home/HomeContainer.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import Col from 'react-bootstrap/Col';
55
import { usePaginationFragment, useLazyLoadQuery } from 'react-relay';
66
import { graphql } from 'babel-plugin-relay/macro';
77
import QuotesList from './QuotesList';
8+
import QuotesLoader from './QuotesLoader';
89
import { HomeContainer_quotes$key } from './__generated__/HomeContainer_quotes.graphql';
910
import { HomeContainerQuery } from './__generated__/HomeContainerQuery.graphql';
1011

@@ -59,13 +60,13 @@ const HomeContainer = () => {
5960
query HomeContainerQuery($first: Int, $after: String) {
6061
...HomeContainer_quotes
6162
}`, {
62-
first: 10,
63+
first: 9,
6364
after: null,
6465
},
6566
);
6667

6768
return (
68-
<Suspense fallback={<p>Loading...</p>}>
69+
<Suspense fallback={<QuotesLoader />}>
6970
<Quotes query={query} />
7071
</Suspense>
7172
);

src/pages/home/QuotesList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const QuotesList = (props: Props) => {
2020
);
2121

2222
return (
23-
<Row>
23+
<Row className="mt-4">
2424
{
2525
quotes.map((quote: Quote) => (
2626
<Col key={quote.id} md={4} style={{ marginBottom: 20 }}>

src/pages/home/QuotesLoader.css

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.bar-loader {
2+
background: #eee;
3+
background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
4+
background-size: 200% 100%;
5+
animation: 1.5s shine linear infinite;
6+
}
7+
8+
@keyframes shine {
9+
to {
10+
background-position-x: -200%;
11+
}
12+
}

src/pages/home/QuotesLoader.tsx

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import Row from 'react-bootstrap/Row';
2+
import Col from 'react-bootstrap/Col';
3+
import Card from 'react-bootstrap/Card';
4+
import './QuotesLoader.css';
5+
6+
interface Props {
7+
count?: number;
8+
}
9+
10+
const QuotesLoader = (props: Props) => (
11+
<Row className="mt-4">
12+
{
13+
Array.apply(null, Array(props.count)).map(() => (
14+
<Col md={4} style={{ marginBottom: 20 }}>
15+
<Card className="bar-loader" style={{ minHeight: 125 }} />
16+
</Col>
17+
))
18+
}
19+
</Row>
20+
)
21+
22+
QuotesLoader.defaultProps = {
23+
count: 3,
24+
}
25+
26+
export default QuotesLoader;

0 commit comments

Comments
 (0)