mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 19:49:29 +01:00
chore: Follow up jump to event
This commit is contained in:
parent
b5364e1619
commit
63a9f9ca90
@ -308,7 +308,6 @@ class ChatController extends State<ChatPageWithRoom> {
|
||||
if (event != null) {
|
||||
scrollToEventId(event);
|
||||
}
|
||||
_updateScrollController();
|
||||
}
|
||||
});
|
||||
|
||||
@ -783,23 +782,22 @@ class ChatController extends State<ChatPageWithRoom> {
|
||||
inputFocus.requestFocus();
|
||||
}
|
||||
|
||||
void scrollToEventId(String eventId, {Duration? duration}) async {
|
||||
var eventIndex = timeline!.events.indexWhere((e) => e.eventId == eventId);
|
||||
void scrollToEventId(String eventId) async {
|
||||
final eventIndex = timeline!.events.indexWhere((e) => e.eventId == eventId);
|
||||
if (eventIndex == -1) {
|
||||
setState(() {
|
||||
timeline = null;
|
||||
loadTimelineFuture = _getTimeline(eventId);
|
||||
});
|
||||
await loadTimelineFuture;
|
||||
eventIndex = timeline!.events.indexWhere((e) => e.eventId == eventId);
|
||||
}
|
||||
if (!mounted) {
|
||||
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
|
||||
scrollToEventId(eventId);
|
||||
});
|
||||
return;
|
||||
}
|
||||
await scrollController.scrollToIndex(
|
||||
eventIndex,
|
||||
preferPosition: AutoScrollPosition.middle,
|
||||
duration: duration ?? scrollAnimationDuration,
|
||||
);
|
||||
_updateScrollController();
|
||||
}
|
||||
|
@ -347,7 +347,6 @@ class ChatView extends StatelessWidget {
|
||||
icon: const Icon(Icons.arrow_upward_outlined),
|
||||
onPressed: () => controller.scrollToEventId(
|
||||
controller.room.fullyRead,
|
||||
duration: Duration.zero,
|
||||
),
|
||||
label: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
|
Loading…
Reference in New Issue
Block a user