1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Merge master into v3-beta

This commit is contained in:
Arunoda Susiripala 2017-06-29 00:51:05 +05:30
commit 655018c0e7
7 changed files with 73 additions and 30 deletions

View file

@ -11,21 +11,18 @@ curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2
cd with-webpack-bundle-analyzer cd with-webpack-bundle-analyzer
``` ```
Install it and run: Install it
```bash ```bash
npm install npm install
npm run dev
```
Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download))
```bash
now
``` ```
## The idea behind the example ## The idea behind the example
This example shows how to analyze the output bundles using [webpack-bundle-analyzer](https://github.com/th0r/webpack-bundle-analyzer#as-plugin) This example shows how to analyze the output bundles using [webpack-bundle-analyzer](https://github.com/th0r/webpack-bundle-analyzer#as-plugin)
To view the stats use `npm run bundle:view` To analyze your webpack output, invoke the following command:
```bash
npm run analyze
```

View file

@ -1,17 +1,16 @@
const {BundleAnalyzerPlugin} = require('webpack-bundle-analyzer') const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const { ANALYZE } = process.env
module.exports = { module.exports = {
webpack: (config, { dev }) => { webpack: function (config) {
// Perform customizations to config if (ANALYZE) {
config.plugins.push( config.plugins.push(new BundleAnalyzerPlugin({
new BundleAnalyzerPlugin({ analyzerMode: 'server',
analyzerMode: 'disabled', analyzerPort: 8888,
// For all options see https://github.com/th0r/webpack-bundle-analyzer#as-plugin openAnalyzer: true
generateStatsFile: true, }))
// Will be available at `.next/stats.json` }
statsFilename: 'stats.json'
})
)
// Important: return the modified config
return config return config
} }
} }

View file

@ -5,13 +5,15 @@
"dev": "next", "dev": "next",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"bundle:view": "webpack-bundle-analyzer .next/stats.json" "analyze": "cross-env ANALYZE=1 next build"
}, },
"dependencies": { "dependencies": {
"next": "latest", "next": "latest",
"react": "^15.4.2", "cross-env": "^5.0.1",
"react-dom": "^15.4.2", "faker": "^4.1.0",
"webpack-bundle-analyzer": "^2.3.0" "react": "^15.6.1",
"react-dom": "^15.6.1",
"webpack-bundle-analyzer": "^2.8.2"
}, },
"license": "ISC" "license": "ISC"
} }

View file

@ -0,0 +1,5 @@
export default () => (
<div>
This is the contact page.
</div>
)

View file

@ -1,4 +1,29 @@
import React from 'react'
import Link from 'next/link' import Link from 'next/link'
export default () => (
<div>Hello World. <Link href='/about'><a>About</a></Link></div> export default class Index extends React.Component {
) static getInitialProps ({ req }) {
if (req) {
// Runs only in the server
const faker = require('faker')
const name = faker.name.findName()
return { name }
}
// Runs only in the client
return { name: 'Arunoda' }
}
render () {
const { name } = this.props
return (
<div>
<h1>Home Page</h1>
<p>Welcome, {name}</p>
<div>
<Link href='/about'><a>About Page</a></Link>
</div>
</div>
)
}
}

View file

@ -326,6 +326,8 @@ export default () => (
That will generate the URL string `/about?name=Zeit`, you can use every property as defined in the [Node.js URL module documentation](https://nodejs.org/api/url.html#url_url_strings_and_url_objects). That will generate the URL string `/about?name=Zeit`, you can use every property as defined in the [Node.js URL module documentation](https://nodejs.org/api/url.html#url_url_strings_and_url_objects).
##### Replace instead of push url
The default behaviour for the `<Link>` component is to `push` a new url into the stack. You can use the `replace` prop to prevent adding a new entry. The default behaviour for the `<Link>` component is to `push` a new url into the stack. You can use the `replace` prop to prevent adding a new entry.
```jsx ```jsx
@ -336,6 +338,18 @@ export default () => (
) )
``` ```
##### Using a component that support `onClick`
`<Link>` supports any component that supports the `onClick` event. In case you don't provide an `<a>` tag, it will only add the `onClick` event handler and won't pass the `href` property.
```jsx
// pages/index.js
import Link from 'next/link'
export default () => (
<div>Click <Link href='/about'><img src="/static/image.png"></Link></div>
)
```
#### Imperatively #### Imperatively
<p><details> <p><details>

View file

@ -15,7 +15,8 @@ export default class CombineAssetsPlugin {
if (!asset) return if (!asset) return
newSource += `${asset.source()}\n` newSource += `${asset.source()}\n`
delete compilation.assets[name]
// We keep existing assets since that helps when analyzing the bundle
}) })
compilation.assets[this.output] = { compilation.assets[this.output] = {