Skip to content

Commit 65a2997

Browse files
committed
Updated example to use app directory
1 parent 1648b41 commit 65a2997

18 files changed

+738
-134
lines changed

.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PREPR_ACCESS_TOKEN=<YOUR_ACCESS_TOKEN>
1+
PREPR_ACCESS_TOKEN=<YOUR-ACCESS-TOKEN>

.gitignore

+36-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
1-
node_modules
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
23
.env
3-
package-lock.json
4-
.next
4+
5+
# dependencies
6+
/node_modules
7+
/.pnp
8+
.pnp.js
9+
10+
# testing
11+
/coverage
12+
13+
# next.js
14+
/.next/
15+
/out/
16+
17+
# production
18+
/build
19+
20+
# misc
21+
.DS_Store
22+
*.pem
23+
24+
# debug
25+
npm-debug.log*
26+
yarn-debug.log*
27+
yarn-error.log*
28+
29+
# local env files
30+
.env*.local
31+
32+
# vercel
33+
.vercel
34+
35+
# typescript
36+
*.tsbuildinfo
37+
next-env.d.ts

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ npm install
1616
pnpm install --shamefully-hoist
1717
```
1818

19-
## Add the environment file
20-
Copy the .env.example file in this directory to .env (which will be ignored by Git) by running the following command:
19+
## Add the environment file
20+
Copy the .env.example file in this directory to .env (which will be ignored by Git) by running the following command:
2121
```bash
2222
cp .env.example .env
2323
```

app/[slug]/page.js

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import client from "@/services/apollo-client";
2+
import {GetArticleBySlug} from "@/queries/getArticleBySlug";
3+
4+
async function getData(slug) {
5+
const {data} = await client.query({
6+
query: GetArticleBySlug,
7+
variables: {
8+
slug
9+
}
10+
})
11+
12+
return data.Article
13+
}
14+
15+
export default async function ArticlePage({params}) {
16+
const {slug} = params;
17+
const article = await getData(slug);
18+
19+
return (
20+
<>
21+
<h1>
22+
{ article?.title }
23+
</h1>
24+
25+
{/* Loop through content types in article content */}
26+
27+
{article?.content.map((contentType) => {
28+
29+
//Display image if it exists
30+
if (contentType.__typename === 'Assets' && contentType.items.length) {
31+
return (
32+
<div className="my-10">
33+
<img
34+
src={contentType.items[0]?.url}
35+
width="300"
36+
height="250"
37+
/>
38+
</div>
39+
)
40+
}
41+
42+
//Display text as HTML
43+
44+
if (contentType.__typename === 'Text') {
45+
return (
46+
<div dangerouslySetInnerHTML={{ __html: contentType.body }}></div>
47+
)
48+
}
49+
})}
50+
</>
51+
)
52+
}

app/layout.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
export const metadata = {
2+
title: 'Next Quick start',
3+
description: 'Next Quick start Prepr project',
4+
}
5+
6+
export default function RootLayout({ children }) {
7+
return (
8+
<html lang="en">
9+
<body>{children}</body>
10+
</html>
11+
)
12+
}

app/page.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { GetArticles } from "../queries/getArticles";
2+
import client from "../services/apollo-client";
3+
4+
import Link from "next/link";
5+
6+
async function getData() {
7+
const {data} = await client.query({
8+
query: GetArticles,
9+
});
10+
return data.Articles.items;
11+
}
12+
13+
export default async function Home() {
14+
const articles = await getData();
15+
16+
return (
17+
<div>
18+
<h1>My blog site</h1>
19+
<ul>
20+
{articles.map((article) => (
21+
22+
//List the fetched articles
23+
<li key={article._id}>
24+
<Link href={article._slug}>{article.title}</Link>
25+
</li>
26+
))}
27+
</ul>
28+
</div>
29+
);
30+
}

jsconfig.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./*"]
5+
}
6+
}
7+
}

next.config.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {
3-
reactStrictMode: true,
4-
swcMinify: true,
5-
}
2+
const nextConfig = {}
63

74
module.exports = nextConfig

0 commit comments

Comments
 (0)