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

332 lines
9.0 KiB
JavaScript
Raw Normal View History

/** @format */
/**
* External dependencies
*/
2018-09-14 09:53:54 +00:00
import { decodeEntities } from '@wordpress/html-entities';
import { __ } from '@wordpress/i18n';
import classNames from 'classnames';
2018-09-12 11:16:36 +00:00
import { get, isEqual, partial } from 'lodash';
2018-08-08 11:00:45 +00:00
import { Component, createRef } from '@wordpress/element';
import { IconButton, SelectControl } from '@wordpress/components';
import PropTypes from 'prop-types';
import { interpolateViridis as d3InterpolateViridis } from 'd3-scale-chromatic';
2018-09-12 11:16:36 +00:00
import { formatDefaultLocale as d3FormatDefaultLocale } from 'd3-format';
2018-09-11 11:04:26 +00:00
import Gridicon from 'gridicons';
/**
* 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';
import { updateQueryString } from 'lib/nav-utils';
2018-08-08 11:00:45 +00:00
const WIDE_BREAKPOINT = 1100;
2018-09-12 11:16:36 +00:00
d3FormatDefaultLocale( {
decimal: '.',
thousands: ',',
grouping: [ 3 ],
2018-09-14 09:53:54 +00:00
currency: [ decodeEntities( get( wcSettings, 'currency.symbol', '' ) ), '' ],
2018-09-12 11:16:36 +00:00
} );
function getOrderedKeys( props ) {
const updatedKeys = [
2018-08-07 11:57:45 +00:00
...new Set(
props.data.reduce( ( accum, curr ) => {
2018-08-07 11:57:45 +00:00
Object.keys( curr ).forEach( key => key !== 'date' && accum.push( key ) );
return accum;
}, [] )
),
].map( key => ( {
key,
total: props.data.reduce( ( a, c ) => a + c[ key ], 0 ),
visible: true,
focus: true,
} ) );
if ( props.layout === 'comparison' ) {
updatedKeys.sort( ( a, b ) => b.total - a.total );
}
return updatedKeys;
2018-08-07 11:57:45 +00:00
}
/**
* A chart container using d3, to display timeseries data with an interactive legend.
*/
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 ),
2018-09-11 11:04:26 +00:00
type: props.type,
2018-08-12 17:01:10 +00:00
visibleData: [ ...props.data ],
2018-08-08 11:00:45 +00:00
width: wpBody - 2 * calcGap,
};
2018-09-11 11:04:26 +00:00
this.handleTypeToggle = this.handleTypeToggle.bind( this );
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;
const orderedKeys = getOrderedKeys( this.props );
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 );
}
2018-09-11 11:04:26 +00:00
handleTypeToggle( type ) {
if ( this.state.type !== type ) {
this.setState( { type } );
}
}
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,
} ) );
2018-09-07 09:21:52 +00:00
const copyEvent = { ...event }; // can't pass a synthetic event into the hover handler
this.setState(
{
orderedKeys,
visibleData: this.getVisibleData( data, orderedKeys ),
},
() => {
this.handleLegendHover( copyEvent );
}
);
}
handleLegendHover( event ) {
2018-09-07 09:21:52 +00:00
const hoverTarget = this.state.orderedKeys.filter( d => d.key === event.target.id )[ 0 ];
this.setState( {
orderedKeys: this.state.orderedKeys.map( d => {
2018-09-07 09:21:52 +00:00
let enterFocus = d.key === event.target.id ? true : false;
enterFocus = ! hoverTarget.visible ? true : enterFocus;
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;
} );
}
setInterval( interval ) {
updateQueryString( { interval } );
}
renderIntervalSelector() {
const { interval, allowedIntervals } = this.props;
if ( ! allowedIntervals || allowedIntervals.length < 1 ) {
return null;
}
const intervalLabels = {
hour: __( 'By hour', 'wc-admin' ),
day: __( 'By day', 'wc-admin' ),
week: __( 'By week', 'wc-admin' ),
month: __( 'By month', 'wc-admin' ),
quarter: __( 'By quarter', 'wc-admin' ),
year: __( 'By year', 'wc-admin' ),
};
return (
<SelectControl
className="woocommerce-chart__interval-select"
value={ interval }
options={ allowedIntervals.map( allowedInterval => ( {
value: allowedInterval,
label: intervalLabels[ allowedInterval ],
} ) ) }
onChange={ this.setInterval }
/>
);
}
render() {
2018-09-11 11:04:26 +00:00
const { orderedKeys, type, visibleData, width } = this.state;
const {
dateParser,
layout,
title,
tooltipFormat,
xFormat,
x2Format,
yFormat,
interval,
} = this.props;
const legendDirection = layout === 'standard' && width > WIDE_BREAKPOINT ? 'row' : 'column';
const chartDirection = layout === 'comparison' && 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,
2018-09-04 11:31:18 +00:00
left: 80,
2018-09-04 13:03:46 +00:00
right: 30,
top: 0,
};
return (
2018-08-08 11:00:45 +00:00
<div className="woocommerce-chart" ref={ this.chartRef }>
<div className="woocommerce-chart__header">
<span className="woocommerce-chart__title">{ title }</span>
2018-08-08 11:00:45 +00:00
{ width > WIDE_BREAKPOINT && legendDirection === 'row' && legend }
{ this.renderIntervalSelector() }
2018-09-11 11:04:26 +00:00
<div className="woocommerce-chart__types">
<IconButton
className={ classNames( 'woocommerce-chart__type-button', {
'woocommerce-chart__type-button-selected': type === 'line',
} ) }
icon={ <Gridicon icon="line-graph" /> }
onClick={ partial( this.handleTypeToggle, 'line' ) }
/>
<IconButton
className={ classNames( 'woocommerce-chart__type-button', {
'woocommerce-chart__type-button-selected': type === 'bar',
} ) }
icon={ <Gridicon icon="stats-alt" /> }
onClick={ partial( this.handleTypeToggle, 'bar' ) }
/>
</div>
</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 }
dateParser={ dateParser }
height={ 300 }
margin={ margin }
orderedKeys={ orderedKeys }
tooltipFormat={ tooltipFormat }
type={ type }
interval={ interval }
2018-08-08 11:00:45 +00:00
width={ chartDirection === 'row' ? width - 320 : width }
xFormat={ xFormat }
x2Format={ x2Format }
yFormat={ yFormat }
/>
</div>
2018-08-08 11:00:45 +00:00
{ width < WIDE_BREAKPOINT && <div className="woocommerce-chart__footer">{ legend }</div> }
</div>
);
}
}
Chart.propTypes = {
/**
* An array of data.
*/
data: PropTypes.array.isRequired,
/**
* Format to parse dates into d3 time format
*/
dateParser: PropTypes.string.isRequired,
2018-09-05 20:52:35 +00:00
/**
* A datetime formatting string to format the title of the toolip, passed to d3TimeFormat.
*/
tooltipFormat: PropTypes.string,
/**
* A datetime formatting string, passed to d3TimeFormat.
*/
xFormat: PropTypes.string,
2018-09-07 10:28:02 +00:00
/**
* A datetime formatting string, passed to d3TimeFormat.
*/
x2Format: PropTypes.string,
2018-09-05 20:52:35 +00:00
/**
* A number formatting string, passed to d3Format.
*/
yFormat: PropTypes.string,
2018-09-10 11:23:50 +00:00
/**
* `standard` (default) legend layout in the header or `comparison` moves legend layout to the left
*/
layout: PropTypes.oneOf( [ 'standard', 'comparison' ] ),
/**
* A title describing this chart.
*/
title: PropTypes.string,
2018-09-11 11:04:26 +00:00
/**
* Chart type of either `line` or `bar`.
*/
type: PropTypes.oneOf( [ 'bar', 'line' ] ),
/**
* Information about the currently selected interval, and set of allowed intervals for the chart. See `getIntervalsForQuery`.
*/
intervalData: PropTypes.object,
/**
* Interval specification (hourly, daily, weekly etc).
*/
interval: PropTypes.oneOf( [ 'hour', 'day', 'week', 'month', 'quarter', 'year' ] ),
/**
* Allowed intervals to show in a dropdown.
*/
allowedIntervals: PropTypes.array,
};
2018-08-08 11:00:45 +00:00
Chart.defaultProps = {
data: [],
dateParser: '%Y-%m-%dT%H:%M:%S',
2018-09-05 20:52:35 +00:00
tooltipFormat: '%Y-%m-%d',
2018-09-07 10:28:02 +00:00
xFormat: '%d',
x2Format: '%b %Y',
2018-09-07 12:39:31 +00:00
yFormat: '$.3s',
2018-09-10 11:23:50 +00:00
layout: 'standard',
2018-09-11 11:04:26 +00:00
type: 'line',
interval: 'day',
2018-08-08 11:00:45 +00:00
};
export default Chart;