fluffychat/lib/pages/chat/events/state_message.dart

68 lines
2.3 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2020-01-01 18:10:13 +00:00
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/matrix_locals.dart';
2021-11-09 20:32:16 +00:00
import '../../../config/app_config.dart';
2021-02-07 07:59:58 +00:00
2020-01-01 18:10:13 +00:00
class StateMessage extends StatelessWidget {
final Event event;
final void Function(String) unfold;
2022-01-29 11:35:03 +00:00
const StateMessage(this.event, {required this.unfold, Key? key})
2021-10-14 16:09:30 +00:00
: super(key: key);
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
2022-01-29 11:35:03 +00:00
if (event.unsigned!['im.fluffychat.collapsed_state_event'] == true) {
return Container();
}
final int counter =
2022-01-29 11:35:03 +00:00
event.unsigned!['im.fluffychat.collapsed_state_event_count'] ?? 0;
return Padding(
padding: const EdgeInsets.symmetric(
horizontal: 8.0,
vertical: 4.0,
),
child: Center(
child: InkWell(
onTap: counter != 0 ? () => unfold(event.eventId) : null,
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
child: Container(
padding: const EdgeInsets.all(8),
decoration: BoxDecoration(
2021-11-14 21:15:37 +00:00
color: Theme.of(context).brightness == Brightness.light
? Colors.white
: Colors.grey.shade900,
2021-11-13 12:06:36 +00:00
borderRadius: BorderRadius.circular(AppConfig.borderRadius / 2),
),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
2022-01-29 11:35:03 +00:00
event.getLocalizedBody(MatrixLocals(L10n.of(context)!)),
textAlign: TextAlign.center,
style: TextStyle(
2021-11-13 18:22:11 +00:00
fontSize: 14 * AppConfig.fontSizeFactor,
2022-01-29 11:35:03 +00:00
color: Theme.of(context).textTheme.bodyText2!.color,
decoration:
event.redacted ? TextDecoration.lineThrough : null,
),
),
if (counter != 0)
Text(
2022-01-29 11:35:03 +00:00
L10n.of(context)!.moreEvents(counter),
2021-11-13 18:22:11 +00:00
style: TextStyle(
fontWeight: FontWeight.bold,
2021-11-13 18:22:11 +00:00
fontSize: 14 * AppConfig.fontSizeFactor,
),
),
],
2020-09-21 17:21:24 +00:00
),
2020-01-19 14:07:42 +00:00
),
2020-01-03 10:57:00 +00:00
),
2020-01-01 18:10:13 +00:00
),
);
}
}