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

86 lines
2.6 KiB
Dart
Raw Normal View History

2020-02-11 12:49:39 +01:00
import 'package:flutter/material.dart';
2021-10-26 18:50:34 +02:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 18:50:34 +02:00
import 'package:matrix/matrix.dart';
2020-02-11 12:49:39 +01:00
2022-12-30 17:54:01 +01:00
import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart';
2021-11-09 21:32:16 +01:00
import '../../../config/app_config.dart';
2020-05-09 13:36:41 +02:00
2020-02-11 12:49:39 +01:00
class ReplyContent extends StatelessWidget {
final Event replyEvent;
2022-05-27 15:13:24 +02:00
final bool ownMessage;
2022-01-29 12:35:03 +01:00
final Timeline? timeline;
2020-02-11 12:49:39 +01:00
2022-01-29 12:35:03 +01:00
const ReplyContent(
this.replyEvent, {
2022-05-27 15:13:24 +02:00
this.ownMessage = false,
2022-01-29 12:35:03 +01:00
Key? key,
this.timeline,
}) : super(key: key);
2020-02-11 12:49:39 +01:00
@override
Widget build(BuildContext context) {
2020-05-09 13:36:41 +02:00
Widget replyBody;
2022-01-29 12:35:03 +01:00
final timeline = this.timeline;
final displayEvent =
timeline != null ? replyEvent.getDisplayEvent(timeline) : replyEvent;
2021-11-13 13:06:36 +01:00
final fontSize = AppConfig.messageFontSize * AppConfig.fontSizeFactor;
replyBody = Text(
displayEvent.calcLocalizedBodyFallback(
MatrixLocals(L10n.of(context)!),
withSenderNamePrefix: false,
hideReply: true,
),
overflow: TextOverflow.ellipsis,
maxLines: 1,
style: TextStyle(
color: ownMessage
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context).colorScheme.onBackground,
fontSize: fontSize,
),
);
2020-02-11 12:49:39 +01:00
return Row(
2020-05-14 07:43:21 +02:00
mainAxisSize: MainAxisSize.min,
2020-02-11 12:49:39 +01:00
children: <Widget>[
Container(
width: 3,
height: fontSize * 2 + 6,
2022-05-27 15:13:24 +02:00
color: ownMessage
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context).colorScheme.onBackground,
2020-02-11 12:49:39 +01:00
),
2021-10-14 18:09:30 +02:00
const SizedBox(width: 6),
2020-05-14 07:43:21 +02:00
Flexible(
2020-02-11 12:49:39 +01:00
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
FutureBuilder<User?>(
future: displayEvent.fetchSenderUser(),
builder: (context, snapshot) {
return Text(
'${snapshot.data?.calcDisplayname() ?? displayEvent.senderFromMemoryOrFallback.calcDisplayname()}:',
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: FontWeight.bold,
color: ownMessage
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context).colorScheme.onBackground,
fontSize: fontSize,
),
);
},
),
2020-05-09 13:36:41 +02:00
replyBody,
2020-02-11 12:49:39 +01:00
],
),
),
],
);
}
}