mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 15:23:38 +01:00
Refactor BarChart component.
This commit is contained in:
parent
4618dc7f15
commit
d936ecc86e
@ -13,6 +13,7 @@ export default function BarChart({
|
|||||||
animationDuration = 300,
|
animationDuration = 300,
|
||||||
className,
|
className,
|
||||||
stacked = false,
|
stacked = false,
|
||||||
|
onCreate = () => {},
|
||||||
onUpdate = () => {},
|
onUpdate = () => {},
|
||||||
}) {
|
}) {
|
||||||
const canvas = useRef();
|
const canvas = useRef();
|
||||||
@ -56,54 +57,58 @@ export default function BarChart({
|
|||||||
};
|
};
|
||||||
|
|
||||||
const createChart = () => {
|
const createChart = () => {
|
||||||
|
const options = {
|
||||||
|
animation: {
|
||||||
|
duration: animationDuration,
|
||||||
|
},
|
||||||
|
tooltips: {
|
||||||
|
enabled: false,
|
||||||
|
custom: renderTooltip,
|
||||||
|
},
|
||||||
|
hover: {
|
||||||
|
animationDuration: 0,
|
||||||
|
},
|
||||||
|
responsiveAnimationDuration: 0,
|
||||||
|
scales: {
|
||||||
|
xAxes: [
|
||||||
|
{
|
||||||
|
type: 'time',
|
||||||
|
distribution: 'series',
|
||||||
|
time: {
|
||||||
|
unit,
|
||||||
|
tooltipFormat: 'ddd MMMM DD YYYY',
|
||||||
|
},
|
||||||
|
ticks: {
|
||||||
|
callback: renderLabel,
|
||||||
|
minRotation: 0,
|
||||||
|
maxRotation: 0,
|
||||||
|
},
|
||||||
|
gridLines: {
|
||||||
|
display: false,
|
||||||
|
},
|
||||||
|
offset: true,
|
||||||
|
stacked: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
yAxes: [
|
||||||
|
{
|
||||||
|
ticks: {
|
||||||
|
beginAtZero: true,
|
||||||
|
},
|
||||||
|
stacked,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
onCreate(options);
|
||||||
|
|
||||||
chart.current = new ChartJS(canvas.current, {
|
chart.current = new ChartJS(canvas.current, {
|
||||||
type: 'bar',
|
type: 'bar',
|
||||||
data: {
|
data: {
|
||||||
datasets,
|
datasets,
|
||||||
},
|
},
|
||||||
options: {
|
options,
|
||||||
animation: {
|
|
||||||
duration: animationDuration,
|
|
||||||
},
|
|
||||||
tooltips: {
|
|
||||||
enabled: false,
|
|
||||||
custom: renderTooltip,
|
|
||||||
},
|
|
||||||
hover: {
|
|
||||||
animationDuration: 0,
|
|
||||||
},
|
|
||||||
responsiveAnimationDuration: 0,
|
|
||||||
scales: {
|
|
||||||
xAxes: [
|
|
||||||
{
|
|
||||||
type: 'time',
|
|
||||||
distribution: 'series',
|
|
||||||
time: {
|
|
||||||
unit,
|
|
||||||
tooltipFormat: 'ddd MMMM DD YYYY',
|
|
||||||
},
|
|
||||||
ticks: {
|
|
||||||
callback: renderLabel,
|
|
||||||
minRotation: 0,
|
|
||||||
maxRotation: 0,
|
|
||||||
},
|
|
||||||
gridLines: {
|
|
||||||
display: false,
|
|
||||||
},
|
|
||||||
offset: true,
|
|
||||||
stacked: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
yAxes: [
|
|
||||||
{
|
|
||||||
ticks: {
|
|
||||||
beginAtZero: true,
|
|
||||||
},
|
|
||||||
stacked,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,21 +1,34 @@
|
|||||||
import React, { useState, useEffect } from 'react';
|
import React, { useState, useEffect, useMemo } from 'react';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import BarChart from './BarChart';
|
import BarChart from './BarChart';
|
||||||
import { get } from 'lib/web';
|
import { get } from 'lib/web';
|
||||||
import { getTimezone, getDateArray } from 'lib/date';
|
import { getTimezone, getDateArray, getDateLength } from 'lib/date';
|
||||||
import styles from './PageviewsChart.module.css';
|
import styles from './PageviewsChart.module.css';
|
||||||
|
|
||||||
const COLORS = [
|
const COLORS = [
|
||||||
'rgba(38, 128, 235, 0.5)',
|
'rgba(38, 128, 235, 0.5)',
|
||||||
'rgba(227, 72, 80, 0.5)',
|
'rgba(146, 86, 217, 0.5)',
|
||||||
'rgba(45, 157, 120, 0.5)',
|
'rgba(45, 157, 120, 0.5)',
|
||||||
|
'rgba(216, 55, 144, 0.5)',
|
||||||
|
'rgba(227, 72, 80, 0.5)',
|
||||||
'rgba(103, 103, 236, 0.5)',
|
'rgba(103, 103, 236, 0.5)',
|
||||||
'rgba(68, 181, 86, 0.5)',
|
'rgba(68, 181, 86, 0.5)',
|
||||||
'rgba(146, 86, 217, 0.5)',
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export default function EventsChart({ websiteId, startDate, endDate, unit, className }) {
|
export default function EventsChart({ websiteId, startDate, endDate, unit, className }) {
|
||||||
const [data, setData] = useState();
|
const [data, setData] = useState();
|
||||||
|
const datasets = useMemo(() => {
|
||||||
|
if (!data) return [];
|
||||||
|
|
||||||
|
return Object.keys(data).map((key, index) => ({
|
||||||
|
label: key,
|
||||||
|
data: data[key],
|
||||||
|
lineTension: 0,
|
||||||
|
backgroundColor: COLORS[index],
|
||||||
|
borderColor: COLORS[index],
|
||||||
|
borderWidth: 1,
|
||||||
|
}));
|
||||||
|
}, [data]);
|
||||||
|
|
||||||
async function loadData() {
|
async function loadData() {
|
||||||
const data = await get(`/api/website/${websiteId}/events`, {
|
const data = await get(`/api/website/${websiteId}/events`, {
|
||||||
@ -43,13 +56,7 @@ export default function EventsChart({ websiteId, startDate, endDate, unit, class
|
|||||||
}
|
}
|
||||||
|
|
||||||
function handleUpdate(chart) {
|
function handleUpdate(chart) {
|
||||||
const {
|
chart.data.datasets = datasets;
|
||||||
data: { datasets },
|
|
||||||
options,
|
|
||||||
} = chart;
|
|
||||||
|
|
||||||
datasets[0].data = data.uniques;
|
|
||||||
datasets[1].data = data.pageviews;
|
|
||||||
|
|
||||||
chart.update();
|
chart.update();
|
||||||
}
|
}
|
||||||
@ -66,16 +73,9 @@ export default function EventsChart({ websiteId, startDate, endDate, unit, class
|
|||||||
<div className={classNames(styles.chart, className)}>
|
<div className={classNames(styles.chart, className)}>
|
||||||
<BarChart
|
<BarChart
|
||||||
chartId={websiteId}
|
chartId={websiteId}
|
||||||
datasets={Object.keys(data).map((key, index) => ({
|
datasets={datasets}
|
||||||
label: key,
|
|
||||||
data: data[key],
|
|
||||||
lineTension: 0,
|
|
||||||
backgroundColor: COLORS[index],
|
|
||||||
borderColor: COLORS[index],
|
|
||||||
borderWidth: 1,
|
|
||||||
}))}
|
|
||||||
unit={unit}
|
unit={unit}
|
||||||
records={7}
|
records={getDateLength(startDate, endDate, unit)}
|
||||||
onUpdate={handleUpdate}
|
onUpdate={handleUpdate}
|
||||||
stacked
|
stacked
|
||||||
/>
|
/>
|
||||||
|
@ -113,3 +113,8 @@ export function getDateArray(data, startDate, endDate, unit) {
|
|||||||
|
|
||||||
return arr;
|
return arr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getDateLength(startDate, endDate, unit) {
|
||||||
|
const [diff] = dateFuncs[unit];
|
||||||
|
return diff(endDate, startDate) + 1;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user