mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-23 17:26:35 +00:00
Refactor network chart
This commit is contained in:
parent
11e58981b5
commit
5ca58a0cd3
|
@ -100,7 +100,11 @@
|
||||||
"chart": {
|
"chart": {
|
||||||
"month": "Month",
|
"month": "Month",
|
||||||
"day": "Day",
|
"day": "Day",
|
||||||
"hour": "Hour"
|
"hour": "Hour",
|
||||||
|
"cpu_title": "CPU Usage",
|
||||||
|
"network_title": "Network Usage",
|
||||||
|
"in": "In",
|
||||||
|
"out": "Out"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"allow_autoupgrade": "Allow auto-upgrade",
|
"allow_autoupgrade": "Allow auto-upgrade",
|
||||||
|
|
|
@ -100,7 +100,11 @@
|
||||||
"chart": {
|
"chart": {
|
||||||
"month": "Месяц",
|
"month": "Месяц",
|
||||||
"day": "День",
|
"day": "День",
|
||||||
"hour": "Час"
|
"hour": "Час",
|
||||||
|
"cpu_title": "Использование процессора",
|
||||||
|
"network_title": "Использование сети",
|
||||||
|
"in": "Получено",
|
||||||
|
"out": "Отправлено"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"allow_autoupgrade": "Разрешить авто-обноления",
|
"allow_autoupgrade": "Разрешить авто-обноления",
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||||
import 'package:selfprivacy/ui/components/error/error.dart';
|
|
||||||
import 'package:selfprivacy/utils/route_transitions/basic.dart';
|
|
||||||
|
|
||||||
import 'package:selfprivacy/config/get_it_config.dart';
|
import 'package:selfprivacy/config/get_it_config.dart';
|
||||||
|
|
||||||
|
@ -14,15 +11,9 @@ class SimpleBlocObserver extends BlocObserver {
|
||||||
final Object error,
|
final Object error,
|
||||||
final StackTrace stackTrace,
|
final StackTrace stackTrace,
|
||||||
) {
|
) {
|
||||||
final NavigatorState navigator = getIt.get<NavigationService>().navigator!;
|
|
||||||
|
|
||||||
navigator.push(
|
getIt<NavigationService>().showSnackBar(
|
||||||
materialRoute(
|
'Bloc error: ${error.toString()}',
|
||||||
BrandError(
|
|
||||||
error: error,
|
|
||||||
stackTrace: stackTrace,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
super.onError(bloc, error, stackTrace);
|
super.onError(bloc, error, stackTrace);
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ class _Chart extends StatelessWidget {
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
'CPU Usage',
|
'providers.server.chart.cpu_title'.tr(),
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
),
|
),
|
||||||
|
@ -36,19 +36,40 @@ class _Chart extends StatelessWidget {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 1),
|
const SizedBox(height: 8),
|
||||||
Row(
|
FilledCard(
|
||||||
mainAxisAlignment: MainAxisAlignment.end,
|
clipped: false,
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
BrandText.small('Public Network interface bytes per sec'),
|
Row(
|
||||||
const SizedBox(width: 10),
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
const Legend(color: Colors.red, text: 'IN'),
|
children: [
|
||||||
|
Text(
|
||||||
|
'providers.server.chart.network_title'.tr(),
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
color:
|
||||||
|
Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const Spacer(),
|
||||||
|
Legend(
|
||||||
|
color: Theme.of(context).colorScheme.primary,
|
||||||
|
text: 'providers.server.chart.in'.tr()),
|
||||||
const SizedBox(width: 5),
|
const SizedBox(width: 5),
|
||||||
const Legend(color: Colors.green, text: 'OUT'),
|
Legend(
|
||||||
|
color: Theme.of(context).colorScheme.tertiary,
|
||||||
|
text: 'providers.server.chart.out'.tr()),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 20),
|
const SizedBox(height: 20),
|
||||||
getBandwidthChart(state),
|
getBandwidthChart(state),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
throw 'wrong state';
|
throw 'wrong state';
|
||||||
|
@ -81,6 +102,7 @@ class _Chart extends StatelessWidget {
|
||||||
'providers.server.chart.hour'.tr()
|
'providers.server.chart.hour'.tr()
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
...charts,
|
...charts,
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
@ -129,7 +151,10 @@ class Legend extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
_ColoredBox(color: color),
|
_ColoredBox(color: color),
|
||||||
const SizedBox(width: 5),
|
const SizedBox(width: 5),
|
||||||
BrandText.small(text),
|
Text(
|
||||||
|
text,
|
||||||
|
style: Theme.of(context).textTheme.labelSmall,
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -146,9 +171,11 @@ class _ColoredBox extends StatelessWidget {
|
||||||
width: 10,
|
width: 10,
|
||||||
height: 10,
|
height: 10,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: color.withOpacity(0.3),
|
borderRadius: BorderRadius.circular(5),
|
||||||
|
color: color.withOpacity(0.4),
|
||||||
border: Border.all(
|
border: Border.all(
|
||||||
color: color,
|
color: color,
|
||||||
|
width: 1.5,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import 'dart:math';
|
import 'dart:math';
|
||||||
|
|
||||||
|
import 'package:easy_localization/easy_localization.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:fl_chart/fl_chart.dart';
|
import 'package:fl_chart/fl_chart.dart';
|
||||||
import 'package:selfprivacy/config/brand_colors.dart';
|
|
||||||
import 'package:selfprivacy/config/text_themes.dart';
|
|
||||||
import 'package:selfprivacy/logic/common_enum/common_enum.dart';
|
import 'package:selfprivacy/logic/common_enum/common_enum.dart';
|
||||||
|
import 'package:selfprivacy/logic/models/disk_size.dart';
|
||||||
import 'package:selfprivacy/logic/models/hetzner_metrics.dart';
|
import 'package:selfprivacy/logic/models/hetzner_metrics.dart';
|
||||||
import 'package:selfprivacy/ui/pages/server_details/charts/bottom_title.dart';
|
import 'package:selfprivacy/ui/pages/server_details/charts/bottom_title.dart';
|
||||||
|
|
||||||
|
@ -33,30 +33,81 @@ class NetworkChart extends StatelessWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(final BuildContext context) => SizedBox(
|
Widget build(final BuildContext context) => LineChart(
|
||||||
height: 150,
|
|
||||||
width: MediaQuery.of(context).size.width,
|
|
||||||
child: LineChart(
|
|
||||||
LineChartData(
|
LineChartData(
|
||||||
lineTouchData: LineTouchData(enabled: false),
|
lineTouchData: LineTouchData(
|
||||||
|
enabled: true,
|
||||||
|
touchTooltipData: LineTouchTooltipData(
|
||||||
|
tooltipBgColor: Theme.of(context).colorScheme.surface,
|
||||||
|
tooltipPadding: const EdgeInsets.all(8),
|
||||||
|
getTooltipItems: (final List<LineBarSpot> touchedBarSpots) {
|
||||||
|
final List<LineTooltipItem> res = [];
|
||||||
|
|
||||||
|
bool timeShown = false;
|
||||||
|
|
||||||
|
for (final spot in touchedBarSpots) {
|
||||||
|
final value = spot.y;
|
||||||
|
final date = listData[0][spot.x.toInt()].time;
|
||||||
|
|
||||||
|
res.add(
|
||||||
|
LineTooltipItem(
|
||||||
|
'${timeShown ? '' : DateFormat('HH:mm dd.MM.yyyy').format(date)} ${spot.barIndex == 0 ? 'providers.server.chart.in'.tr() : 'providers.server.chart.out'.tr()} ${DiskSize(byte: value.toInt()).toString()}',
|
||||||
|
TextStyle(
|
||||||
|
color: Theme.of(context).colorScheme.onSurface,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
timeShown = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
lineBarsData: [
|
lineBarsData: [
|
||||||
|
// IN
|
||||||
LineChartBarData(
|
LineChartBarData(
|
||||||
spots: getSpots(listData[0]),
|
spots: getSpots(listData[0]),
|
||||||
isCurved: true,
|
isCurved: false,
|
||||||
barWidth: 1,
|
barWidth: 2,
|
||||||
color: Colors.red,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
dotData: FlDotData(
|
dotData: FlDotData(
|
||||||
show: false,
|
show: false,
|
||||||
),
|
),
|
||||||
|
belowBarData: BarAreaData(
|
||||||
|
show: true,
|
||||||
|
gradient: LinearGradient(
|
||||||
|
colors: [
|
||||||
|
Theme.of(context).colorScheme.primary.withOpacity(0.5),
|
||||||
|
Theme.of(context).colorScheme.primary.withOpacity(0.0),
|
||||||
|
],
|
||||||
|
begin: Alignment.bottomCenter,
|
||||||
|
end: Alignment.topCenter,
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
// OUT
|
||||||
LineChartBarData(
|
LineChartBarData(
|
||||||
spots: getSpots(listData[1]),
|
spots: getSpots(listData[1]),
|
||||||
isCurved: true,
|
isCurved: false,
|
||||||
barWidth: 1,
|
barWidth: 2,
|
||||||
color: Colors.green,
|
color: Theme.of(context).colorScheme.tertiary,
|
||||||
dotData: FlDotData(
|
dotData: FlDotData(
|
||||||
show: false,
|
show: false,
|
||||||
),
|
),
|
||||||
|
belowBarData: BarAreaData(
|
||||||
|
show: true,
|
||||||
|
gradient: LinearGradient(
|
||||||
|
colors: [
|
||||||
|
Theme.of(context).colorScheme.tertiary.withOpacity(0.5),
|
||||||
|
Theme.of(context).colorScheme.tertiary.withOpacity(0.0),
|
||||||
|
],
|
||||||
|
begin: Alignment.bottomCenter,
|
||||||
|
end: Alignment.topCenter,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
minY: 0,
|
minY: 0,
|
||||||
|
@ -70,40 +121,34 @@ class NetworkChart extends StatelessWidget {
|
||||||
topTitles: AxisTitles(sideTitles: SideTitles(showTitles: false)),
|
topTitles: AxisTitles(sideTitles: SideTitles(showTitles: false)),
|
||||||
bottomTitles: AxisTitles(
|
bottomTitles: AxisTitles(
|
||||||
sideTitles: SideTitles(
|
sideTitles: SideTitles(
|
||||||
interval: 20,
|
interval: 40,
|
||||||
reservedSize: 50,
|
reservedSize: 30,
|
||||||
getTitlesWidget: (final value, final titleMeta) => Padding(
|
getTitlesWidget: (final value, final titleMeta) => Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: RotatedBox(
|
|
||||||
quarterTurns: 1,
|
|
||||||
child: Text(
|
child: Text(
|
||||||
bottomTitle(
|
bottomTitle(
|
||||||
value.toInt(),
|
value.toInt(),
|
||||||
listData[0],
|
listData[0],
|
||||||
period,
|
period,
|
||||||
),
|
),
|
||||||
style: const TextStyle(
|
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
||||||
fontSize: 10,
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
color: Colors.purple,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
showTitles: true,
|
showTitles: true,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
leftTitles: AxisTitles(
|
leftTitles: AxisTitles(sideTitles: SideTitles(showTitles: false)),
|
||||||
|
rightTitles: AxisTitles(
|
||||||
sideTitles: SideTitles(
|
sideTitles: SideTitles(
|
||||||
reservedSize: 50,
|
reservedSize: 50,
|
||||||
getTitlesWidget: (final value, final titleMeta) => Padding(
|
getTitlesWidget: (final value, final titleMeta) => Padding(
|
||||||
padding: const EdgeInsets.only(right: 5),
|
padding: const EdgeInsets.only(left: 5),
|
||||||
child: Text(
|
child: Text(
|
||||||
value.toInt().toString(),
|
DiskSize(byte: value.toInt()).toString(),
|
||||||
style: progressTextStyleLight.copyWith(
|
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
||||||
color: Theme.of(context).brightness == Brightness.dark
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
? BrandColors.gray4
|
|
||||||
: null,
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -112,12 +157,50 @@ class NetworkChart extends StatelessWidget {
|
||||||
...listData[1].map((final e) => e.value)
|
...listData[1].map((final e) => e.value)
|
||||||
].reduce(max) *
|
].reduce(max) *
|
||||||
2 /
|
2 /
|
||||||
10,
|
6.5,
|
||||||
showTitles: false,
|
showTitles: true,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
gridData: FlGridData(show: true),
|
gridData: FlGridData(
|
||||||
|
show: true,
|
||||||
|
drawVerticalLine: true,
|
||||||
|
verticalInterval: 40,
|
||||||
|
horizontalInterval: [
|
||||||
|
...listData[0].map((final e) => e.value),
|
||||||
|
...listData[1].map((final e) => e.value)
|
||||||
|
].reduce(max) *
|
||||||
|
2 /
|
||||||
|
6.5,
|
||||||
|
getDrawingHorizontalLine: (final value) => FlLine(
|
||||||
|
color: Theme.of(context).colorScheme.outline.withOpacity(0.3),
|
||||||
|
strokeWidth: 1,
|
||||||
|
),
|
||||||
|
getDrawingVerticalLine: (final value) => FlLine(
|
||||||
|
color: Theme.of(context).colorScheme.outline.withOpacity(0.3),
|
||||||
|
strokeWidth: 1,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
borderData: FlBorderData(
|
||||||
|
show: true,
|
||||||
|
border: Border(
|
||||||
|
bottom: BorderSide(
|
||||||
|
color: Theme.of(context).colorScheme.outline.withOpacity(0.3),
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
left: BorderSide(
|
||||||
|
color: Theme.of(context).colorScheme.outline.withOpacity(0.3),
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
right: BorderSide(
|
||||||
|
color: Theme.of(context).colorScheme.outline.withOpacity(0.3),
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
top: BorderSide(
|
||||||
|
color: Theme.of(context).colorScheme.outline.withOpacity(0.3),
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue