Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Experimental React Refresh Example #12081

Merged
merged 2 commits into from
Apr 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions examples/z-experimental-refresh/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# z-experimental-refresh

This is an **experimental** demo of React Fast Refresh.
Please do not use these features in your application or project (yet).

## Usage

Run the following command to get started:

```bash
yarn dev
# or
npm run dev
```
15 changes: 15 additions & 0 deletions examples/z-experimental-refresh/components/ClickCount.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { useCallback, useState } from 'react'
import styles from './ClickCount.module.css'

export default function ClickCount() {
const [count, setCount] = useState(0)
const increment = useCallback(() => {
setCount(v => v + 1)
}, [setCount])

return (
<button className={styles.btn} type="button" onClick={increment}>
Clicks: {count}
</button>
)
}
32 changes: 32 additions & 0 deletions examples/z-experimental-refresh/components/ClickCount.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
button.btn {
margin: 0;
border: 1px solid #d1d1d1;
border-radius: 5px;
padding: 0.5em;
vertical-align: middle;
white-space: normal;
background: none;
line-height: 1;
font-size: 1rem;
font-family: inherit;
transition: all 0.2s ease;
}

button.btn {
padding: 0.65em 1em;
background: #0076ff;
color: #fff;
border: none;
cursor: pointer;
transition: all 0.2s ease;
}
button.btn:focus {
outline: 0;
border-color: #0076ff;
}
button.btn:hover {
background: rgba(0, 118, 255, 0.8);
}
button.btn:focus {
box-shadow: 0 0 0 2px rgba(0, 118, 255, 0.5);
}
41 changes: 41 additions & 0 deletions examples/z-experimental-refresh/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
body {
font-family: 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica',
'Arial', sans-serif;
padding: 20px 20px 60px;
max-width: 680px;
margin: 0 auto;
font-size: 16px;
line-height: 1.65;
word-break: break-word;
font-kerning: auto;
font-variant: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
hyphens: auto;
}

h2,
h3,
h4 {
margin-top: 1.5em;
}

code,
pre {
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace, serif;
font-size: 0.92em;
color: #d400ff;
}

code:before,
code:after {
content: '`';
}

hr {
border: none;
border-bottom: 1px solid #efefef;
margin: 6em auto;
}
5 changes: 5 additions & 0 deletions examples/z-experimental-refresh/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
experimental: {
reactRefresh: true,
},
}
15 changes: 15 additions & 0 deletions examples/z-experimental-refresh/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "z-experimental-refresh",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "canary",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"license": "MIT"
}
5 changes: 5 additions & 0 deletions examples/z-experimental-refresh/pages/_app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import '../global.css'

export default function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
35 changes: 35 additions & 0 deletions examples/z-experimental-refresh/pages/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import { useCallback, useEffect, useState } from 'react'
import ClickCount from '../components/ClickCount'

function Home() {
const [count, setCount] = useState(0)
const increment = useCallback(() => {
setCount(v => v + 1)
}, [setCount])

useEffect(() => {
const r = setInterval(() => {
increment()
}, 250)
return () => {
clearInterval(r)
}
}, [increment])

return (
<main>
<h1>Home</h1>
<div>
<p>Auto Incrementing Value</p>
<p>Current value: {count}</p>
</div>
<hr />
<div>
<p>Component with State</p>
<ClickCount />
</div>
</main>
)
}

export default Home