Skip to content

Commit

Permalink
Fix chartjs warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <[email protected]>
  • Loading branch information
tsmock committed Oct 16, 2023
1 parent de8bfc3 commit d1b9b1d
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 20 deletions.
19 changes: 16 additions & 3 deletions frontend/src/components/projectDetail/timeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,29 @@ import {
PointElement,
LinearScale,
CategoryScale,
TimeScale,
TimeSeriesScale,
Legend,
Tooltip,
} from 'chart.js';
import { Line } from 'react-chartjs-2';
import 'chartjs-adapter-date-fns';
import { useIntl } from 'react-intl';

import messages from './messages';
import { formatTimelineData, formatTimelineTooltip } from '../../utils/formatChartJSData';
import { CHART_COLOURS } from '../../config';
import { useTimeDiff } from '../../hooks/UseTimeDiff';
import { xAxis } from '../teamsAndOrgs/tasksStatsChart';

ChartJS.register(LineElement, PointElement, LinearScale, CategoryScale, TimeScale, Legend, Tooltip);
ChartJS.register(
LineElement,
PointElement,
LinearScale,
CategoryScale,
TimeSeriesScale,
Legend,
Tooltip,
);

export default function ProjectTimeline({ tasksByDay }: Object) {
const intl = useIntl();
Expand All @@ -41,7 +51,10 @@ export default function ProjectTimeline({ tasksByDay }: Object) {
callbacks: { label: (context) => formatTimelineTooltip(context, true) },
},
},
scales: { xAxes: [{ type: 'time', time: { unit: unit } }] },
scales: {
y: { ticks: { beginAtZero: true } },
x: { ...xAxis(unit) },
},
}}
/>
);
Expand Down
12 changes: 11 additions & 1 deletion frontend/src/components/projectStats/contributorsStats.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
import React from 'react';
import { Chart as ChartJS, ArcElement, BarElement } from 'chart.js';
import { Doughnut, Bar } from 'react-chartjs-2';
import {
Chart as ChartJS,
ArcElement,
BarElement,
CategoryScale,
Legend,
LinearScale,
Title,
Tooltip,
} from 'chart.js';
import { FormattedMessage, useIntl } from 'react-intl';

import messages from './messages';
Expand All @@ -13,6 +22,7 @@ import { StatsCardContent } from '../statsCard';
ChartJS.register(ArcElement, BarElement);

export default function ContributorsStats({ contributors }) {
ChartJS.register(BarElement, CategoryScale, Legend, LinearScale, Title, Tooltip, ArcElement);
const intl = useIntl();
const stats = useContributorStats(contributors);
const getUserLevelLabel = (level) => intl.formatMessage(userMessages[`mapperLevel${level}`]);
Expand Down
50 changes: 34 additions & 16 deletions frontend/src/components/teamsAndOrgs/tasksStatsChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
BarElement,
Tooltip,
Legend,
TimeScale,
TimeSeriesScale,
} from 'chart.js';
import { Bar } from 'react-chartjs-2';
import 'chartjs-adapter-date-fns';
Expand All @@ -16,8 +16,31 @@ import messages from '../projectDetail/messages';
import { CHART_COLOURS } from '../../config';
import { useTimeDiff } from '../../hooks/UseTimeDiff';
import { formatTasksStatsData, formatTimelineTooltip } from '../../utils/formatChartJSData';
import { enUS } from 'date-fns/locale';
import { formatISO } from 'date-fns';

ChartJS.register(CategoryScale, LinearScale, BarElement, Tooltip, Legend, TimeScale);
ChartJS.register(CategoryScale, LinearScale, BarElement, Tooltip, Legend, TimeSeriesScale);

/**
* x axis configuration common between this and {@link ../projectDetail/timeline.js}
* @param unit The base unit for the axis
* @typedef {import('chart.js').ScaleOptionsByType} ScaleOptionsByType
* @returns {ScaleOptionsByType} The options to use for x axis configuration
*/
export function xAxis(unit) {
return {
type: 'timeseries',
adapters: { date: { locale: enUS } },
time: {
unit: unit,
tooltipFormat: enUS.formatLong.date,
},
ticks: {
source: 'labels',
callback: (value, index, ticks) => formatISO(ticks[index].value, { representation: 'date' }),
},
};
}

const TasksStatsChart = ({ stats }) => {
const intl = useIntl();
Expand All @@ -39,21 +62,16 @@ const TasksStatsChart = ({ stats }) => {
},
},
scales: {
yAxes: [
{
stacked: true,
ticks: {
beginAtZero: true,
},
y: {
stacked: true,
ticks: {
beginAtZero: true,
},
],
xAxes: [
{
stacked: true,
type: 'time',
time: { unit: unit },
},
],
},
x: {
stacked: true,
...xAxis(unit),
},
},
};
return (
Expand Down

0 comments on commit d1b9b1d

Please sign in to comment.