mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
99 lines
2.9 KiB
Dart
99 lines
2.9 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
|
import 'package:fluffychat/utils/date_time_extension.dart';
|
|
import 'package:fluffychat/widgets/avatar.dart';
|
|
|
|
extension EventInfoDialogExtension on Event {
|
|
void showInfoDialog(BuildContext context) => showModalBottomSheet(
|
|
context: context,
|
|
builder: (context) =>
|
|
EventInfoDialog(l10n: L10n.of(context)!, event: this),
|
|
);
|
|
}
|
|
|
|
class EventInfoDialog extends StatelessWidget {
|
|
final Event event;
|
|
final L10n l10n;
|
|
const EventInfoDialog({
|
|
required this.event,
|
|
required this.l10n,
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
String get prettyJson {
|
|
const JsonDecoder decoder = JsonDecoder();
|
|
const JsonEncoder encoder = JsonEncoder.withIndent(' ');
|
|
final object = decoder.convert(jsonEncode(event.toJson()));
|
|
return encoder.convert(object);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(L10n.of(context)!.messageInfo),
|
|
leading: IconButton(
|
|
icon: const Icon(Icons.arrow_downward_outlined),
|
|
onPressed: Navigator.of(context, rootNavigator: false).pop,
|
|
tooltip: L10n.of(context)!.close,
|
|
),
|
|
),
|
|
body: ListView(
|
|
children: [
|
|
ListTile(
|
|
leading: Avatar(
|
|
mxContent: event.senderFromMemoryOrFallback.avatarUrl,
|
|
name: event.senderFromMemoryOrFallback.calcDisplayname(),
|
|
),
|
|
title: Text(L10n.of(context)!.sender),
|
|
subtitle: Text(
|
|
'${event.senderFromMemoryOrFallback.calcDisplayname()} [${event.senderId}]'),
|
|
),
|
|
ListTile(
|
|
title: Text(L10n.of(context)!.time),
|
|
subtitle: Text(event.originServerTs.localizedTime(context)),
|
|
),
|
|
ListTile(
|
|
title: Text(L10n.of(context)!.messageType),
|
|
subtitle: Text(event.humanreadableType),
|
|
),
|
|
ListTile(title: Text('${L10n.of(context)!.sourceCode}:')),
|
|
Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: Material(
|
|
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
|
color: Theme.of(context).colorScheme.surface,
|
|
child: SingleChildScrollView(
|
|
padding: const EdgeInsets.all(8),
|
|
scrollDirection: Axis.horizontal,
|
|
child: SelectableText(prettyJson),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
extension on Event {
|
|
String get humanreadableType {
|
|
if (type == EventTypes.Message) {
|
|
return messageType.split('m.').last;
|
|
}
|
|
if (type.startsWith('m.room.')) {
|
|
return type.split('m.room.').last;
|
|
}
|
|
if (type.startsWith('m.')) {
|
|
return type.split('m.').last;
|
|
}
|
|
return type;
|
|
}
|
|
}
|