chore: Load hero users for rooms

pull/736/head
Krille 2 years ago
parent 26c637135a
commit d0e4aec4d6
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -175,204 +175,207 @@ class ChatListItem extends StatelessWidget {
borderRadius: BorderRadius.circular(AppConfig.borderRadius), borderRadius: BorderRadius.circular(AppConfig.borderRadius),
clipBehavior: Clip.hardEdge, clipBehavior: Clip.hardEdge,
color: backgroundColor, color: backgroundColor,
child: ListTile( child: FutureBuilder(
visualDensity: const VisualDensity(vertical: -0.5), future: room.loadHeroUsers(),
contentPadding: const EdgeInsets.symmetric(horizontal: 8), builder: (context, snapshot) => ListTile(
onLongPress: onLongPress, visualDensity: const VisualDensity(vertical: -0.5),
leading: selected contentPadding: const EdgeInsets.symmetric(horizontal: 8),
? SizedBox( onLongPress: onLongPress,
width: Avatar.defaultSize, leading: selected
height: Avatar.defaultSize, ? SizedBox(
child: Material( width: Avatar.defaultSize,
color: Theme.of(context).primaryColor, height: Avatar.defaultSize,
borderRadius: BorderRadius.circular(Avatar.defaultSize), child: Material(
child: const Icon(Icons.check, color: Colors.white), color: Theme.of(context).primaryColor,
borderRadius: BorderRadius.circular(Avatar.defaultSize),
child: const Icon(Icons.check, color: Colors.white),
),
)
: Avatar(
mxContent: room.avatar,
name: displayname,
onTap: onLongPress,
presenceUserId: room.directChatMatrixID,
presenceBackgroundColor: backgroundColor,
), ),
) title: Row(
: Avatar( children: <Widget>[
mxContent: room.avatar, Expanded(
name: displayname, child: Text(
onTap: onLongPress, displayname,
presenceUserId: room.directChatMatrixID, maxLines: 1,
presenceBackgroundColor: backgroundColor, overflow: TextOverflow.ellipsis,
), softWrap: false,
title: Row( style: unread
children: <Widget>[ ? const TextStyle(fontWeight: FontWeight.bold)
Expanded( : null,
child: Text(
displayname,
maxLines: 1,
overflow: TextOverflow.ellipsis,
softWrap: false,
style: unread
? const TextStyle(fontWeight: FontWeight.bold)
: null,
),
),
if (isMuted)
const Padding(
padding: EdgeInsets.only(left: 4.0),
child: Icon(
Icons.notifications_off_outlined,
size: 16,
), ),
), ),
if (room.isFavourite || room.membership == Membership.invite) if (isMuted)
Padding( const Padding(
padding: EdgeInsets.only( padding: EdgeInsets.only(left: 4.0),
right: hasNotifications ? 4.0 : 0.0, child: Icon(
Icons.notifications_off_outlined,
size: 16,
),
), ),
child: Icon( if (room.isFavourite || room.membership == Membership.invite)
Icons.push_pin, Padding(
size: 16, padding: EdgeInsets.only(
color: Theme.of(context).colorScheme.primary, right: hasNotifications ? 4.0 : 0.0,
),
child: Icon(
Icons.push_pin,
size: 16,
color: Theme.of(context).colorScheme.primary,
),
), ),
), if (lastEvent != null && room.membership != Membership.invite)
if (lastEvent != null && room.membership != Membership.invite) Padding(
Padding( padding: const EdgeInsets.only(left: 4.0),
padding: const EdgeInsets.only(left: 4.0), child: Text(
child: Text( lastEvent.originServerTs.localizedTimeShort(context),
lastEvent.originServerTs.localizedTimeShort(context), style: TextStyle(
style: TextStyle( fontSize: 13,
fontSize: 13, color: unread
color: unread ? Theme.of(context).colorScheme.secondary
? Theme.of(context).colorScheme.secondary : Theme.of(context).textTheme.bodyMedium!.color,
: Theme.of(context).textTheme.bodyMedium!.color, ),
), ),
), ),
),
],
),
subtitle: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
if (typingText.isEmpty &&
ownMessage &&
room.lastEvent!.status.isSending) ...[
const SizedBox(
width: 16,
height: 16,
child: CircularProgressIndicator.adaptive(strokeWidth: 2),
),
const SizedBox(width: 4),
], ],
AnimatedContainer( ),
width: typingText.isEmpty ? 0 : 18, subtitle: Row(
clipBehavior: Clip.hardEdge, mainAxisAlignment: MainAxisAlignment.center,
decoration: const BoxDecoration(), children: <Widget>[
duration: FluffyThemes.animationDuration, if (typingText.isEmpty &&
curve: FluffyThemes.animationCurve, ownMessage &&
padding: const EdgeInsets.only(right: 4), room.lastEvent!.status.isSending) ...[
child: Icon( const SizedBox(
Icons.edit_outlined, width: 16,
color: Theme.of(context).colorScheme.secondary, height: 16,
size: 14, child: CircularProgressIndicator.adaptive(strokeWidth: 2),
), ),
), const SizedBox(width: 4),
Expanded( ],
child: typingText.isNotEmpty AnimatedContainer(
? Text( width: typingText.isEmpty ? 0 : 18,
typingText, clipBehavior: Clip.hardEdge,
style: TextStyle( decoration: const BoxDecoration(),
color: Theme.of(context).colorScheme.primary, duration: FluffyThemes.animationDuration,
), curve: FluffyThemes.animationCurve,
maxLines: 1, padding: const EdgeInsets.only(right: 4),
softWrap: false, child: Icon(
) Icons.edit_outlined,
: FutureBuilder<String>( color: Theme.of(context).colorScheme.secondary,
future: room.lastEvent?.calcLocalizedBody( size: 14,
MatrixLocals(L10n.of(context)!), ),
hideReply: true,
hideEdit: true,
plaintextBody: true,
removeMarkdown: true,
withSenderNamePrefix: !room.isDirectChat ||
room.directChatMatrixID !=
room.lastEvent?.senderId,
) ??
Future.value(L10n.of(context)!.emptyChat),
builder: (context, snapshot) {
return Text(
room.membership == Membership.invite
? room.isDirectChat
? L10n.of(context)!.invitePrivateChat
: L10n.of(context)!.inviteGroupChat
: snapshot.data ??
room.lastEvent?.calcLocalizedBodyFallback(
MatrixLocals(L10n.of(context)!),
hideReply: true,
hideEdit: true,
plaintextBody: true,
removeMarkdown: true,
withSenderNamePrefix:
!room.isDirectChat ||
room.directChatMatrixID !=
room.lastEvent?.senderId,
) ??
L10n.of(context)!.emptyChat,
softWrap: false,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: unread ? FontWeight.w600 : null,
color: Theme.of(context)
.colorScheme
.onSurfaceVariant,
decoration: room.lastEvent?.redacted == true
? TextDecoration.lineThrough
: null,
),
);
},
),
),
const SizedBox(width: 8),
AnimatedContainer(
duration: FluffyThemes.animationDuration,
curve: FluffyThemes.animationCurve,
padding: const EdgeInsets.symmetric(horizontal: 7),
height: unreadBubbleSize,
width: !hasNotifications && !unread && !room.hasNewMessages
? 0
: (unreadBubbleSize - 9) *
room.notificationCount.toString().length +
9,
decoration: BoxDecoration(
color: room.highlightCount > 0 ||
room.membership == Membership.invite
? Colors.red
: hasNotifications || room.markedUnread
? Theme.of(context).colorScheme.primary
: Theme.of(context).colorScheme.primaryContainer,
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
), ),
child: Center( Expanded(
child: hasNotifications child: typingText.isNotEmpty
? Text( ? Text(
room.notificationCount.toString(), typingText,
style: TextStyle( style: TextStyle(
color: room.highlightCount > 0 color: Theme.of(context).colorScheme.primary,
? Colors.white
: hasNotifications
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context)
.colorScheme
.onPrimaryContainer,
fontSize: 13,
), ),
maxLines: 1,
softWrap: false,
) )
: const SizedBox.shrink(), : FutureBuilder<String>(
future: room.lastEvent?.calcLocalizedBody(
MatrixLocals(L10n.of(context)!),
hideReply: true,
hideEdit: true,
plaintextBody: true,
removeMarkdown: true,
withSenderNamePrefix: !room.isDirectChat ||
room.directChatMatrixID !=
room.lastEvent?.senderId,
) ??
Future.value(L10n.of(context)!.emptyChat),
builder: (context, snapshot) {
return Text(
room.membership == Membership.invite
? room.isDirectChat
? L10n.of(context)!.invitePrivateChat
: L10n.of(context)!.inviteGroupChat
: snapshot.data ??
room.lastEvent?.calcLocalizedBodyFallback(
MatrixLocals(L10n.of(context)!),
hideReply: true,
hideEdit: true,
plaintextBody: true,
removeMarkdown: true,
withSenderNamePrefix:
!room.isDirectChat ||
room.directChatMatrixID !=
room.lastEvent?.senderId,
) ??
L10n.of(context)!.emptyChat,
softWrap: false,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: unread ? FontWeight.w600 : null,
color: Theme.of(context)
.colorScheme
.onSurfaceVariant,
decoration: room.lastEvent?.redacted == true
? TextDecoration.lineThrough
: null,
),
);
},
),
), ),
), const SizedBox(width: 8),
], AnimatedContainer(
), duration: FluffyThemes.animationDuration,
onTap: () => clickAction(context), curve: FluffyThemes.animationCurve,
trailing: onForget == null padding: const EdgeInsets.symmetric(horizontal: 7),
? null height: unreadBubbleSize,
: IconButton( width: !hasNotifications && !unread && !room.hasNewMessages
icon: const Icon(Icons.delete_outlined), ? 0
onPressed: onForget, : (unreadBubbleSize - 9) *
room.notificationCount.toString().length +
9,
decoration: BoxDecoration(
color: room.highlightCount > 0 ||
room.membership == Membership.invite
? Colors.red
: hasNotifications || room.markedUnread
? Theme.of(context).colorScheme.primary
: Theme.of(context).colorScheme.primaryContainer,
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
),
child: Center(
child: hasNotifications
? Text(
room.notificationCount.toString(),
style: TextStyle(
color: room.highlightCount > 0
? Colors.white
: hasNotifications
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context)
.colorScheme
.onPrimaryContainer,
fontSize: 13,
),
)
: const SizedBox.shrink(),
),
), ),
],
),
onTap: () => clickAction(context),
trailing: onForget == null
? null
: IconButton(
icon: const Icon(Icons.delete_outlined),
onPressed: onForget,
),
),
), ),
), ),
); );

Loading…
Cancel
Save