import React from 'react'; import { withRouter } from 'react-router-dom' import Chart from 'chart.js' import numberFormatter from '../number-formatter' import { isToday, shiftMonths, formatMonth } from '../date' import * as api from '../api' function dataSets(graphData, ctx) { var gradient = ctx.createLinearGradient(0, 0, 0, 300); gradient.addColorStop(0, 'rgba(101,116,205, 0.2)'); gradient.addColorStop(1, 'rgba(101,116,205, 0)'); if (graphData.present_index) { var dashedPart = graphData.plot.slice(graphData.present_index - 1); var dashedPlot = (new Array(graphData.plot.length - dashedPart.length)).concat(dashedPart) for(var i = graphData.present_index; i < graphData.plot.length; i++) { graphData.plot[i] = undefined } return [{ label: 'Visitors', data: graphData.plot, borderWidth: 3, borderColor: 'rgba(101,116,205)', pointBackgroundColor: 'rgba(101,116,205)', backgroundColor: gradient, }, { label: 'Visitors', data: dashedPlot, borderWidth: 3, borderDash: [5, 10], borderColor: 'rgba(101,116,205)', pointBackgroundColor: 'rgba(101,116,205)', backgroundColor: gradient, }] } else { return [{ label: 'Visitors', data: graphData.plot, borderWidth: 3, borderColor: 'rgba(101,116,205)', pointBackgroundColor: 'rgba(101,116,205)', backgroundColor: gradient, }] } } const MONTHS = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ] function dateFormatter(graphData) { return function(isoDate) { const date = new Date(isoDate) if (graphData.interval === 'month') { return MONTHS[date.getUTCMonth()]; } else if (graphData.interval === 'date') { return date.getUTCDate() + ' ' + MONTHS[date.getUTCMonth()]; } else if (graphData.interval === 'hour') { var hours = date.getHours(); // Not sure why getUTCHours doesn't work here var ampm = hours >= 12 ? 'pm' : 'am'; hours = hours % 12; hours = hours ? hours : 12; // the hour '0' should be '12' return hours + ampm; } } } class LineGraph extends React.Component { componentDidMount() { const {graphData} = this.props const ctx = document.getElementById("main-graph-canvas").getContext('2d'); this.chart = new Chart(ctx, { type: 'line', data: { labels: graphData.labels, datasets: dataSets(graphData, ctx) }, options: { animation: false, legend: {display: false}, responsive: true, elements: {line: {tension: 0.1}, point: {radius: 0}}, onClick: this.onClick.bind(this), tooltips: { mode: 'index', intersect: false, xPadding: 10, yPadding: 10, titleFontSize: 16, footerFontSize: 14, footerFontColor: '#e6e8ff', backgroundColor: 'rgba(25, 30, 56)', callbacks: { title: function(dataPoints) { var data = dataPoints[0] if (graphData.interval === 'month') { return data.yLabel.toLocaleString() + ' visitors in ' + data.xLabel } else if (graphData.interval === 'date') { return data.yLabel.toLocaleString() + ' visitors on ' + data.xLabel } else if (graphData.interval === 'hour') { return data.yLabel.toLocaleString() + ' visitors at ' + data.xLabel } }, label: function() {}, afterBody: function(dataPoints) { if (graphData.interval === 'month') { return 'Click to view month' } else if (graphData.interval === 'date') { return 'Click to view day' } } } }, scales: { yAxes: [{ ticks: { callback: numberFormatter, beginAtZero: true, autoSkip: true, maxTicksLimit: 8, }, gridLines: { zeroLineColor: 'transparent', drawBorder: false, } }], xAxes: [{ gridLines: { display: false, }, ticks: { autoSkip: true, maxTicksLimit: 8, callback: dateFormatter(graphData), } }] } } }); } onClick(e) { const element = this.chart.getElementsAtEventForMode(e, 'index', {intersect: false})[0] const date = element._chart.config.data.labels[element._index] if (this.props.graphData.interval === 'month') { this.props.history.push('?period=month&date=' + date) } else if (this.props.graphData.interval === 'date') { this.props.history.push('?period=day&date=' + date) } } comparisonTimeframe() { const {query, site} = this.props if (query.period === 'day') { if (isToday(site, query.date)) { return 'yesterday' } else { return 'previous day' } } else if (query.period === 'month') { return formatMonth(shiftMonths(query.date, -1)) } else if (query.period === '7d') { return 'last week' } else if (query.period === '30d') { return 'last month' } else if (query.period === '3mo') { return 'previous 3 months' } else if (query.period === '6mo') { return 'previous 6 months' } } renderComparison(comparison) { const formattedComparison = numberFormatter(Math.abs(comparison)) if (comparison > 0) { return {formattedComparison}% from {this.comparisonTimeframe()} } else if (comparison < 0) { return {formattedComparison}% from {this.comparisonTimeframe()} } else if (comparison === 0) { return 〰 same as {this.comparisonTimeframe()} } } render() { const {graphData} = this.props const extraClass = graphData.interval === 'hour' ? '' : 'cursor-pointer' return (
UNIQUE VISITORS
{numberFormatter(graphData.unique_visitors)}
{this.renderComparison(graphData.change_visitors)}
TOTAL PAGEVIEWS
{numberFormatter(graphData.pageviews)}
{this.renderComparison(graphData.change_pageviews)}
) } } LineGraph = withRouter(LineGraph) export default class VisitorGraph extends React.Component { constructor(props) { super(props) this.state = {loading: true} } componentDidMount() { this.fetchGraphData() } componentDidUpdate(prevProps) { if (this.props.query !== prevProps.query) { this.setState({loading: true, graphData: null}) this.fetchGraphData() } } fetchGraphData() { api.get(`/api/stats/${this.props.site.domain}/main-graph`, this.props.query) .then((res) => { this.setState({loading: false, graphData: res}) return res }) } renderInner() { if (this.state.loading) { return (
) } else if (this.state.graphData) { return } } render() { return (
{ this.renderInner() }
) } }