314 lines
11 KiB
Dart
314 lines
11 KiB
Dart
import 'package:collection/collection.dart'
|
|
show IterableExtension, ListEquality;
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:jiffy/jiffy.dart';
|
|
import 'package:stream_chat_flutter/src/stream_svg_icon.dart';
|
|
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
|
|
import 'package:stream_chat_flutter_core/stream_chat_flutter_core.dart';
|
|
|
|
/// 
|
|
/// 
|
|
///
|
|
/// It shows the current [Channel] preview.
|
|
///
|
|
/// The widget uses a [StreamBuilder] to render the channel information
|
|
/// image as soon as it updates.
|
|
///
|
|
/// Usually you don't use this widget as it's the default channel preview
|
|
/// used by [ChannelListView].
|
|
///
|
|
/// The widget renders the ui based on the first ancestor of type
|
|
/// [StreamChatTheme].
|
|
/// Modify it to change the widget appearance.
|
|
class ChannelPreview extends StatelessWidget {
|
|
/// Constructor for creating [ChannelPreview]
|
|
const ChannelPreview({
|
|
required this.channel,
|
|
Key? key,
|
|
this.onTap,
|
|
this.onLongPress,
|
|
this.onImageTap,
|
|
this.title,
|
|
this.subtitle,
|
|
this.leading,
|
|
this.sendingIndicator,
|
|
this.trailing,
|
|
}) : super(key: key);
|
|
|
|
/// Function called when tapping this widget
|
|
final void Function(Channel)? onTap;
|
|
|
|
/// Function called when long pressing this widget
|
|
final void Function(Channel)? onLongPress;
|
|
|
|
/// Channel displayed
|
|
final Channel channel;
|
|
|
|
/// The function called when the image is tapped
|
|
final VoidCallback? onImageTap;
|
|
|
|
/// Widget rendering the title
|
|
final Widget? title;
|
|
|
|
/// Widget rendering the subtitle
|
|
final Widget? subtitle;
|
|
|
|
/// Widget rendering the leading element, by default
|
|
/// it shows the [ChannelImage]
|
|
final Widget? leading;
|
|
|
|
/// Widget rendering the trailing element,
|
|
/// by default it shows the last message date
|
|
final Widget? trailing;
|
|
|
|
/// Widget rendering the sending indicator,
|
|
/// by default it uses the [SendingIndicator] widget
|
|
final Widget? sendingIndicator;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final channelPreviewTheme = StreamChatTheme.of(context).channelPreviewTheme;
|
|
final streamChatState = StreamChat.of(context);
|
|
return BetterStreamBuilder<bool>(
|
|
stream: channel.isMutedStream,
|
|
initialData: channel.isMuted,
|
|
builder: (context, data) => AnimatedOpacity(
|
|
opacity: data ? 0.5 : 1,
|
|
duration: const Duration(milliseconds: 300),
|
|
child: ListTile(
|
|
visualDensity: VisualDensity.compact,
|
|
contentPadding: const EdgeInsets.symmetric(
|
|
horizontal: 8,
|
|
),
|
|
onTap: () {
|
|
if (onTap != null) {
|
|
onTap!(channel);
|
|
}
|
|
},
|
|
onLongPress: () {
|
|
if (onLongPress != null) {
|
|
onLongPress!(channel);
|
|
}
|
|
},
|
|
leading: leading ??
|
|
ChannelImage(
|
|
onTap: onImageTap,
|
|
),
|
|
title: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: <Widget>[
|
|
Flexible(
|
|
child: title ??
|
|
ChannelName(
|
|
textStyle: channelPreviewTheme.title,
|
|
),
|
|
),
|
|
BetterStreamBuilder<List<Member>?>(
|
|
stream: channel.state?.membersStream,
|
|
initialData: channel.state?.members,
|
|
comparator: const ListEquality().equals,
|
|
builder: (context, members) {
|
|
if (members?.isEmpty == true ||
|
|
members?.any((Member e) =>
|
|
e.user!.id ==
|
|
channel.client.state.user?.id) !=
|
|
true) {
|
|
return const SizedBox();
|
|
}
|
|
return UnreadIndicator(
|
|
cid: channel.cid,
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
subtitle: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: <Widget>[
|
|
Flexible(child: subtitle ?? _buildSubtitle(context)),
|
|
sendingIndicator ??
|
|
Builder(
|
|
builder: (context) {
|
|
final lastMessage =
|
|
channel.state?.messages.lastWhereOrNull(
|
|
(m) => !m.isDeleted && m.shadowed != true,
|
|
);
|
|
if (lastMessage?.user?.id ==
|
|
streamChatState.user?.id) {
|
|
return Padding(
|
|
padding: const EdgeInsets.only(right: 4),
|
|
child: SendingIndicator(
|
|
message: lastMessage!,
|
|
size: channelPreviewTheme.indicatorIconSize,
|
|
isMessageRead: channel.state!.read
|
|
?.where((element) =>
|
|
element.user.id !=
|
|
channel.client.state.user!.id)
|
|
.where((element) => element.lastRead
|
|
.isAfter(lastMessage.createdAt))
|
|
.isNotEmpty ==
|
|
true,
|
|
),
|
|
);
|
|
}
|
|
return const SizedBox();
|
|
},
|
|
),
|
|
trailing ?? _buildDate(context),
|
|
],
|
|
),
|
|
),
|
|
));
|
|
}
|
|
|
|
Widget _buildDate(BuildContext context) => BetterStreamBuilder<DateTime?>(
|
|
stream: channel.lastMessageAtStream,
|
|
initialData: channel.lastMessageAt,
|
|
builder: (context, data) {
|
|
if (data == null) {
|
|
return const Offstage();
|
|
}
|
|
final lastMessageAt = data.toLocal();
|
|
|
|
String stringDate;
|
|
final now = DateTime.now();
|
|
|
|
final startOfDay = DateTime(now.year, now.month, now.day);
|
|
|
|
if (lastMessageAt.millisecondsSinceEpoch >=
|
|
startOfDay.millisecondsSinceEpoch) {
|
|
stringDate = Jiffy(lastMessageAt.toLocal()).jm;
|
|
} else if (lastMessageAt.millisecondsSinceEpoch >=
|
|
startOfDay
|
|
.subtract(const Duration(days: 1))
|
|
.millisecondsSinceEpoch) {
|
|
stringDate = 'Yesterday';
|
|
} else if (startOfDay.difference(lastMessageAt).inDays < 7) {
|
|
stringDate = Jiffy(lastMessageAt.toLocal()).EEEE;
|
|
} else {
|
|
stringDate = Jiffy(lastMessageAt.toLocal()).yMd;
|
|
}
|
|
|
|
return Text(
|
|
stringDate,
|
|
style:
|
|
StreamChatTheme.of(context).channelPreviewTheme.lastMessageAt,
|
|
);
|
|
},
|
|
);
|
|
|
|
Widget _buildSubtitle(BuildContext context) {
|
|
final chatThemeData = StreamChatTheme.of(context);
|
|
if (channel.isMuted) {
|
|
return Row(
|
|
crossAxisAlignment: CrossAxisAlignment.end,
|
|
children: <Widget>[
|
|
StreamSvgIcon.mute(
|
|
size: 16,
|
|
),
|
|
Text(
|
|
' Channel is muted',
|
|
style: chatThemeData.channelPreviewTheme.subtitle,
|
|
),
|
|
],
|
|
);
|
|
}
|
|
return TypingIndicator(
|
|
channel: channel,
|
|
alternativeWidget: _buildLastMessage(context),
|
|
style: chatThemeData.channelPreviewTheme.subtitle,
|
|
);
|
|
}
|
|
|
|
Widget _buildLastMessage(BuildContext context) =>
|
|
BetterStreamBuilder<List<Message>?>(
|
|
stream: channel.state!.messagesStream,
|
|
initialData: channel.state!.messages,
|
|
builder: (context, data) {
|
|
final lastMessage =
|
|
data?.lastWhereOrNull((m) => m.shadowed != true && !m.isDeleted);
|
|
if (lastMessage == null) {
|
|
return const SizedBox();
|
|
}
|
|
|
|
var text = lastMessage.text;
|
|
final parts = <String>[
|
|
...lastMessage.attachments.map((e) {
|
|
if (e.type == 'image') {
|
|
return '📷';
|
|
} else if (e.type == 'video') {
|
|
return '🎬';
|
|
} else if (e.type == 'giphy') {
|
|
return '[GIF]';
|
|
}
|
|
return e == lastMessage.attachments.last
|
|
? (e.title ?? 'File')
|
|
: '${e.title ?? 'File'} , ';
|
|
}),
|
|
lastMessage.text ?? '',
|
|
];
|
|
|
|
text = parts.join(' ');
|
|
|
|
final chatThemeData = StreamChatTheme.of(context);
|
|
return Text.rich(
|
|
_getDisplayText(
|
|
text,
|
|
lastMessage.mentionedUsers,
|
|
lastMessage.attachments,
|
|
chatThemeData.channelPreviewTheme.subtitle?.copyWith(
|
|
color: chatThemeData.channelPreviewTheme.subtitle?.color,
|
|
fontStyle: (lastMessage.isSystem || lastMessage.isDeleted)
|
|
? FontStyle.italic
|
|
: FontStyle.normal),
|
|
chatThemeData.channelPreviewTheme.subtitle?.copyWith(
|
|
color: chatThemeData.channelPreviewTheme.subtitle?.color,
|
|
fontStyle: (lastMessage.isSystem || lastMessage.isDeleted)
|
|
? FontStyle.italic
|
|
: FontStyle.normal,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
);
|
|
},
|
|
);
|
|
|
|
TextSpan _getDisplayText(
|
|
String text,
|
|
List<User> mentions,
|
|
List<Attachment> attachments,
|
|
TextStyle? normalTextStyle,
|
|
TextStyle? mentionsTextStyle,
|
|
) {
|
|
final textList = text.split(' ');
|
|
final resList = <TextSpan>[];
|
|
for (final e in textList) {
|
|
if (mentions.isNotEmpty &&
|
|
mentions.any((element) => '@${element.name}' == e)) {
|
|
resList.add(TextSpan(
|
|
text: '$e ',
|
|
style: mentionsTextStyle,
|
|
));
|
|
} else if (attachments.isNotEmpty &&
|
|
attachments
|
|
.where((e) => e.title != null)
|
|
.any((element) => element.title == e)) {
|
|
resList.add(TextSpan(
|
|
text: '$e ',
|
|
style: normalTextStyle?.copyWith(fontStyle: FontStyle.italic),
|
|
));
|
|
} else {
|
|
resList.add(TextSpan(
|
|
text: e == textList.last ? e : '$e ',
|
|
style: normalTextStyle,
|
|
));
|
|
}
|
|
}
|
|
|
|
return TextSpan(children: resList);
|
|
}
|
|
}
|