-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathUsageStatisticsViewModel.cs
More file actions
444 lines (361 loc) · 14 KB
/
Copy pathUsageStatisticsViewModel.cs
File metadata and controls
444 lines (361 loc) · 14 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
using System.Reactive;
using System.Reactive.Linq;
using System.Threading.Tasks;
using Avalonia.Controls;
using Avalonia.Media;
using ByteSync.Assets.Resources;
using ByteSync.Common.Business.Misc;
using ByteSync.Common.Helpers;
using ByteSync.Interfaces;
using ByteSync.Interfaces.Controls.Themes;
using ByteSync.Interfaces.Services.Localizations;
using ByteSync.Services.Converters;
using ByteSync.ViewModels.Misc;
using LiveChartsCore;
using LiveChartsCore.Kernel;
using LiveChartsCore.SkiaSharpView;
using LiveChartsCore.SkiaSharpView.Drawing;
using LiveChartsCore.SkiaSharpView.Drawing.Geometries;
using LiveChartsCore.SkiaSharpView.Painting;
using LiveChartsCore.SkiaSharpView.Painting.Effects;
using ReactiveUI;
using ReactiveUI.Fody.Helpers;
using SkiaSharp;
namespace ByteSync.ViewModels.AccountDetails;
public class UsageStatisticsViewModel : FlyoutElementViewModel
{
private readonly IStatisticsService _statisticsService;
private readonly ILocalizationService _localizationService;
private readonly IThemeService _themeService;
private const double PROGRESSIVE_MODE_POWER_BASE = 0.2d;
private readonly IApplicationSettingsRepository _applicationSettingsRepository;
public UsageStatisticsViewModel()
{
}
public UsageStatisticsViewModel(IStatisticsService storageDataRetriever,
ILocalizationService localizationService, IThemeService themeManager,
IApplicationSettingsRepository applicationSettingsManager)
{
_statisticsService = storageDataRetriever;
_localizationService = localizationService;
_themeService = themeManager;
_applicationSettingsRepository = applicationSettingsManager;
UseProgressiveScale = true;
Year = DateTime.Now.Year;
Series = [];
XAxes = [];
YAxes = [];
Sections = [];
#if DEBUG
if (Design.IsDesignMode)
{
return;
}
#endif
var canGoPreviousPeriod = this.WhenAnyValue(x => x.Year, (year) => year > DateTime.Now.Year - 5);
PreviousPeriodCommand = ReactiveCommand.CreateFromTask(PreviousPeriod, canGoPreviousPeriod);
var canGoNextPeriod = this.WhenAnyValue(x => x.Year, (year) => year < DateTime.Now.Year);
NextPeriodCommand = ReactiveCommand.CreateFromTask(NextPeriod, canGoNextPeriod);
this.WhenActivated(HandleActivation);
}
private UsageStatisticsData UsageStatisticsData { get; set; } = null!;
[Reactive]
public bool UseProgressiveScale { get; set; }
[Reactive]
public ISeries[]? Series { get; set; }
[Reactive]
public Axis[]? XAxes { get; set; }
[Reactive]
public Axis[]? YAxes { get; set; }
[Reactive]
public RectangularSection[]? Sections { get; set; }
[Reactive]
public int Year { get; set; }
[Reactive]
public int PreviousYear { get; set; }
[Reactive]
public bool ShowPreviousPeriod { get; set; }
[Reactive]
public bool ShowLimit { get; set; }
public ReactiveCommand<Unit, Unit> PreviousPeriodCommand { get; set; }
public ReactiveCommand<Unit, Unit> NextPeriodCommand { get; set; }
private async void HandleActivation(Action<IDisposable> disposables)
{
this.WhenAnyValue(x => x.ShowPreviousPeriod)
.Skip(1)
.Subscribe(_ => ShowData());
this.WhenAnyValue(x => x.UseProgressiveScale)
.Skip(1)
.Subscribe(_ => ShowData());
this.WhenAnyValue(x => x.ShowLimit)
.Skip(1)
.Subscribe(_ =>
{
ShowData();
});
this.WhenAnyValue(x => x.Year)
.Subscribe(_ => PreviousYear = Year - 1);
// commented on PR#23
// await LoadAndShowData(true);
}
private async Task LoadAndShowData(bool isInitial)
{
var usageStatisticsRequest = new UsageStatisticsRequest { Year = Year };
UsageStatisticsData = await _statisticsService.GetUsageStatistics(usageStatisticsRequest);
if (isInitial)
{
ResetUseProgressiveMode();
}
ShowData();
}
private void ResetUseProgressiveMode()
{
// On détermine ici si on applique le mode progressif du graphique qui permet de lisser les écarts
var maxValue = GetMaxValue();
var allSubPeriods = new List<UsageStatisticsSubPeriod>();
allSubPeriods.AddAll(UsageStatisticsData.CurrentPeriodData.UploadedVolumePerSubPeriod);
allSubPeriods.AddAll(UsageStatisticsData.PreviousPeriodData.UploadedVolumePerSubPeriod);
UseProgressiveScale = allSubPeriods.Any(v => v.UploadedVolume != 0 && maxValue / v.UploadedVolume > 10000);
}
private void ShowData()
{
ResetXAxes();
ResetYAxes();
ResetSeries();
ResetSections();
}
private void ResetXAxes()
{
var axis = new Axis();
axis.Labels = new List<string>();
// On affiche les initiales de tous les mois, de janvier à décembre
for (var i = 0; i < 12; i++)
{
axis.Labels.Add(_localizationService.GetMonthName(i)[..1].ToUpper());
}
axis.MinStep = 1;
axis.ForceStepToMin = true;
axis.MinLimit = -1;
axis.MaxLimit = 12;
IBrush? mainForeColorBrush = _themeService.GetBrush("SystemControlForegroundBaseHighBrush");
if (mainForeColorBrush is SolidColorBrush solidColorBrush)
{
axis.LabelsPaint = new SolidColorPaint(new SKColor(solidColorBrush.Color.R, solidColorBrush.Color.G, solidColorBrush.Color.B));
}
axis.TextSize = 14;
XAxes = [axis];
}
private void ResetYAxes()
{
var yAxis = new Axis
{
MinLimit = 0,
// Gestion des labels en fonction du mode
Labeler = (value) =>
{
if (value == 0)
{
return "";
}
var applicablePrintableValue = UseProgressiveScale ? Math.Pow(value, 1 / PROGRESSIVE_MODE_POWER_BASE) : value;
return (string)new FormatKbSizeConverter().Convert(applicablePrintableValue, typeof(string),
new FormatKbSizeConverterParameters { Format = "N0", ConvertUntilTeraBytes = true }, null);
}
};
// maxValue : valeur max à afficher (entre la limite et la valeur de période max)
// applicableMaxValue : maxValue, éventuellement ramenée à la valeur proressive
// minStep : on démarre d'une valeur différente en ProgressiveMode et en AbsoluteMode
var maxValue = GetMaxValue();
double applicableMaxValue;
long minStep;
int minStepWhileMultiplicator;
if (UseProgressiveScale)
{
applicableMaxValue = Math.Pow(maxValue, PROGRESSIVE_MODE_POWER_BASE);
minStep = 2;
minStepWhileMultiplicator = 8;
}
else
{
applicableMaxValue = maxValue;
minStep = 2;
minStepWhileMultiplicator = 4;
}
// Algorithme qui permet de déterminer la valeur finale de minStep, et la limite haute du graphique
while (minStep * minStepWhileMultiplicator < applicableMaxValue)
{
minStep *= 2;
}
yAxis.MinStep = minStep;
yAxis.ForceStepToMin = true;
yAxis.MaxLimit = applicableMaxValue * 1.1;
IBrush? mainForeColorBrush = _themeService.GetBrush("SystemControlForegroundBaseHighBrush");
if (mainForeColorBrush is SolidColorBrush solidColorBrush)
{
yAxis.LabelsPaint = new SolidColorPaint(new SKColor(solidColorBrush.Color.R, solidColorBrush.Color.G, solidColorBrush.Color.B));
}
yAxis.TextSize = 14;
YAxes =
[
yAxis
];
}
private void ResetSeries()
{
var series = new List<ISeries>();
var currentPeriodSerie = BuildCurrentPeriodSerie();
series.Add(currentPeriodSerie);
if (ShowPreviousPeriod)
{
var previousPeriodSerie = BuildPreviousPeriodSerie();
series.Add(previousPeriodSerie);
}
Series = series.ToArray();
}
private void ResetSections()
{
if (ShowLimit)
{
double limit = _applicationSettingsRepository.ProductSerialDescription!.AllowedCloudSynchronizationVolumeInBytes;
if (UseProgressiveScale)
{
limit = Math.Pow(limit, PROGRESSIVE_MODE_POWER_BASE);
}
var limitSection = new RectangularSection
{
Yi = limit,
Yj = limit,
Stroke = new SolidColorPaint
{
Color = SKColors.Orange,
StrokeThickness = 3,
PathEffect = new DashEffect([6, 6])
},
};
Sections = [limitSection];
}
else
{
Sections = [];
}
}
private ColumnSeries<LogarithmicPoint> BuildCurrentPeriodSerie()
{
var chartsMainBarColor = (_themeService.GetBrush("ChartsMainBarColor") as SolidColorBrush)!.Color;
// Color chartsAlternateBarColor;
// _themeService.GetResource("ChartsAlternateBarColor", out chartsAlternateBarColor);
var mainColumnSerie = new ColumnSeries<LogarithmicPoint>
{
Values = BuildValues(UsageStatisticsData.CurrentPeriodData),
YToolTipLabelFormatter = BuildToolTipLabel,
Fill = new SolidColorPaint(new SKColor(chartsMainBarColor.R, chartsMainBarColor.G, chartsMainBarColor.B)),
Mapping = BuildMapping
};
// 28/01/2023 : Pour l'instant, on annule ce comportement qui n'est pas forcément utile car le mois en cours est toujours le dernier
// if (Year == DateTime.Now.Year)
// {
// // https://github.com/beto-rodriguez/LiveCharts2/issues/229
//
// // On peint le mois actif en couleur secondaire pour le faire ressortir
// var currentMonthColor = new SKColor(chartsAlternateBarColor.R, chartsAlternateBarColor.G, chartsAlternateBarColor.B);
// mainColumnSerie.WithConditionalPaint(new SolidColorPaint(currentMonthColor))
// .When(point => point.Context.Entity.EntityIndex == DateTime.Now.Month - 1);
// }
return mainColumnSerie;
}
private ISeries BuildPreviousPeriodSerie()
{
Color chartsMainLineColor = (_themeService.GetBrush("ChartsMainLineColor") as SolidColorBrush)!.Color;
var lineSeries = new LineSeries<LogarithmicPoint>
{
Values = BuildValues(UsageStatisticsData.PreviousPeriodData),
YToolTipLabelFormatter = BuildToolTipLabel,
Stroke = new SolidColorPaint(new SKColor(chartsMainLineColor.R, chartsMainLineColor.G, chartsMainLineColor.B), 3),
GeometrySize = 0,
GeometryStroke = null,
GeometryFill = null,
Fill = null,
LineSmoothness = 0,
Mapping = BuildMapping
};
return lineSeries;
}
private List<LogarithmicPoint> BuildValues(UsageStatisticsPeriod usageStatisticsPeriod)
{
var values = new List<LogarithmicPoint>();
var cpt = 0;
foreach (var subPeriod in usageStatisticsPeriod.UploadedVolumePerSubPeriod)
{
values.Add(new LogarithmicPoint(cpt, subPeriod.UploadedVolume));
cpt += 1;
}
return values;
}
private string BuildToolTipLabel(ChartPoint<LogarithmicPoint, CircleGeometry, LabelGeometry> chartPoint)
{
return DoBuildToolTipLabel(chartPoint.Index, chartPoint.Model!, PreviousYear);
}
private string BuildToolTipLabel(ChartPoint<LogarithmicPoint, RoundedRectangleGeometry, LabelGeometry> chartPoint)
{
return DoBuildToolTipLabel(chartPoint.Index, chartPoint.Model!, Year);
}
private string DoBuildToolTipLabel(int pointIndex, LogarithmicPoint model, int year)
{
var monthName = _localizationService.GetMonthName(pointIndex);
var result = $"{string.Format(Resources.General_MonthYearColon, monthName, year)} ";
if (model.Volume > 1024)
{
result += new FormatKbSizeConverter().Convert(model.Volume, typeof(string),
new FormatKbSizeConverterParameters { Format = "N2", ConvertUntilTeraBytes = true }, null) +
" (" +
$"{model.Volume:N0} {_localizationService[nameof(Resources.Misc_SizeUnit_Byte)]}" +
")";
}
else
{
result += $"{model.Volume:N0} {_localizationService[nameof(Resources.Misc_SizeUnit_Byte)]}";
}
return result;
}
private Coordinate BuildMapping(LogarithmicPoint logPoint, int index)
{
var volume = UseProgressiveScale
? Math.Pow(logPoint.Volume, PROGRESSIVE_MODE_POWER_BASE)
: logPoint.Volume;
return new Coordinate(logPoint.X, volume);
}
private class LogarithmicPoint
{
public LogarithmicPoint(int x, long volume)
{
X = x;
Volume = volume;
}
public int X { get; }
public long Volume { get; }
}
private async Task PreviousPeriod()
{
Year = Year - 1;
await LoadAndShowData(false);
}
private async Task NextPeriod()
{
Year = Year + 1;
await LoadAndShowData(false);
}
private long GetMaxValue()
{
long maxValue;
if (ShowLimit)
{
maxValue = Math.Max(UsageStatisticsData.GetMaxTransferedVolume(),
_applicationSettingsRepository.ProductSerialDescription!.AllowedCloudSynchronizationVolumeInBytes);
}
else
{
maxValue = UsageStatisticsData.GetMaxTransferedVolume();
}
return maxValue;
}
}