2023-03-22 11:38:18 +00:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
2021-01-14 21:48:05 +00:00
|
|
|
import 'dart:collection';
|
|
|
|
|
2022-10-03 23:32:35 +00:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2021-01-14 21:48:05 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:selfprivacy/config/get_it_config.dart';
|
2021-01-18 10:21:55 +00:00
|
|
|
import 'package:selfprivacy/logic/models/message.dart';
|
2023-04-04 16:06:14 +00:00
|
|
|
import 'package:selfprivacy/ui/components/list_tiles/log_list_tile.dart';
|
2021-01-14 21:48:05 +00:00
|
|
|
|
2023-03-22 11:38:18 +00:00
|
|
|
@RoutePage()
|
2023-02-23 14:49:14 +00:00
|
|
|
class ConsolePage extends StatefulWidget {
|
|
|
|
const ConsolePage({super.key});
|
2021-01-14 21:48:05 +00:00
|
|
|
|
|
|
|
@override
|
2023-02-23 14:49:14 +00:00
|
|
|
State<ConsolePage> createState() => _ConsolePageState();
|
2021-01-14 21:48:05 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 14:49:14 +00:00
|
|
|
class _ConsolePageState extends State<ConsolePage> {
|
2021-01-14 21:48:05 +00:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
getIt.get<ConsoleModel>().addListener(update);
|
|
|
|
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
getIt<ConsoleModel>().removeListener(update);
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2023-04-04 16:06:14 +00:00
|
|
|
bool paused = false;
|
|
|
|
|
|
|
|
void update() {
|
|
|
|
if (!paused) {
|
|
|
|
setState(() => {});
|
|
|
|
}
|
|
|
|
}
|
2021-01-14 21:48:05 +00:00
|
|
|
|
|
|
|
@override
|
2022-06-05 19:36:32 +00:00
|
|
|
Widget build(final BuildContext context) => SafeArea(
|
2022-06-05 22:40:34 +00:00
|
|
|
child: Scaffold(
|
2023-04-04 16:06:14 +00:00
|
|
|
appBar: AppBar(
|
|
|
|
title: Text('console_page.title'.tr()),
|
|
|
|
leading: IconButton(
|
|
|
|
icon: const Icon(Icons.arrow_back),
|
|
|
|
onPressed: () => Navigator.of(context).pop(),
|
2022-06-05 22:40:34 +00:00
|
|
|
),
|
2023-04-04 16:06:14 +00:00
|
|
|
actions: [
|
|
|
|
IconButton(
|
2023-04-05 10:33:53 +00:00
|
|
|
icon: Icon(
|
2023-04-12 05:42:33 +00:00
|
|
|
paused ? Icons.play_arrow_outlined : Icons.pause_outlined,
|
|
|
|
),
|
2023-04-04 16:06:14 +00:00
|
|
|
onPressed: () => setState(() => paused = !paused),
|
|
|
|
),
|
|
|
|
],
|
2021-01-14 21:48:05 +00:00
|
|
|
),
|
2022-06-05 22:40:34 +00:00
|
|
|
body: FutureBuilder(
|
|
|
|
future: getIt.allReady(),
|
|
|
|
builder: (
|
|
|
|
final BuildContext context,
|
|
|
|
final AsyncSnapshot<void> snapshot,
|
|
|
|
) {
|
|
|
|
if (snapshot.hasData) {
|
|
|
|
final List<Message> messages =
|
|
|
|
getIt.get<ConsoleModel>().messages;
|
2021-01-14 21:48:05 +00:00
|
|
|
|
2022-06-05 22:40:34 +00:00
|
|
|
return ListView(
|
|
|
|
reverse: true,
|
|
|
|
shrinkWrap: true,
|
|
|
|
children: [
|
|
|
|
const SizedBox(height: 20),
|
|
|
|
...UnmodifiableListView(
|
|
|
|
messages
|
2023-04-04 16:06:14 +00:00
|
|
|
.map((final message) => LogListItem(message: message))
|
2022-06-05 22:40:34 +00:00
|
|
|
.toList()
|
|
|
|
.reversed,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
2022-10-03 23:32:35 +00:00
|
|
|
children: [
|
|
|
|
Text('console_page.waiting'.tr()),
|
|
|
|
const SizedBox(
|
2022-06-05 22:40:34 +00:00
|
|
|
height: 16,
|
|
|
|
),
|
2022-10-03 23:32:35 +00:00
|
|
|
const CircularProgressIndicator(),
|
2022-06-05 22:40:34 +00:00
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
2021-01-14 21:48:05 +00:00
|
|
|
),
|
2022-06-05 22:40:34 +00:00
|
|
|
);
|
2021-01-14 21:48:05 +00:00
|
|
|
}
|