import { localize } from 'i18n-calypso'; import { find } from 'lodash'; import PropTypes from 'prop-types'; import { Component } from 'react'; import ChartLegendItem from './legend-item'; const noop = () => {}; class ChartLegend extends Component { static propTypes = { activeCharts: PropTypes.array, activeTab: PropTypes.object.isRequired, availableCharts: PropTypes.array, clickHandler: PropTypes.func, tabs: PropTypes.array, }; static defaultProps = { activeCharts: [], availableCharts: [], clickHandler: noop, tabs: [], }; onFilterChange = ( chartItem ) => { this.props.clickHandler( chartItem ); }; render() { const legendColors = [ 'chart__legend-color is-dark-blue' ]; const activeTab = this.props.activeTab; const legendItems = this.props.availableCharts.map( function ( legendItem, index ) { const colorClass = legendColors[ index ]; const checked = -1 !== this.props.activeCharts.indexOf( legendItem ); const tab = find( this.props.tabs, { attr: legendItem } ); return ( ); }, this ); return (
); } } export default localize( ChartLegend );