Merge branch 'issue-371' into 'main'

display who sent a reactji on long press

Closes #371

See merge request famedly/fluffychat!422
This commit is contained in:
Krille Fear 2021-06-10 17:32:16 +00:00
commit 09e1db1579
1 changed files with 90 additions and 9 deletions

View File

@ -1,4 +1,8 @@
import 'package:famedlysdk/famedlysdk.dart'; import 'package:famedlysdk/famedlysdk.dart';
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/fluffy_client.dart';
import 'package:fluffychat/utils/platform_infos.dart';
import 'package:fluffychat/widgets/avatar.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:cached_network_image/cached_network_image.dart'; import 'package:cached_network_image/cached_network_image.dart';
import 'package:characters/characters.dart'; import 'package:characters/characters.dart';
@ -16,6 +20,8 @@ class MessageReactions extends StatelessWidget {
final allReactionEvents = final allReactionEvents =
event.aggregatedEvents(timeline, RelationshipTypes.reaction); event.aggregatedEvents(timeline, RelationshipTypes.reaction);
final reactionMap = <String, _ReactionEntry>{}; final reactionMap = <String, _ReactionEntry>{};
final client = Matrix.of(context).client;
for (final e in allReactionEvents) { for (final e in allReactionEvents) {
if (e.content['m.relates_to'].containsKey('key')) { if (e.content['m.relates_to'].containsKey('key')) {
final key = e.content['m.relates_to']['key']; final key = e.content['m.relates_to']['key'];
@ -24,9 +30,11 @@ class MessageReactions extends StatelessWidget {
key: key, key: key,
count: 0, count: 0,
reacted: false, reacted: false,
reactors: [],
); );
} }
reactionMap[key].count++; reactionMap[key].count++;
reactionMap[key].reactors.add(e.sender);
reactionMap[key].reacted |= e.senderId == e.room.client.userID; reactionMap[key].reacted |= e.senderId == e.room.client.userID;
} }
} }
@ -36,7 +44,8 @@ class MessageReactions extends StatelessWidget {
spacing: 4.0, spacing: 4.0,
runSpacing: 4.0, runSpacing: 4.0,
children: reactionList children: reactionList
.map((r) => _Reaction( .map(
(r) => _Reaction(
reactionKey: r.key, reactionKey: r.key,
count: r.count, count: r.count,
reacted: r.reacted, reacted: r.reacted,
@ -60,9 +69,13 @@ class MessageReactions extends StatelessWidget {
event.room.sendReaction(event.eventId, r.key)); event.room.sendReaction(event.eventId, r.key));
} }
}, },
)) onLongPress: () async => await _AdaptableReactorsDialog(
.toList(), client: client,
); reactionEntry: r,
).show(context),
),
)
.toList());
} }
} }
@ -71,8 +84,15 @@ class _Reaction extends StatelessWidget {
final int count; final int count;
final bool reacted; final bool reacted;
final void Function() onTap; final void Function() onTap;
final void Function() onLongPress;
const _Reaction({this.reactionKey, this.count, this.reacted, this.onTap}); const _Reaction({
this.reactionKey,
this.count,
this.reacted,
this.onTap,
this.onLongPress,
});
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
@ -121,6 +141,7 @@ class _Reaction extends StatelessWidget {
} }
return InkWell( return InkWell(
onTap: () => onTap != null ? onTap() : null, onTap: () => onTap != null ? onTap() : null,
onLongPress: () => onLongPress != null ? onLongPress() : null,
child: Container( child: Container(
decoration: BoxDecoration( decoration: BoxDecoration(
color: color, color: color,
@ -141,6 +162,66 @@ class _ReactionEntry {
String key; String key;
int count; int count;
bool reacted; bool reacted;
List<User> reactors;
_ReactionEntry({this.key, this.count, this.reacted}); _ReactionEntry({this.key, this.count, this.reacted, this.reactors});
}
class _AdaptableReactorsDialog extends StatelessWidget {
final FluffyClient client;
final _ReactionEntry reactionEntry;
const _AdaptableReactorsDialog({
Key key,
this.client,
this.reactionEntry,
}) : super(key: key);
Future<bool> show(BuildContext context) => PlatformInfos.isCupertinoStyle
? showCupertinoDialog(
context: context,
builder: (context) => this,
barrierDismissible: true,
useRootNavigator: false,
)
: showDialog(
context: context,
builder: (context) => this,
barrierDismissible: true,
useRootNavigator: false,
);
@override
Widget build(BuildContext context) {
final body = SingleChildScrollView(
child: Wrap(
spacing: 8.0,
runSpacing: 4.0,
alignment: WrapAlignment.center,
children: <Widget>[
for (var reactor in reactionEntry.reactors)
Chip(
avatar: Avatar(
reactor.avatarUrl,
reactor.displayName,
client: client,
),
label: Text(reactor.displayName),
),
],
),
);
final title = Center(child: Text(reactionEntry.key));
return PlatformInfos.isCupertinoStyle
? CupertinoAlertDialog(
title: title,
content: body,
)
: AlertDialog(
title: title,
content: body,
);
}
} }