Skip to content
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
8 changes: 6 additions & 2 deletions packages/bump/src/area-bump/AreaBump.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/
import React, { memo, useState, Fragment } from 'react'
import { withContainer, useDimensions, SvgWrapper } from '@nivo/core'
import { bindDefs, withContainer, useDimensions, SvgWrapper } from '@nivo/core'
import { Grid, Axes } from '@nivo/axes'
import { AreaBumpPropTypes, AreaBumpDefaultProps } from './props'
import { useAreaBump } from './hooks'
Expand All @@ -34,6 +34,8 @@ const AreaBump = props => {
fillOpacity,
activeFillOpacity,
inactiveFillOpacity,
defs,
fill,
borderWidth,
activeBorderWidth,
inactiveBorderWidth,
Expand Down Expand Up @@ -92,6 +94,8 @@ const AreaBump = props => {
current: currentSerie,
})

const boundDefs = bindDefs(defs, series, fill, { targetKey: 'color' })

const layerById = {
grid: enableGridX && (
<Grid key="grid" width={innerWidth} height={innerHeight} xScale={xScale} />
Expand Down Expand Up @@ -152,7 +156,7 @@ const AreaBump = props => {
}

return (
<SvgWrapper width={outerWidth} height={outerHeight} margin={margin}>
<SvgWrapper defs={boundDefs} width={outerWidth} height={outerHeight} margin={margin}>
{layers.map((layer, i) => {
if (typeof layer === 'function') {
return (
Expand Down
14 changes: 14 additions & 0 deletions packages/bump/src/area-bump/props.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ const commonPropTypes = {
fillOpacity: PropTypes.number.isRequired,
activeFillOpacity: PropTypes.number.isRequired,
inactiveFillOpacity: PropTypes.number.isRequired,
defs: PropTypes.arrayOf(
PropTypes.shape({
id: PropTypes.string.isRequired,
})
).isRequired,
fill: PropTypes.arrayOf(
PropTypes.shape({
id: PropTypes.string,
match: PropTypes.oneOfType([PropTypes.oneOf(['*']), PropTypes.object, PropTypes.func])
.isRequired,
})
).isRequired,
borderWidth: PropTypes.number.isRequired,
activeBorderWidth: PropTypes.number.isRequired,
inactiveBorderWidth: PropTypes.number.isRequired,
Expand Down Expand Up @@ -88,6 +100,8 @@ const commonDefaultProps = {
fillOpacity: 0.8,
activeFillOpacity: 1,
inactiveFillOpacity: 0.15,
defs: [],
fill: [],
borderWidth: 1,
activeBorderWidth: 1,
inactiveBorderWidth: 0,
Expand Down
43 changes: 42 additions & 1 deletion packages/bump/stories/bump.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'
import { storiesOf } from '@storybook/react'
import range from 'lodash/range'
import shuffle from 'lodash/shuffle'
import { Bump } from '../src'
import { AreaBump, Bump } from '../src'

const generateData = () => {
const years = range(2000, 2005)
Expand Down Expand Up @@ -132,3 +132,44 @@ stories.add('Missing data', () => (
]}
/>
))

stories.add('Area with fill pattern', () => (
<AreaBump
{...commonProps}
indexBy="id"
defs={[
{
id: 'dots',
type: 'patternDots',
background: 'inherit',
color: '#38bcb2',
size: 4,
padding: 1,
stagger: true,
},
{
id: 'lines',
type: 'patternLines',
background: 'inherit',
color: '#eed312',
rotation: -45,
lineWidth: 6,
spacing: 10,
},
]}
fill={[
{
match: {
id: 'Serie 3',
},
id: 'lines',
},
{
match: {
id: 'Serie 5',
},
id: 'dots',
},
]}
/>
))
8 changes: 7 additions & 1 deletion website/src/data/components/area-bump/props.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@
* file that was distributed with this source code.
*/
import { AreaBumpDefaultProps as defaults } from '@nivo/bump'
import { motionProperties, axesProperties, groupProperties } from '../../../lib/componentProperties'
import {
axesProperties,
defsProperties,
groupProperties,
motionProperties,
} from '../../../lib/componentProperties'

const props = [
{
Expand Down Expand Up @@ -235,6 +240,7 @@ const props = [
defaultValue: defaults.inactiveBorderOpacity,
controlType: 'opacity',
},
...defsProperties('Style', ['svg']),
{
key: 'startLabel',
group: 'Labels',
Expand Down
21 changes: 21 additions & 0 deletions website/src/pages/area-bump/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import React from 'react'
import range from 'lodash/range'
import random from 'lodash/random'
import { patternDotsDef, patternLinesDef } from '@nivo/core'
import { ResponsiveAreaBump, AreaBumpDefaultProps } from '@nivo/bump'
import ComponentTemplate from '../../components/components/ComponentTemplate'
import meta from '../../data/components/area-bump/meta.yml'
Expand Down Expand Up @@ -48,6 +49,26 @@ const initialProperties = {
fillOpacity: AreaBumpDefaultProps.fillOpacity,
activeFillOpacity: AreaBumpDefaultProps.activeFillOpacity,
inactiveFillOpacity: AreaBumpDefaultProps.inactiveFillOpacity,
defs: [
patternDotsDef('dots', {
background: 'inherit',
color: '#38bcb2',
size: 4,
padding: 1,
stagger: true,
}),
patternLinesDef('lines', {
background: 'inherit',
color: '#eed312',
rotation: -45,
lineWidth: 6,
spacing: 10,
}),
],
fill: [
{ match: { id: 'CoffeeScript' }, id: 'dots' },
{ match: { id: 'TypeScript' }, id: 'lines' },
],
borderWidth: AreaBumpDefaultProps.borderWidth,
activeBorderWidth: AreaBumpDefaultProps.activeBorderWidth,
inactiveBorderWidth: AreaBumpDefaultProps.inactiveBorderWidth,
Expand Down