2020-01-01 19:10:13 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/matrix_locals.dart';
|
2021-11-09 21:32:16 +01: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;
|
2022-01-29 12:35:03 +01:00
|
|
|
const StateMessage(this.event, {required this.unfold, Key? key})
|
2021-10-14 18:09:30 +02:00
|
|
|
: super(key: key);
|
2020-01-01 19:10:13 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-01-29 12:35:03 +01:00
|
|
|
if (event.unsigned!['im.fluffychat.collapsed_state_event'] == true) {
|
2021-02-25 09:11:17 +01:00
|
|
|
return Container();
|
|
|
|
}
|
|
|
|
final int counter =
|
2022-01-29 12:35:03 +01:00
|
|
|
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-11-14 22:15:37 +01:00
|
|
|
color: Theme.of(context).brightness == Brightness.light
|
|
|
|
? Colors.white
|
|
|
|
: Colors.grey.shade900,
|
2021-11-13 13:06:36 +01:00
|
|
|
borderRadius: BorderRadius.circular(AppConfig.borderRadius / 2),
|
2021-02-25 09:11:17 +01:00
|
|
|
),
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
2022-05-30 13:44:05 +02:00
|
|
|
FutureBuilder<String>(
|
|
|
|
future: event
|
|
|
|
.calcLocalizedBody(MatrixLocals(L10n.of(context)!)),
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
return Text(
|
|
|
|
snapshot.data ??
|
|
|
|
event.calcLocalizedBodyFallback(
|
|
|
|
MatrixLocals(L10n.of(context)!)),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14 * AppConfig.fontSizeFactor,
|
|
|
|
color: Theme.of(context).textTheme.bodyText2!.color,
|
|
|
|
decoration: event.redacted
|
|
|
|
? TextDecoration.lineThrough
|
|
|
|
: null,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}),
|
2021-02-25 09:11:17 +01:00
|
|
|
if (counter != 0)
|
|
|
|
Text(
|
2022-01-29 12:35:03 +01:00
|
|
|
L10n.of(context)!.moreEvents(counter),
|
2021-11-13 19:22:11 +01:00
|
|
|
style: TextStyle(
|
2021-02-25 09:11:17 +01:00
|
|
|
fontWeight: FontWeight.bold,
|
2021-11-13 19:22:11 +01:00
|
|
|
fontSize: 14 * AppConfig.fontSizeFactor,
|
2021-02-25 09:11:17 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
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
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|