2021-02-18 10:09:43 -05:00
|
|
|
export const mockUsageCounts = [
|
2020-09-18 14:10:26 -04:00
|
|
|
{ key: 'projects', value: 10, label: 'Projects' },
|
|
|
|
{ key: 'groups', value: 20, label: 'Group' },
|
|
|
|
];
|
2020-10-13 08:08:41 -04:00
|
|
|
|
|
|
|
export const mockCountsData1 = [
|
|
|
|
{ recordedAt: '2020-07-23', count: 52 },
|
|
|
|
{ recordedAt: '2020-07-22', count: 40 },
|
|
|
|
{ recordedAt: '2020-07-21', count: 31 },
|
|
|
|
{ recordedAt: '2020-06-14', count: 23 },
|
|
|
|
{ recordedAt: '2020-06-12', count: 20 },
|
|
|
|
];
|
|
|
|
|
|
|
|
export const countsMonthlyChartData1 = [
|
|
|
|
['2020-07-01', 41], // average of 2020-07-x items
|
|
|
|
['2020-06-01', 21.5], // average of 2020-06-x items
|
|
|
|
];
|
|
|
|
|
|
|
|
export const mockCountsData2 = [
|
|
|
|
{ recordedAt: '2020-07-28', count: 10 },
|
|
|
|
{ recordedAt: '2020-07-27', count: 9 },
|
|
|
|
{ recordedAt: '2020-06-26', count: 14 },
|
|
|
|
{ recordedAt: '2020-06-25', count: 23 },
|
|
|
|
{ recordedAt: '2020-06-24', count: 25 },
|
|
|
|
];
|
|
|
|
|
|
|
|
export const countsMonthlyChartData2 = [
|
|
|
|
['2020-07-01', 9.5], // average of 2020-07-x items
|
|
|
|
['2020-06-01', 20.666666666666668], // average of 2020-06-x items
|
|
|
|
];
|
2020-10-20 05:08:43 -04:00
|
|
|
|
|
|
|
export const roundedSortedCountsMonthlyChartData2 = [
|
|
|
|
['2020-06-01', 21], // average of 2020-06-x items
|
|
|
|
['2020-07-01', 10], // average of 2020-07-x items
|
|
|
|
];
|