2021-01-14 21:48:05 +00:00
|
|
|
import 'dart:collection';
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
2021-01-18 10:21:55 +00:00
|
|
|
import 'package:selfprivacy/config/brand_colors.dart';
|
2021-01-14 21:48:05 +00:00
|
|
|
import 'package:selfprivacy/config/get_it_config.dart';
|
2021-01-18 10:21:55 +00:00
|
|
|
import 'package:selfprivacy/logic/models/message.dart';
|
2021-01-14 21:48:05 +00:00
|
|
|
import 'package:selfprivacy/ui/components/brand_divider/brand_divider.dart';
|
|
|
|
import 'package:selfprivacy/ui/components/brand_header/brand_header.dart';
|
|
|
|
|
|
|
|
class Console extends StatefulWidget {
|
2022-06-05 22:40:34 +00:00
|
|
|
const Console({final super.key});
|
2021-01-14 21:48:05 +00:00
|
|
|
|
|
|
|
@override
|
2022-05-25 12:21:56 +00:00
|
|
|
State<Console> createState() => _ConsoleState();
|
2021-01-14 21:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class _ConsoleState extends State<Console> {
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
getIt.get<ConsoleModel>().addListener(update);
|
|
|
|
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
getIt<ConsoleModel>().removeListener(update);
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void update() => setState(() => {});
|
|
|
|
|
|
|
|
@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(
|
|
|
|
appBar: PreferredSize(
|
|
|
|
preferredSize: const Size.fromHeight(53),
|
|
|
|
child: Column(
|
|
|
|
children: const [
|
|
|
|
BrandHeader(title: 'Console', hasBackButton: true),
|
|
|
|
BrandDivider(),
|
|
|
|
],
|
|
|
|
),
|
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
|
|
|
|
.map((final message) {
|
|
|
|
final bool isError =
|
|
|
|
message.type == MessageType.warning;
|
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 4),
|
|
|
|
child: RichText(
|
|
|
|
text: TextSpan(
|
|
|
|
style: DefaultTextStyle.of(context).style,
|
|
|
|
children: <TextSpan>[
|
|
|
|
TextSpan(
|
|
|
|
text:
|
|
|
|
'${message.timeString}${isError ? '(Error)' : ''}: \n',
|
|
|
|
style: TextStyle(
|
2021-01-18 10:21:55 +00:00
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color:
|
2022-06-05 22:40:34 +00:00
|
|
|
isError ? BrandColors.red1 : null,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
TextSpan(text: message.text),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
})
|
|
|
|
.toList()
|
|
|
|
.reversed,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: const [
|
|
|
|
Text('Waiting for initialisation'),
|
|
|
|
SizedBox(
|
|
|
|
height: 16,
|
|
|
|
),
|
|
|
|
CircularProgressIndicator(),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
2021-01-14 21:48:05 +00:00
|
|
|
),
|
2022-06-05 22:40:34 +00:00
|
|
|
);
|
2021-01-14 21:48:05 +00:00
|
|
|
}
|