2024-08-08 08:42:32 +02:00
|
|
|
import 'package:alert_banner/exports.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/services.dart';
|
2024-08-22 15:46:16 +02:00
|
|
|
import 'package:json_string/json_string.dart';
|
|
|
|
import 'package:oc_front/core/sections/header/header.dart';
|
2024-08-08 08:42:32 +02:00
|
|
|
import 'package:oc_front/models/logs.dart';
|
|
|
|
import 'package:oc_front/widgets/dialog/alert.dart';
|
|
|
|
|
|
|
|
class LogsWidget extends StatefulWidget {
|
|
|
|
final List<Log> items;
|
2024-08-22 15:46:16 +02:00
|
|
|
String? level;
|
|
|
|
String search = "";
|
|
|
|
LogsWidget ({ Key? key, this.search = "", required this.items, this.level }): super(key: key);
|
2024-08-08 08:42:32 +02:00
|
|
|
@override LogsWidgetState createState() => LogsWidgetState();
|
|
|
|
}
|
|
|
|
class LogsWidgetState extends State<LogsWidget> {
|
|
|
|
@override Widget build(BuildContext context) {
|
2024-08-22 15:46:16 +02:00
|
|
|
List<LogWidget> itemRows = widget.items.where((element) => (element.message?.toLowerCase().contains(widget.search.toLowerCase()) ?? true)
|
|
|
|
&& (widget.level?.contains(element.level ?? "") ?? true) ).map((e) => LogWidget(item: e)).toList();
|
|
|
|
return Stack( children: [
|
|
|
|
SingleChildScrollView( child: itemRows.isEmpty ?
|
|
|
|
Container( height: MediaQuery.of(context).size.height - 100 - HeaderConstants.height,
|
|
|
|
child: const Center( child: Text("no log registered", style: TextStyle(color: Colors.grey, fontSize: 25 ),)))
|
|
|
|
: Column( children: [...itemRows, Container(height: 50,) ] ) ),
|
|
|
|
]);
|
2024-08-08 08:42:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class LogWidget extends StatefulWidget {
|
|
|
|
final Log item;
|
|
|
|
bool expanded = false;
|
|
|
|
LogWidget ({ Key? key, required this.item }): super(key: key);
|
|
|
|
@override LogWidgetState createState() => LogWidgetState();
|
|
|
|
}
|
|
|
|
class LogWidgetState extends State<LogWidget> {
|
|
|
|
@override Widget build(BuildContext context) {
|
2024-08-22 15:46:16 +02:00
|
|
|
Map<String, dynamic> map = {};
|
|
|
|
try { map = JsonString(widget.item.rawMessage?.replaceAll("\\", "") ?? "").decodedValue as Map<String, dynamic>;
|
|
|
|
} catch (e) { /* */}
|
|
|
|
return Container(
|
|
|
|
decoration: const BoxDecoration(
|
|
|
|
border: Border(bottom: BorderSide(color: Colors.white)),
|
|
|
|
),
|
|
|
|
padding: const EdgeInsets.only(top: 10, left: 30, right: 30, bottom: 10),
|
|
|
|
child: Wrap( children: [
|
2024-08-08 08:42:32 +02:00
|
|
|
Row( mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Container( width: 10, height: 15, color: widget.item.level?.toLowerCase() == "info" ? Colors.green :
|
|
|
|
( widget.item.level?.toLowerCase() == "error" ? Colors.red : (
|
|
|
|
widget.item.level?.toLowerCase() == "warning" ? Colors.orange : Colors.blue))),
|
2024-08-22 15:46:16 +02:00
|
|
|
InkWell( mouseCursor: map.isEmpty ? MouseCursor.defer : SystemMouseCursors.click, onTap: () {
|
|
|
|
if (map.isNotEmpty ) {
|
2024-08-08 08:42:32 +02:00
|
|
|
setState(() {
|
|
|
|
widget.expanded = !widget.expanded;
|
|
|
|
});
|
|
|
|
}
|
2024-08-22 15:46:16 +02:00
|
|
|
}, child: SizedBox( height: 20,
|
2024-08-08 08:42:32 +02:00
|
|
|
child: Padding( padding: EdgeInsets.symmetric(horizontal: widget.expanded ? 0 : 5),
|
|
|
|
child: Icon( widget.expanded ? Icons.keyboard_arrow_down_outlined : Icons.arrow_forward_ios, size: widget.expanded ? 25 : 15,
|
2024-08-22 15:46:16 +02:00
|
|
|
color: map.isEmpty ? Colors.grey : Colors.black, weight: widget.expanded ? 100 : 1000,)))),
|
2024-08-08 08:42:32 +02:00
|
|
|
Padding( padding: const EdgeInsets.only(right: 10),
|
|
|
|
child: Text("${widget.item.timestamp?.toString()}",
|
|
|
|
style: const TextStyle(fontSize: 13, color: Colors.black, fontWeight: FontWeight.w500))),
|
|
|
|
Tooltip( message : "copy to clipboard", child: InkWell( child: const Icon(Icons.copy, size: 15, color: Colors.grey), onTap: () {
|
|
|
|
if (widget.item.message != null) {
|
|
|
|
Clipboard.setData(ClipboardData(text: widget.item.message!));
|
|
|
|
showAlertBanner(context, () {}, const InfoAlertBannerChild(text: "Copy to clipboard"), // <-- Put any widget here you want!
|
|
|
|
alertBannerLocation: AlertBannerLocation.bottom,);
|
|
|
|
}
|
|
|
|
})),
|
|
|
|
]),
|
|
|
|
widget.expanded ? Container(
|
|
|
|
margin: const EdgeInsets.symmetric(vertical: 10),
|
|
|
|
decoration: BoxDecoration( color: Colors.grey,
|
|
|
|
borderRadius: BorderRadius.circular(4)),
|
|
|
|
padding: const EdgeInsets.all(10),
|
2024-08-22 15:46:16 +02:00
|
|
|
child: Column( children: map.keys.map((e) =>
|
2024-08-08 08:42:32 +02:00
|
|
|
Padding( padding: const EdgeInsets.all(2), child: Row( mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
2024-08-22 15:46:16 +02:00
|
|
|
children: [Flexible( child:Text("$e: \"${map[e]}\"",
|
2024-08-08 08:42:32 +02:00
|
|
|
style: const TextStyle(fontSize: 11, color: Colors.white))), ])
|
|
|
|
)).toList()
|
|
|
|
)) : Container(),
|
|
|
|
Row( mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [Flexible( child:Text(widget.item.message ?? "unknown message",
|
|
|
|
style: const TextStyle(fontSize: 14, color: Colors.black))), ])
|
|
|
|
]));
|
|
|
|
}
|
|
|
|
}
|