-
Notifications
You must be signed in to change notification settings - Fork 27.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update client-only-render-external-dependency example (#4822)
Changes: * use `dynamic` imports instead of `require` * update `recharts` dependency
- Loading branch information
1 parent
53853d3
commit b122296
Showing
5 changed files
with
60 additions
and
81 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
examples/only-client-render-external-dependencies/components/BarChart.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import dynamic from 'next/dynamic' | ||
|
||
export default dynamic({ | ||
modules: () => ({ | ||
BarChart: import('recharts').then(({ BarChart }) => BarChart), | ||
Bar: import('recharts').then(({ Bar }) => Bar) | ||
}), | ||
render: (props, { BarChart, Bar }) => | ||
<BarChart width={props.width} height={props.height} data={props.data}> | ||
<Bar dataKey='uv' fill='#8884d8' /> | ||
</BarChart> | ||
}) |
12 changes: 12 additions & 0 deletions
12
examples/only-client-render-external-dependencies/components/LineChart.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import dynamic from 'next/dynamic' | ||
|
||
export default dynamic({ | ||
modules: () => ({ | ||
LineChart: import('recharts').then(({ LineChart }) => LineChart), | ||
Line: import('recharts').then(({ Line }) => Line) | ||
}), | ||
render: (props, { LineChart, Line }) => | ||
<LineChart width={props.width} height={props.height} data={props.data}> | ||
<Line type='monotone' dataKey='uv' stroke='#8884d8' /> | ||
</LineChart> | ||
}) |
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
55 changes: 16 additions & 39 deletions
55
examples/only-client-render-external-dependencies/pages/chart.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,21 @@ | ||
import React from 'react' | ||
let LineChart | ||
let Line | ||
class Chart extends React.Component { | ||
constructor () { | ||
super() | ||
this.state = { | ||
chart: false, | ||
data: [ | ||
{name: 'Page A', uv: 4000, pv: 2400, amt: 2400}, | ||
{name: 'Page B', uv: 3000, pv: 1398, amt: 2210}, | ||
{name: 'Page C', uv: 2000, pv: 9800, amt: 2290}, | ||
{name: 'Page D', uv: 2780, pv: 3908, amt: 2000}, | ||
{name: 'Page E', uv: 1890, pv: 4800, amt: 2181}, | ||
{name: 'Page F', uv: 2390, pv: 3800, amt: 2500}, | ||
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100} | ||
] | ||
} | ||
} | ||
import BarChart from '../components/BarChart' | ||
|
||
componentDidMount () { | ||
LineChart = require('recharts').LineChart | ||
Line = require('recharts').Line | ||
const data = [ | ||
{name: 'Page A', uv: 4000, pv: 2400, amt: 2400}, | ||
{name: 'Page B', uv: 3000, pv: 1398, amt: 2210}, | ||
{name: 'Page C', uv: 2000, pv: 9800, amt: 2290}, | ||
{name: 'Page D', uv: 2780, pv: 3908, amt: 2000}, | ||
{name: 'Page E', uv: 1890, pv: 4800, amt: 2181}, | ||
{name: 'Page F', uv: 2390, pv: 3800, amt: 2500}, | ||
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100} | ||
] | ||
|
||
this.setState({ | ||
chart: true | ||
}) | ||
} | ||
|
||
render () { | ||
return ( | ||
<div> | ||
<h1>Another chart</h1> | ||
{this.state.chart && | ||
<LineChart width={400} height={400} data={this.state.data}> | ||
<Line type='monotone' dataKey='uv' stroke='#8884d8' /> | ||
</LineChart> | ||
} | ||
</div> | ||
) | ||
} | ||
} | ||
const Chart = () => ( | ||
<div> | ||
<h1>Another chart</h1> | ||
<BarChart width={400} height={400} data={data} /> | ||
</div> | ||
) | ||
|
||
export default Chart |
60 changes: 19 additions & 41 deletions
60
examples/only-client-render-external-dependencies/pages/index.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,25 @@ | ||
import React from 'react' | ||
import Link from 'next/link' | ||
let LineChart | ||
let Line | ||
import LineChart from '../components/LineChart' | ||
|
||
class Index extends React.Component { | ||
constructor () { | ||
super() | ||
this.state = { | ||
chart: false, | ||
data: [ | ||
{name: 'Page A', uv: 1000, pv: 2400, amt: 2400}, | ||
{name: 'Page B', uv: 3000, pv: 1398, amt: 2210}, | ||
{name: 'Page C', uv: 2000, pv: 9800, amt: 2290}, | ||
{name: 'Page D', uv: 2780, pv: 3908, amt: 2000}, | ||
{name: 'Page E', uv: 1890, pv: 4800, amt: 2181}, | ||
{name: 'Page F', uv: 2390, pv: 3800, amt: 2500}, | ||
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100} | ||
] | ||
} | ||
} | ||
const data = [ | ||
{name: 'Page A', uv: 1000, pv: 2400, amt: 2400}, | ||
{name: 'Page B', uv: 3000, pv: 1398, amt: 2210}, | ||
{name: 'Page C', uv: 2000, pv: 9800, amt: 2290}, | ||
{name: 'Page D', uv: 2780, pv: 3908, amt: 2000}, | ||
{name: 'Page E', uv: 1890, pv: 4800, amt: 2181}, | ||
{name: 'Page F', uv: 2390, pv: 3800, amt: 2500}, | ||
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100} | ||
] | ||
|
||
componentDidMount () { | ||
LineChart = require('recharts').LineChart | ||
Line = require('recharts').Line | ||
|
||
this.setState({ | ||
chart: true | ||
}) | ||
} | ||
|
||
render () { | ||
return ( | ||
<div> | ||
<h1>Chart</h1> | ||
<Link href='/chart'><a>Go to another chart</a></Link> | ||
{this.state.chart && | ||
<LineChart width={400} height={400} data={this.state.data}> | ||
<Line type='monotone' dataKey='uv' stroke='#8884d8' /> | ||
</LineChart> | ||
} | ||
</div> | ||
) | ||
} | ||
} | ||
const Index = () => ( | ||
<div> | ||
<h1>Chart</h1> | ||
<Link href='/chart'> | ||
<a>Go to another chart</a> | ||
</Link> | ||
<LineChart width={400} height={400} data={data} /> | ||
</div> | ||
) | ||
|
||
export default Index |