1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
export const mockInstanceCounts = [
{ key: 'projects', value: 10, label: 'Projects' },
{ key: 'groups', value: 20, label: 'Group' },
];
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
];
export const roundedSortedCountsMonthlyChartData2 = [
['2020-06-01', 21], // average of 2020-06-x items
['2020-07-01', 10], // average of 2020-07-x items
];
export const mockPageInfo = {
hasNextPage: false,
hasPreviousPage: false,
startCursor: null,
endCursor: null,
};
|