2021-06-18 10:29:48 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2021-05-22 09:24:39 +02:00
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/matrix_locals.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2021-05-22 08:53:52 +02:00
|
|
|
import '../../config/app_config.dart';
|
2021-02-07 08:59:58 +01:00
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
class StateMessage extends StatelessWidget {
|
|
|
|
final Event event;
|
2021-02-25 09:11:17 +01:00
|
|
|
final void Function(String) unfold;
|
|
|
|
const StateMessage(this.event, {@required this.unfold});
|
2020-01-01 19:10:13 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2021-02-25 09:11:17 +01:00
|
|
|
if (event.unsigned['im.fluffychat.collapsed_state_event'] == true) {
|
|
|
|
return Container();
|
|
|
|
}
|
|
|
|
final int counter =
|
|
|
|
event.unsigned['im.fluffychat.collapsed_state_event_count'] ?? 0;
|
2021-05-16 11:06:46 +02:00
|
|
|
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),
|
2021-02-25 09:11:17 +01:00
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(8),
|
|
|
|
decoration: BoxDecoration(
|
2021-04-25 15:09:47 +02:00
|
|
|
border: Border.all(
|
|
|
|
color: Theme.of(context).dividerColor,
|
|
|
|
),
|
|
|
|
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
2021-02-25 09:11:17 +01:00
|
|
|
),
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
event.getLocalizedBody(MatrixLocals(L10n.of(context))),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: Theme.of(context).textTheme.bodyText1.fontSize *
|
|
|
|
AppConfig.fontSizeFactor,
|
|
|
|
color: Theme.of(context).textTheme.bodyText2.color,
|
|
|
|
decoration:
|
|
|
|
event.redacted ? TextDecoration.lineThrough : null,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
if (counter != 0)
|
|
|
|
Text(
|
|
|
|
counter == 1
|
|
|
|
? L10n.of(context).oneMoreEvent
|
|
|
|
: L10n.of(context).xMoreEvents(counter.toString()),
|
|
|
|
style: TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2020-09-21 19:21:24 +02:00
|
|
|
),
|
2020-01-19 15:07:42 +01:00
|
|
|
),
|
2020-01-03 11:57:00 +01:00
|
|
|
),
|
2020-01-01 19:10:13 +01:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|