import { useTranslate } from 'i18n-calypso'; import moment from 'moment'; import { useState, useEffect, useRef, FunctionComponent } from 'react'; import Intervals from 'calypso/blocks/stats-navigation/intervals'; import Chart from 'calypso/components/chart'; import Legend from 'calypso/components/chart/legend'; import { rectIsEqual, rectIsZero, NullableDOMRect } from 'calypso/lib/track-element-size'; import { buildChartData } from 'calypso/my-sites/stats/stats-chart-tabs/utility'; import StatsEmptyState from 'calypso/my-sites/stats/stats-empty-state'; import StatsModulePlaceholder from 'calypso/my-sites/stats/stats-module/placeholder'; import { getChartRangeParams } from 'calypso/my-sites/stats/utils'; import nothing from '../components/nothing'; import useVisitsQuery from '../hooks/use-visits-query'; import { Unit } from '../typings'; import './mini-chart.scss'; interface MiniChartProps { siteId: number; quantity?: number; gmtOffset: number; statsBaseUrl: string; } interface BarData { period: string; value: number; } const MiniChart: FunctionComponent< MiniChartProps > = ( { siteId, gmtOffset, statsBaseUrl, quantity = 7, } ) => { const translate = useTranslate(); const chartViews = { attr: 'views', legendOptions: [ 'visitors' ], label: translate( 'Views', { context: 'noun' } ), }; const chartVisitors = { attr: 'visitors', label: translate( 'Visitors', { context: 'noun' } ), }; const charts = [ chartViews, chartVisitors ]; const queryDate = moment() .utcOffset( Number.isFinite( gmtOffset ) ? gmtOffset : 0 ) .format( 'YYYY-MM-DD' ); const [ period, setPeriod ] = useState< Unit >( 'day' ); const { isLoading, data } = useVisitsQuery( siteId, period, quantity, queryDate ); const barClick = ( bar: { data: BarData } ) => { const { chartStart, chartEnd, chartPeriod } = getChartRangeParams( bar.data.period, period ); window.location.href = `${ statsBaseUrl }/stats/${ chartPeriod }/${ siteId }?chartStart=${ chartStart }&chartEnd=${ chartEnd }`; }; const chartData = buildChartData( chartViews.legendOptions, chartViews.attr, data, period, queryDate ); const chartWrapperRef = useRef< HTMLDivElement >( null ); const lastRect = useRef< NullableDOMRect >( null ); useEffect( () => { if ( ! chartWrapperRef?.current ) { return; } const observer = new ResizeObserver( () => { const rect = chartWrapperRef.current ? chartWrapperRef.current.getBoundingClientRect() : null; if ( ! rectIsEqual( lastRect.current, rect ) && ! rectIsZero( rect ) ) { lastRect.current = rect; // Trigger a resize event to force the chart to redraw. window?.dispatchEvent( new Event( 'resize' ) ); } } ); observer.observe( chartWrapperRef.current ); return () => observer.disconnect(); } ); const isEmptyChart = ! chartData.some( ( bar: BarData ) => bar.value > 0 ); const placeholderChartData = Array.from( { length: 7 }, () => ( { value: Math.random(), } ) ); return (
); }; export default MiniChart;