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

[Examples] Add SWR to api-routes and api-routes-middleware #11385

Merged
merged 2 commits into from
Apr 7, 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
4 changes: 2 additions & 2 deletions examples/api-routes-middleware/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
},
"dependencies": {
"cookie": "0.4.0",
"isomorphic-unfetch": "3.0.0",
"next": "latest",
"react": "^16.8.6",
"react-dom": "^16.8.6"
"react-dom": "^16.8.6",
"swr": "0.1.18"
},
"license": "ISC"
}
4 changes: 3 additions & 1 deletion examples/api-routes-middleware/pages/api/cookies.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import cookies from '../../utils/cookies'

const handler = (req, res) => {
// The cookie middleware will add the `set-cookie` header
res.cookie('Next.js', 'api-middleware!')
res.end('Hello Next.js middleware!')
// Return the `set-cookie` header so we can display it in the browser and show that it works!
res.end(res.getHeader('Set-Cookie'))
}

export default cookies(handler)
16 changes: 8 additions & 8 deletions examples/api-routes-middleware/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import fetch from 'isomorphic-unfetch'
import useSWR from 'swr'

const Index = ({ cookie }) => <div>{`Cookie from response: ${cookie}`}</div>
const fetcher = url => fetch(url).then(res => res.text())
lfades marked this conversation as resolved.
Show resolved Hide resolved

export async function getServerSideProps() {
const response = await fetch('http://localhost:3000/api/cookies')
const cookie = response.headers.get('set-cookie')
export default function Index() {
const { data, error } = useSWR('/api/cookies', fetcher)

return { props: { cookie } }
}
if (error) return <div>Failed to load</div>
if (!data) return <div>Loading...</div>

export default Index
return <div>{`Cookie from response: "${data}"`}</div>
}
4 changes: 2 additions & 2 deletions examples/api-routes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
},
"dependencies": {
"next": "latest",
"node-fetch": "2.6.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
"react-dom": "^16.8.6",
"swr": "0.1.18"
},
"license": "ISC"
}
28 changes: 14 additions & 14 deletions examples/api-routes/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import useSWR from 'swr'
import Person from '../components/Person'
import fetch from 'node-fetch'

const Index = ({ people }) => (
<ul>
{people.map((p, i) => (
<Person key={i} person={p} />
))}
</ul>
)
const fetcher = url => fetch(url).then(res => res.json())
lfades marked this conversation as resolved.
Show resolved Hide resolved

export async function getServerSideProps() {
const response = await fetch('http://localhost:3000/api/people')
const people = await response.json()
export default function Index() {
const { data, error } = useSWR('/api/people', fetcher)

return { props: { people } }
}
if (error) return <div>Failed to load</div>
if (!data) return <div>Loading...</div>

export default Index
return (
<ul>
{data.map((p, i) => (
<Person key={i} person={p} />
))}
</ul>
)
}
41 changes: 23 additions & 18 deletions examples/api-routes/pages/person/[id].js
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
import fetch from 'node-fetch'
import { useRouter } from 'next/router'
import useSWR from 'swr'

const Person = ({ data, status }) =>
status === 200 ? (
const fetcher = async url => {
const res = await fetch(url)
const data = await res.json()

if (res.status !== 200) {
throw new Error(data.message)
}
return data
}

export default function Person() {
const { query } = useRouter()
const { data, error } = useSWR(
() => query.id && `/api/people/${query.id}`,
fetcher
)

if (error) return <div>{error.message}</div>
if (!data) return <div>Loading...</div>

return (
<table>
<thead>
<tr>
Expand All @@ -26,20 +46,5 @@ const Person = ({ data, status }) =>
</tr>
</tbody>
</table>
) : (
<p>{data.message}</p>
)

export async function getServerSideProps({ params }) {
const response = await fetch(`http://localhost:3000/api/people/${params.id}`)
const data = await response.json()

return {
props: {
data,
status: response.status,
},
}
}

export default Person