woocommerce/plugins/woocommerce-admin/client/components/chart/index.js

177 lines
4.7 KiB
JavaScript
Raw Normal View History

/** @format */
/**
* External dependencies
*/
import classNames from 'classnames';
2018-08-08 11:00:45 +00:00
import { isEqual } from 'lodash';
import { Component, createRef } from '@wordpress/element';
import PropTypes from 'prop-types';
import { interpolateViridis as d3InterpolateViridis } from 'd3-scale-chromatic';
/**
* Internal dependencies
*/
import D3Chart from './charts';
import Legend from './legend';
2018-08-08 11:00:45 +00:00
import { gap, gaplarge } from 'stylesheets/abstracts/_variables.scss';
2018-08-08 11:00:45 +00:00
const WIDE_BREAKPOINT = 1100;
2018-08-07 11:57:45 +00:00
function getOrderedKeys( data ) {
return [
...new Set(
data.reduce( ( accum, curr ) => {
Object.keys( curr ).forEach( key => key !== 'date' && accum.push( key ) );
return accum;
}, [] )
),
]
.map( key => ( {
key,
total: data.reduce( ( a, c ) => a + c[ key ], 0 ),
2018-08-08 11:00:45 +00:00
visible: true,
focus: true,
2018-08-07 11:57:45 +00:00
} ) )
.sort( ( a, b ) => b.total - a.total );
}
class Chart extends Component {
constructor( props ) {
super( props );
2018-08-08 11:00:45 +00:00
this.chartRef = createRef();
const wpBody = document.getElementById( 'wpbody' ).getBoundingClientRect().width;
const wpWrap = document.getElementById( 'wpwrap' ).getBoundingClientRect().width;
const calcGap = wpWrap > 782 ? gaplarge.match( /\d+/ )[ 0 ] : gap.match( /\d+/ )[ 0 ];
this.state = {
2018-08-08 11:00:45 +00:00
data: props.data,
orderedKeys: getOrderedKeys( props.data ),
2018-08-12 17:01:10 +00:00
visibleData: [ ...props.data ],
2018-08-08 11:00:45 +00:00
width: wpBody - 2 * calcGap,
};
this.handleLegendToggle = this.handleLegendToggle.bind( this );
this.handleLegendHover = this.handleLegendHover.bind( this );
this.updateDimensions = this.updateDimensions.bind( this );
2018-08-12 17:01:10 +00:00
this.getVisibleData = this.getVisibleData.bind( this );
}
2018-08-08 11:00:45 +00:00
componentDidUpdate( prevProps ) {
const { data } = this.props;
2018-08-12 17:01:10 +00:00
const orderedKeys = getOrderedKeys( data );
2018-08-08 11:00:45 +00:00
if ( ! isEqual( [ ...data ].sort(), [ ...prevProps.data ].sort() ) ) {
/* eslint-disable react/no-did-update-set-state */
this.setState( {
2018-08-12 17:01:10 +00:00
orderedKeys: orderedKeys,
visibleData: this.getVisibleData( data, orderedKeys ),
2018-08-08 11:00:45 +00:00
} );
/* eslint-enable react/no-did-update-set-state */
2018-08-07 11:57:45 +00:00
}
}
componentDidMount() {
window.addEventListener( 'resize', this.updateDimensions );
}
componentWillUnmount() {
window.removeEventListener( 'resize', this.updateDimensions );
}
handleLegendToggle( event ) {
2018-08-12 17:01:10 +00:00
const { data } = this.props;
const orderedKeys = this.state.orderedKeys.map( d => ( {
...d,
visible: d.key === event.target.id ? ! d.visible : d.visible,
} ) );
this.setState( {
2018-08-12 17:01:10 +00:00
orderedKeys,
visibleData: this.getVisibleData( data, orderedKeys ),
} );
}
handleLegendHover( event ) {
this.setState( {
orderedKeys: this.state.orderedKeys.map( d => {
const enterFocus = d.key === event.target.id ? true : false;
return {
...d,
focus: event.type === 'mouseleave' || event.type === 'blur' ? true : enterFocus,
};
} ),
} );
}
updateDimensions() {
this.setState( {
2018-08-08 11:00:45 +00:00
width: this.chartRef.current.offsetWidth,
} );
}
2018-08-12 17:01:10 +00:00
getVisibleData( data, orderedKeys ) {
const visibleKeys = orderedKeys.filter( d => d.visible );
return data.map( d => {
const newRow = { date: d.date };
visibleKeys.forEach( row => {
newRow[ row.key ] = d[ row.key ];
} );
return newRow;
} );
}
render() {
2018-08-12 17:01:10 +00:00
const { orderedKeys, visibleData, width } = this.state;
2018-08-08 11:00:45 +00:00
const legendDirection = orderedKeys.length <= 2 && width > WIDE_BREAKPOINT ? 'row' : 'column';
const chartDirection = orderedKeys.length > 2 && width > WIDE_BREAKPOINT ? 'row' : 'column';
const legend = (
<Legend
2018-08-08 11:00:45 +00:00
className={ 'woocommerce-chart__legend' }
colorScheme={ d3InterpolateViridis }
data={ orderedKeys }
handleLegendHover={ this.handleLegendHover }
handleLegendToggle={ this.handleLegendToggle }
legendDirection={ legendDirection }
/>
);
const margin = {
bottom: 50,
left: 50,
right: 0,
top: 0,
};
return (
2018-08-08 11:00:45 +00:00
<div className="woocommerce-chart" ref={ this.chartRef }>
<div className="woocommerce-chart__header">
{ width > WIDE_BREAKPOINT && legendDirection === 'row' && legend }
</div>
<div
className={ classNames(
2018-08-08 11:00:45 +00:00
'woocommerce-chart__body',
`woocommerce-chart__body-${ chartDirection }`
) }
>
2018-08-08 11:00:45 +00:00
{ width > WIDE_BREAKPOINT && legendDirection === 'column' && legend }
<D3Chart
colorScheme={ d3InterpolateViridis }
2018-08-12 17:01:10 +00:00
data={ visibleData }
height={ 300 }
margin={ margin }
orderedKeys={ orderedKeys }
2018-08-08 11:00:45 +00:00
type={ 'line' }
width={ chartDirection === 'row' ? width - 320 : width }
/>
</div>
2018-08-08 11:00:45 +00:00
{ width < WIDE_BREAKPOINT && <div className="woocommerce-chart__footer">{ legend }</div> }
</div>
);
}
}
Chart.propTypes = {
data: PropTypes.array.isRequired,
title: PropTypes.string,
};
2018-08-08 11:00:45 +00:00
Chart.defaultProps = {
data: [],
};
export default Chart;