Skip to content
This repository was archived by the owner on Mar 30, 2024. It is now read-only.

Commit 2faefe7

Browse files
committed
Fix #8 and #9
1 parent cada92e commit 2faefe7

File tree

8 files changed

+45
-8
lines changed

8 files changed

+45
-8
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ and no data from itself. (So create a new device for a full export!)
7373
It is possible to create custom graph-views for the stats view.
7474

7575
### Create your own stats function
76-
> See an example e.g. [PieCategory](https://github.com/KIMB-technologies/TaskTimeTerminateServer/blob/master/php/load/graphs/Pie.js)
76+
> See an example e.g. [Pie](https://github.com/KIMB-technologies/TaskTimeTerminateServer/blob/master/php/load/graphs/Pie.js)
7777
7878
When the user selects a graph and clicks on *Display Graph* the corresponding JS-file is loaded and the the function `createGraph(combiData, plainData, singleDayData, canvas)`
79-
of this file will be executed. In a file like [PieCategory](https://github.com/KIMB-technologies/TaskTimeTerminateServer/blob/master/php/load/graphs/Pie.js)
79+
of this file will be executed. In a file like [Pie](https://github.com/KIMB-technologies/TaskTimeTerminateServer/blob/master/php/load/graphs/Pie.js)
8080
such function like `createGraph(combiData, plainData, singleDayData, canvas)` can be defined.
8181

8282
Each function gets four parameters, three `*Data` and one `canvas`.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
latest
2-
0.4.4
2+
0.4.5
33
0.4
44
0

php/core/templates/stats_en.html

+8-1
Original file line numberDiff line numberDiff line change
@@ -198,13 +198,20 @@ <h3>Graph</h3>
198198
if(chart !== null){
199199
chart.destroy();
200200
}
201-
Chart.defaults.global.legend.labels.fontColor = getComputedStyle(document.documentElement).getPropertyValue('--main-text-color');
201+
// text color according to theme
202+
Chart.defaults.global.defaultFontColor = getComputedStyle(document.documentElement).getPropertyValue('--main-text-color');
203+
202204
chart = createGraph(
203205
combiData,
204206
plainData,
205207
singleDayData,
206208
document.getElementById('maingraph').getContext('2d')
207209
);
210+
211+
// grid color according to theme
212+
Object.keys(chart.scales).forEach(k => {
213+
chart.scales[k].options.gridLines.color = getComputedStyle(document.documentElement).getPropertyValue('--chart-grid-color');
214+
})
208215
}
209216
});
210217
});

php/load/graphs/BarDays.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,15 @@ function createGraph(combiData, plainData, singleDayData, canvas){
6161
});
6262

6363
// convert to hours
64+
stacksMap = {}
6465
Object.keys(plotdata).forEach(function(label) {
6566
Object.keys(plotdata[label]).forEach(function(category) {
6667
plotdata[label][category] = Math.round((plotdata[label][category] / 3600) * 100) / 100;
68+
69+
if(!stacksMap.hasOwnProperty(category)){
70+
let pos = category.indexOf('::');
71+
stacksMap[category] = ( pos === -1 ? '' : category.substr(0, pos) );
72+
}
6773
});
6874
});
6975

@@ -89,7 +95,8 @@ function createGraph(combiData, plainData, singleDayData, canvas){
8995
chartData.datasets.push({
9096
label : category,
9197
backgroundColor: baseColors[datasetIndex % baseColors.length],
92-
data: []
98+
data: [],
99+
stack: stacksMap[category]
93100
});
94101
datasetIndex++;
95102
}

php/load/graphs/BarHours.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,15 @@ function createGraph(combiData, plainData, singleDayData, canvas){
4646
}
4747
});
4848

49+
stacksMap = {}
4950
Object.keys(plotdata).forEach(function(category) {
5051
for(var h = 0; h < 24; h++){
5152
plotdata[category][h] = Math.round((plotdata[category][h]/3600) * 100) / 100;
5253
}
54+
if(!stacksMap.hasOwnProperty(category)){
55+
let pos = category.indexOf('::');
56+
stacksMap[category] = ( pos === -1 ? '' : category.substr(0, pos) );
57+
}
5358
});
5459

5560
/**
@@ -70,7 +75,8 @@ function createGraph(combiData, plainData, singleDayData, canvas){
7075
chartData.datasets.push({
7176
label : category,
7277
backgroundColor: baseColors[index % baseColors.length],
73-
data: plotdata[category]
78+
data: plotdata[category],
79+
stack : stacksMap[category]
7480
});
7581
})
7682

php/load/graphs/BarWeekdays.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,15 @@ function createGraph(combiData, plainData, singleDayData, canvas){
3434
plotdata[v[catsColumn]][day] += v.duration;
3535
});
3636

37+
stacksMap = {}
3738
Object.keys(plotdata).forEach(function(category) {
3839
for(var d = 0; d < 7; d++){
3940
plotdata[category][d] = Math.round((plotdata[category][d]/3600) * 100) / 100;
4041
}
42+
if(!stacksMap.hasOwnProperty(category)){
43+
let pos = category.indexOf('::');
44+
stacksMap[category] = ( pos === -1 ? '' : category.substr(0, pos) );
45+
}
4146
});
4247

4348
/**
@@ -56,7 +61,8 @@ function createGraph(combiData, plainData, singleDayData, canvas){
5661
chartData.datasets.push({
5762
label : category,
5863
backgroundColor: baseColors[index % baseColors.length],
59-
data: plotdata[category]
64+
data: plotdata[category],
65+
stack : stacksMap[category]
6066
});
6167
})
6268

php/load/graphs/BarWeeks.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,15 @@ function createGraph(combiData, plainData, singleDayData, canvas){
8484
});
8585

8686
// convert to hours
87+
stacksMap = {}
8788
Object.keys(plotdata).forEach(function(label) {
8889
Object.keys(plotdata[label]).forEach(function(category) {
8990
plotdata[label][category] = Math.round((plotdata[label][category] / 3600) * 100) / 100;
91+
92+
if(!stacksMap.hasOwnProperty(category)){
93+
let pos = category.indexOf('::');
94+
stacksMap[category] = ( pos === -1 ? '' : category.substr(0, pos) );
95+
}
9096
});
9197
});
9298

@@ -112,7 +118,8 @@ function createGraph(combiData, plainData, singleDayData, canvas){
112118
chartData.datasets.push({
113119
label : category,
114120
backgroundColor: baseColors[datasetIndex % baseColors.length],
115-
data: []
121+
data: [],
122+
stack : stacksMap[category]
116123
});
117124
datasetIndex++;
118125
}

php/load/main.css

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
--main-bg-color: white;
55
--main-link-color: blue;
66
--main-border-color: black;
7+
8+
--chart-grid-color: #ddd;
79

810
--body-bg: #777;
911
}
@@ -15,6 +17,8 @@
1517
--main-link-color: lightblue;
1618
--main-border-color: #aaa;
1719

20+
--chart-grid-color: #444;
21+
1822
--body-bg: black;
1923
}
2024

0 commit comments

Comments
 (0)