fluffychat/lib/utils/room_status_extension.dart

88 lines
3.0 KiB
Dart
Raw Normal View History

2020-05-15 19:57:53 +02:00
import 'package:flutter/widgets.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';
2021-04-09 16:29:48 +02:00
import '../config/app_config.dart';
2020-05-15 19:57:53 +02:00
import 'date_time_extension.dart';
extension RoomStatusExtension on Room {
2022-05-14 09:51:21 +02:00
CachedPresence? get directChatPresence =>
client.presences[directChatMatrixID];
2020-05-15 19:57:53 +02:00
String getLocalizedStatus(BuildContext context) {
if (isDirectChat) {
final directChatPresence = this.directChatPresence;
2020-06-19 15:10:26 +02:00
if (directChatPresence != null &&
2022-05-14 09:51:21 +02:00
(directChatPresence.lastActiveTimestamp != null ||
directChatPresence.currentlyActive != null)) {
if (directChatPresence.statusMsg?.isNotEmpty ?? false) {
return directChatPresence.statusMsg!;
2020-12-06 12:51:40 +01:00
}
2022-05-14 09:51:21 +02:00
if (directChatPresence.currentlyActive == true) {
return L10n.of(context)!.currentlyActive;
2020-05-15 19:57:53 +02:00
}
2022-05-14 09:51:21 +02:00
if (directChatPresence.lastActiveTimestamp == null) {
return L10n.of(context)!.lastSeenLongTimeAgo;
2020-06-25 16:29:06 +02:00
}
2022-05-14 09:51:21 +02:00
final time = directChatPresence.lastActiveTimestamp!;
return L10n.of(context)!
.lastActiveAgo(time.localizedTimeShort(context));
2020-05-15 19:57:53 +02:00
}
return L10n.of(context)!.lastSeenLongTimeAgo;
2020-05-15 19:57:53 +02:00
}
return L10n.of(context)!
2021-06-11 11:40:38 +02:00
.countParticipants(summary.mJoinedMemberCount.toString());
2020-05-15 19:57:53 +02:00
}
2020-11-22 15:25:13 +01:00
String getLocalizedTypingText(BuildContext context) {
var typingText = '';
2021-04-14 10:37:15 +02:00
final typingUsers = this.typingUsers;
2020-11-22 15:25:13 +01:00
typingUsers.removeWhere((User u) => u.id == client.userID);
2020-12-12 17:01:59 +01:00
if (AppConfig.hideTypingUsernames) {
typingText = L10n.of(context)!.isTyping;
2020-12-12 17:01:59 +01:00
if (typingUsers.first.id != directChatMatrixID) {
typingText =
L10n.of(context)!.numUsersTyping(typingUsers.length.toString());
2020-12-12 17:01:59 +01:00
}
} else if (typingUsers.length == 1) {
typingText = L10n.of(context)!.isTyping;
2020-11-22 15:25:13 +01:00
if (typingUsers.first.id != directChatMatrixID) {
typingText =
L10n.of(context)!.userIsTyping(typingUsers.first.calcDisplayname());
2020-11-22 15:25:13 +01:00
}
} else if (typingUsers.length == 2) {
typingText = L10n.of(context)!.userAndUserAreTyping(
typingUsers.first.calcDisplayname(),
typingUsers[1].calcDisplayname(),
);
2020-11-22 15:25:13 +01:00
} else if (typingUsers.length > 2) {
typingText = L10n.of(context)!.userAndOthersAreTyping(
typingUsers.first.calcDisplayname(),
(typingUsers.length - 1).toString(),
);
2020-11-22 15:25:13 +01:00
}
return typingText;
}
2020-12-23 11:23:19 +01:00
List<User> getSeenByUsers(Timeline timeline, {String? eventId}) {
2021-11-13 13:06:36 +01:00
if (timeline.events.isEmpty) return [];
eventId ??= timeline.events.first.eventId;
2021-11-13 13:06:36 +01:00
final lastReceipts = <User>{};
// now we iterate the timeline events until we hit the first rendered event
for (final event in timeline.events) {
lastReceipts.addAll(event.receipts.map((r) => r.user));
2021-12-26 09:59:34 +01:00
if (event.eventId == eventId) {
2021-11-13 13:06:36 +01:00
break;
2020-12-23 11:23:19 +01:00
}
}
lastReceipts.removeWhere(
(user) =>
user.id == client.userID || user.id == timeline.events.first.senderId,
);
2021-11-13 13:06:36 +01:00
return lastReceipts.toList();
2020-12-23 11:23:19 +01:00
}
2020-05-15 19:57:53 +02:00
}