Skip to content

Commit 23c5f86

Browse files
committed
Add custom instance example.
1 parent bac802e commit 23c5f86

File tree

7 files changed

+133
-0
lines changed

7 files changed

+133
-0
lines changed

examples/custom-instance/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[![Deploy to now](https://deploy.now.sh/static/button.svg)](https://deploy.now.sh/?repo=https://github.com/ghengeveld/react-async/tree/master/examples/custom-instance)
2+
3+
# Custom React Async instance
4+
5+
Demonstrates how to use a preconfigured React Async instance.

examples/custom-instance/now.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"version": 2,
3+
"builds": [{ "src": "package.json", "use": "@now/static-build" }],
4+
"routes": [
5+
{ "src": "^/static/(.*)", "dest": "/static/$1" },
6+
{ "src": "^/favicon.ico", "dest": "/favicon.ico" },
7+
{ "src": "^/(.*)", "dest": "/index.html" }
8+
]
9+
}

examples/custom-instance/package.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "custom-instance",
3+
"version": "0.0.0",
4+
"private": true,
5+
"dependencies": {
6+
"react": "^16.7.0",
7+
"react-async": "latest",
8+
"react-dom": "^16.7.0",
9+
"react-scripts": "2.1.2"
10+
},
11+
"scripts": {
12+
"start": "react-scripts start",
13+
"build": "react-scripts build",
14+
"now-build": "npm run build && mv build dist"
15+
},
16+
"eslintConfig": {
17+
"extends": "react-app"
18+
},
19+
"browserslist": [
20+
">0.2%",
21+
"not dead",
22+
"not ie <= 11",
23+
"not op_mini all"
24+
]
25+
}
3.78 KB
Binary file not shown.
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
6+
<meta name="theme-color" content="#000000" />
7+
<title>React App</title>
8+
</head>
9+
<body>
10+
<noscript> You need to enable JavaScript to run this app. </noscript>
11+
<div id="root"></div>
12+
</body>
13+
</html>
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
body {
2+
margin: 20px;
3+
padding: 0;
4+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
5+
"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
6+
-webkit-font-smoothing: antialiased;
7+
-moz-osx-font-smoothing: grayscale;
8+
}
9+
10+
.user {
11+
display: inline-block;
12+
margin: 20px;
13+
text-align: center;
14+
}
15+
16+
.avatar {
17+
background: #eee;
18+
border-radius: 64px;
19+
width: 128px;
20+
height: 128px;
21+
}
22+
23+
.name {
24+
margin-top: 10px;
25+
}
26+
27+
.placeholder {
28+
opacity: 0.5;
29+
}

examples/custom-instance/src/index.js

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import React from "react"
2+
import { createInstance } from "react-async"
3+
import ReactDOM from "react-dom"
4+
import "./index.css"
5+
6+
const loadUser = ({ userId }) =>
7+
fetch(`https://reqres.in/api/users/${userId}`)
8+
.then(res => (res.ok ? res : Promise.reject(res)))
9+
.then(res => res.json())
10+
11+
const AsyncUser = createInstance({
12+
promiseFn: loadUser,
13+
})
14+
15+
const UserPlaceholder = () => (
16+
<div className="user placeholder">
17+
<div className="avatar" />
18+
<div className="name">══════</div>
19+
</div>
20+
)
21+
22+
const UserDetails = ({ data }) => (
23+
<div className="user">
24+
<img className="avatar" src={data.data.avatar} alt="" />
25+
<div className="name">
26+
{data.data.first_name} {data.data.last_name}
27+
</div>
28+
</div>
29+
)
30+
31+
const App = () => (
32+
<>
33+
<AsyncUser userId={1}>
34+
{({ data, error, isLoading }) => {
35+
if (isLoading) return <UserPlaceholder />
36+
if (error) return <p>{error.message}</p>
37+
if (data) return <UserDetails data={data} />
38+
return null
39+
}}
40+
</AsyncUser>
41+
42+
<AsyncUser userId={2}>
43+
<AsyncUser.Loading>
44+
<UserPlaceholder />
45+
</AsyncUser.Loading>
46+
<AsyncUser.Resolved>{data => <UserDetails data={data} />}</AsyncUser.Resolved>
47+
<AsyncUser.Rejected>{error => <p>{error.message}</p>}</AsyncUser.Rejected>
48+
</AsyncUser>
49+
</>
50+
)
51+
52+
ReactDOM.render(<App />, document.getElementById("root"))

0 commit comments

Comments
 (0)