-
Notifications
You must be signed in to change notification settings - Fork 715
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from hshoff/harry-legend-click
[legend] make legend items clickable. fixes #209
- Loading branch information
Showing
7 changed files
with
190 additions
and
9 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
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
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,22 +1,32 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import additonalProps from '../util/additionalProps'; | ||
|
||
LegendItem.propTypes = { | ||
flexDirection: PropTypes.string, | ||
margin: PropTypes.string, | ||
label: PropTypes.object.isRequired, | ||
}; | ||
|
||
export default function LegendItem({ | ||
children, | ||
flexDirection, | ||
margin, | ||
label, | ||
...restProps | ||
}) { | ||
return ( | ||
<div | ||
className='vx-legend-item' | ||
className="vx-legend-item" | ||
style={{ | ||
display: 'flex', | ||
alignItems: 'center', | ||
flexDirection, | ||
margin, | ||
}} | ||
{...additonalProps(restProps, label)} | ||
> | ||
{children} | ||
</div> | ||
); | ||
} | ||
} |
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 @@ | ||
import callOrValue from './callOrValue'; | ||
|
||
export default function additionalProps(restProps, data) { | ||
return Object.keys(restProps).reduce((ret, cur) => { | ||
ret[cur] = callOrValue(restProps[cur], data); | ||
return ret; | ||
}, {}); | ||
} |
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,6 @@ | ||
export default function callOrValue(maybeFn, data) { | ||
if (typeof maybeFn === 'function') { | ||
return maybeFn(data); | ||
} | ||
return maybeFn; | ||
} |
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