-
Notifications
You must be signed in to change notification settings - Fork 27.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dynamic-granular-chunking' of github.com:janicklas-ralp…
…h/next.js into dynamic-granular-chunking
- Loading branch information
Showing
29 changed files
with
1,897 additions
and
1,369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
examples/api-routes-apollo-server-and-client/pages/api/graphql.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import Link from 'next/link' | ||
|
||
const Layout = ({ children }) => ( | ||
<> | ||
<nav> | ||
<Link href='/'> | ||
<a>home</a> | ||
</Link> | ||
<Link href='/blog'> | ||
<a>blog</a> | ||
</Link> | ||
<Link href='/about'> | ||
<a>about</a> | ||
</Link> | ||
</nav> | ||
<main>{children}</main> | ||
<style jsx>{` | ||
nav { | ||
text-align: center; | ||
} | ||
nav a { | ||
margin-right: 2px; | ||
padding: 4px; | ||
} | ||
main { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
`}</style> | ||
</> | ||
) | ||
|
||
export default Layout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: About | ||
date: 2019-03-17T19:31:20.591Z | ||
--- | ||
|
||
## Welcome to the About page | ||
|
||
This is the about page. |
7 changes: 7 additions & 0 deletions
7
.../content/blogPosts/2019-09-06_its_not_the_problem_you_want_to_solve_boiiiiii.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: A blog post with picture of dog | ||
date: 2019-09-06T08:28:44.549Z | ||
thumbnail: /static/img/puppy-and-adult-dog.jpg | ||
--- | ||
|
||
Unfortunately, that's it. |
9 changes: 9 additions & 0 deletions
9
...-netlify-cms/content/blogPosts/2019-09-06_why_did_the_chicken_cross_the_road.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: Why did the chicken cross the road | ||
date: 2019-09-06T08:28:44.549Z | ||
thumbnail: /static/img/1200px-whio_blue_duck_at_staglands_akatarawa_new_zealand.jpg | ||
--- | ||
|
||
To get to the other side. | ||
|
||
I know it's a picture of a duck in the thumbnail. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Home | ||
date: 2019-03-17T19:31:20.591Z | ||
--- | ||
|
||
## Welcome to the Home Page | ||
|
||
If you want to know more about Next.js + Netlifycms go to the official tutorial [here](https://www.netlifycms.org/docs/nextjs/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
const fs = require('fs') | ||
const blogPostsFolder = './content/blogPosts' | ||
|
||
const getPathsForPosts = () => | ||
fs.readdirSync(blogPostsFolder).reduce((acc, blogName) => { | ||
const trimmedName = blogName.substring(0, blogName.length - 3) | ||
return Object.assign(acc, { | ||
[`/blog/post/${trimmedName}`]: { | ||
page: '/blog/post/[slug]', | ||
query: { | ||
slug: trimmedName | ||
} | ||
} | ||
}) | ||
}, {}) | ||
|
||
module.exports = { | ||
webpack: configuration => { | ||
configuration.module.rules.push({ | ||
test: /\.md$/, | ||
use: 'frontmatter-markdown-loader' | ||
}) | ||
return configuration | ||
}, | ||
async exportPathMap (defaultPathMap) { | ||
return { | ||
...defaultPathMap, | ||
...getPathsForPosts() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "with-netlify-cms", | ||
"version": "1.0.0", | ||
"license": "ISC", | ||
"scripts": { | ||
"dev": "next", | ||
"build": "next build", | ||
"start": "next start", | ||
"export": "npm run build && next export" | ||
}, | ||
"dependencies": { | ||
"next": "latest", | ||
"react": "^16.9.0", | ||
"react-dom": "^16.9.0" | ||
}, | ||
"devDependencies": { | ||
"frontmatter-markdown-loader": "^2.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Layout from '../components/layout' | ||
import { attributes, html } from '../content/about.md' | ||
|
||
const About = () => ( | ||
<Layout> | ||
<h1>{attributes.title}</h1> | ||
<div dangerouslySetInnerHTML={{ __html: html }} /> | ||
<style jsx>{` | ||
h1, | ||
div { | ||
text-align: center; | ||
} | ||
`}</style> | ||
</Layout> | ||
) | ||
|
||
export default About |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import Link from 'next/link' | ||
import Layout from '../../components/layout' | ||
|
||
const importBlogPosts = async () => { | ||
// https://webpack.js.org/guides/dependency-management/#requirecontext | ||
const markdownFiles = require | ||
.context('../../content/blogPosts', false, /\.md$/) | ||
.keys() | ||
.map(relativePath => relativePath.substring(2)) | ||
|
||
return Promise.all( | ||
markdownFiles.map(async path => { | ||
const markdown = await import(`../../content/blogPosts/${path}`) | ||
return { ...markdown, slug: path.substring(0, path.length - 3) } | ||
}) | ||
) | ||
} | ||
|
||
const Blog = ({ postsList }) => ( | ||
<Layout> | ||
{postsList.map(post => ( | ||
<div key={post.slug} className='post'> | ||
<Link href='/blog/post/[slug]' as={`/blog/post/${post.slug}`}> | ||
<a> | ||
<img src={post.attributes.thumbnail} /> | ||
<h2>{post.attributes.title}</h2> | ||
</a> | ||
</Link> | ||
</div> | ||
))} | ||
<style jsx>{` | ||
.post { | ||
text-align: center; | ||
} | ||
img { | ||
max-width: 100%; | ||
max-height: 300px; | ||
} | ||
`}</style> | ||
</Layout> | ||
) | ||
|
||
Blog.getInitialProps = async () => { | ||
const postsList = await importBlogPosts() | ||
return { postsList } | ||
} | ||
|
||
export default Blog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import Layout from '../../../components/layout' | ||
|
||
const Post = ({ blogpost }) => { | ||
if (!blogpost) return <div>not found</div> | ||
|
||
const { html, attributes } = blogpost.default | ||
|
||
return ( | ||
<Layout> | ||
<article> | ||
<h1>{attributes.title}</h1> | ||
<img src={attributes.thumbnail} /> | ||
<div dangerouslySetInnerHTML={{ __html: html }} /> | ||
</article> | ||
<style jsx>{` | ||
article { | ||
margin: 0 auto; | ||
} | ||
h1 { | ||
text-align: center; | ||
} | ||
`}</style> | ||
</Layout> | ||
) | ||
} | ||
|
||
Post.getInitialProps = async ({ query }) => { | ||
const { slug } = query | ||
const blogpost = await import(`../../../content/blogPosts/${slug}.md`).catch( | ||
() => null | ||
) | ||
return { blogpost } | ||
} | ||
|
||
export default Post |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Layout from '../components/layout' | ||
import { attributes, html } from '../content/home.md' | ||
|
||
const Home = () => ( | ||
<Layout> | ||
<h1>{attributes.title}</h1> | ||
<div dangerouslySetInnerHTML={{ __html: html }} /> | ||
<style jsx>{` | ||
h1, | ||
div { | ||
text-align: center; | ||
} | ||
`}</style> | ||
</Layout> | ||
) | ||
|
||
export default Home |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
backend: | ||
name: git-gateway | ||
branch: master | ||
media_folder: static/img | ||
slug: | ||
encoding: 'ascii' | ||
clean_accents: true | ||
sanitize_replacement: '_' | ||
collections: | ||
- name: 'pages' | ||
label: 'Pages' | ||
files: | ||
- label: 'Home' | ||
name: 'home' | ||
file: 'content/home.md' | ||
fields: | ||
- { label: 'Title', name: 'title', widget: 'string' } | ||
- { label: 'Publish Date', name: 'date', widget: 'datetime' } | ||
- { label: 'Body', name: 'body', widget: 'markdown' } | ||
- label: 'About' | ||
name: 'about' | ||
file: 'content/about.md' | ||
fields: | ||
- { label: 'Title', name: 'title', widget: 'string' } | ||
- { label: 'Publish Date', name: 'date', widget: 'datetime' } | ||
- { label: 'Body', name: 'body', widget: 'markdown' } | ||
- label: 'Blog' | ||
name: 'blog' | ||
folder: 'content/blogPosts' | ||
create: true | ||
slug: '{{year}}-{{month}}-{{day}}_{{slug}}' | ||
fields: | ||
- { label: 'Title', name: 'title', widget: 'string', required: true } | ||
- { label: 'Publish Date', name: 'date', widget: 'datetime', required: true } | ||
- { label: 'Featured Image', name: 'thumbnail', widget: 'image', required: true } | ||
- { label: 'Body', name: 'body', widget: 'markdown', required: true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Content Manager</title> | ||
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script> | ||
</head> | ||
<body> | ||
<!-- Include the script that builds the page and powers Netlify CMS --> | ||
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script> | ||
</body> | ||
</html> |
Binary file added
BIN
+168 KB
.../public/static/img/1200px-whio_blue_duck_at_staglands_akatarawa_new_zealand.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.