-
-
Notifications
You must be signed in to change notification settings - Fork 492
/
Copy pathDialogViewModel.cs
4998 lines (4215 loc) · 175 KB
/
DialogViewModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// Copyright Fela Ameghino & Contributors 2015-2025
//
// Distributed under the GNU General Public License v3.0. (See accompanying
// file LICENSE or copy at https://www.gnu.org/licenses/gpl-3.0.txt)
//
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using Telegram.Collections;
using Telegram.Common;
using Telegram.Common.Chats;
using Telegram.Controls;
using Telegram.Controls.Chats;
using Telegram.Controls.Messages;
using Telegram.Converters;
using Telegram.Navigation;
using Telegram.Navigation.Services;
using Telegram.Services;
using Telegram.Services.Factories;
using Telegram.Td;
using Telegram.Td.Api;
using Telegram.ViewModels.Chats;
using Telegram.ViewModels.Delegates;
using Telegram.Views;
using Telegram.Views.Popups;
using Telegram.Views.Premium.Popups;
using Telegram.Views.Users;
using Windows.ApplicationModel.DataTransfer;
using Windows.UI.Text;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Media.Animation;
using Windows.UI.Xaml.Navigation;
using Point = Windows.Foundation.Point;
namespace Telegram.ViewModels
{
public partial class ChatMessageIdNavigationArgs
{
public ChatMessageIdNavigationArgs(long chatId, long threadId)
{
ChatId = chatId;
MessageId = threadId;
}
public long ChatId { get; }
public long MessageId { get; }
}
public partial class ChatSavedMessagesTopicIdNavigationArgs
{
public ChatSavedMessagesTopicIdNavigationArgs(long chatId, long savedMessagesTopicId)
{
ChatId = chatId;
SavedMessagesTopicId = savedMessagesTopicId;
}
public long ChatId { get; }
public long SavedMessagesTopicId { get; }
}
public partial class ChatBusinessRepliesIdNavigationArgs
{
public ChatBusinessRepliesIdNavigationArgs(string quickReplyShortcut)
{
QuickReplyShortcut = quickReplyShortcut;
}
public string QuickReplyShortcut { get; }
}
public partial class DialogViewModel : ComposeViewModel, IDelegable<IDialogDelegate>
{
private readonly ConcurrentDictionary<long, MessageViewModel> _selectedItems = new();
public IDictionary<long, MessageViewModel> SelectedItems => _selectedItems;
public int SelectedCount => SelectedItems.Count;
protected readonly ConcurrentDictionary<long, MessageViewModel> _groupedMessages = new();
protected readonly ConcurrentDictionary<long, HashSet<long>> _messageEffects = new();
protected static readonly Dictionary<MessageId, MessageContent> _contentOverrides = new();
protected readonly DisposableMutex _loadMoreLock = new();
protected readonly IMessageDelegate _messageDelegate;
protected readonly DialogUnreadMessagesViewModel _mentions;
protected readonly DialogUnreadMessagesViewModel _reactions;
protected readonly ILocationService _locationService;
protected readonly INotificationsService _notificationsService;
protected readonly IPlaybackService _playbackService;
protected readonly IVoipService _voipService;
protected readonly INetworkService _networkService;
protected readonly IStorageService _storageService;
protected readonly ITranslateService _translateService;
public IPlaybackService PlaybackService => _playbackService;
public IStorageService StorageService => _storageService;
public ITranslateService TranslateService => _translateService;
public IVoipService VoipService => _voipService;
public DialogUnreadMessagesViewModel Mentions => _mentions;
public DialogUnreadMessagesViewModel Reactions => _reactions;
public IDialogDelegate Delegate { get; set; }
public DialogViewModel(IClientService clientService, ISettingsService settingsService, IEventAggregator aggregator, ILocationService locationService, INotificationsService pushService, IPlaybackService playbackService, IVoipService voipService, INetworkService networkService, IStorageService storageService, ITranslateService translateService)
: base(clientService, settingsService, aggregator)
{
_locationService = locationService;
_notificationsService = pushService;
_playbackService = playbackService;
_voipService = voipService;
_networkService = networkService;
_storageService = storageService;
_translateService = translateService;
_messageDelegate = new DialogMessageDelegate(this);
_mentions = new DialogUnreadMessagesViewModel(this, new SearchMessagesFilterUnreadMention());
_reactions = new DialogUnreadMessagesViewModel(this, new SearchMessagesFilterUnreadReaction());
//Items = new LegacyMessageCollection();
//Items.CollectionChanged += (s, args) => IsEmpty = Items.Count == 0;
_count++;
System.Diagnostics.Debug.WriteLine("Creating DialogViewModel {0}", _count);
}
private static volatile int _count;
~DialogViewModel()
{
System.Diagnostics.Debug.WriteLine("Finalizing DialogViewModel {0}", _count);
_count--;
}
public void Dispose()
{
System.Diagnostics.Debug.WriteLine("Disposing DialogViewModel");
_groupedMessages.Clear();
}
public Action<Sticker> Sticker_Click;
protected Chat _linkedChat;
public Chat LinkedChat
{
get => _linkedChat;
set => Set(ref _linkedChat, value);
}
public override long ThreadId
{
get
{
if (_topic != null)
{
return _topic.Info.MessageThreadId;
}
else if (_thread != null)
{
return _thread.MessageThreadId;
}
return 0;
}
}
public override long OutgoingThreadId
{
get
{
if (_topic != null)
{
return _topic.Info.IsGeneral ? 0 : _topic.Info.MessageThreadId;
}
else if (_thread != null)
{
return _thread.MessageThreadId;
}
return 0;
}
}
protected MessageThreadInfo _thread;
public MessageThreadInfo Thread
{
get => _thread;
set => Set(ref _thread, value);
}
protected ForumTopic _topic;
public ForumTopic Topic
{
get => _topic;
set => Set(ref _topic, value);
}
protected SavedMessagesTopic _savedMessagesTopic;
public SavedMessagesTopic SavedMessagesTopic
{
get => _savedMessagesTopic;
set => Set(ref _savedMessagesTopic, value);
}
protected QuickReplyShortcut _quickReplyShortcut;
public QuickReplyShortcut QuickReplyShortcut
{
get => _quickReplyShortcut;
set => Set(ref _quickReplyShortcut, value);
}
public long SavedMessagesTopicId => SavedMessagesTopic?.Id ?? 0;
protected Chat _chat;
public override Chat Chat
{
get => _chat;
set => Set(ref _chat, value);
}
private DialogType _type => Type;
public virtual DialogType Type => DialogType.History;
private DispatcherTimer _lastSeenTimer;
private string _lastSeen;
public string LastSeen
{
get => _type switch
{
DialogType.EventLog => Strings.EventLog,
DialogType.SavedMessagesTopic => Strings.SavedMessagesTab,
_ => _lastSeen
};
set
{
Set(ref _lastSeen, value);
RaisePropertyChanged(nameof(Subtitle));
}
}
public void UpdateLastSeen(string value)
{
_lastSeenTimer?.Stop();
LastSeen = value;
}
public void UpdateLastSeen(User user)
{
var interval = LastSeenConverter.OnlinePhraseChange(user.Status, DateTime.Now);
if (interval > 0 && _lastSeenTimer == null)
{
_lastSeenTimer ??= new DispatcherTimer();
_lastSeenTimer.Tick += LastSeenTimer_Tick;
}
_lastSeenTimer?.Stop();
if (interval > 0)
{
_lastSeenTimer.Interval = TimeSpan.FromSeconds(interval);
_lastSeenTimer.Start();
}
LastSeen = LastSeenConverter.GetLabel(user, true, true);
}
private void LastSeenTimer_Tick(object sender, object e)
{
if (ClientService.TryGetUser(Chat, out User user))
{
UpdateLastSeen(user);
}
}
private string _onlineCount;
public string OnlineCount
{
get => _onlineCount;
set
{
Set(ref _onlineCount, value);
RaisePropertyChanged(nameof(Subtitle));
}
}
public virtual string Subtitle
{
get
{
var chat = _chat;
if (chat == null)
{
return null;
}
if (chat.Type is ChatTypePrivate or ChatTypeSecret)
{
return LastSeen;
}
if (Topic == null && !string.IsNullOrEmpty(OnlineCount) && !string.IsNullOrEmpty(LastSeen))
{
return string.Format("{0}, {1}", LastSeen, OnlineCount);
}
return LastSeen;
}
}
private ChatSearchViewModel _search;
public ChatSearchViewModel Search
{
get => _search;
set => Set(ref _search, value);
}
public void DisposeSearch()
{
var search = _search;
if (search != null)
{
search.Dispose();
UpdateQuery(string.Empty);
}
Search = null;
}
private string _accessToken;
public string AccessToken
{
get => _accessToken;
set
{
Set(ref _accessToken, value);
RaisePropertyChanged(nameof(HasAccessToken));
}
}
public bool HasAccessToken
{
get
{
return (_accessToken != null || _isEmpty) && !_loadingSlice;
}
}
private bool _restrictsNewChats;
public bool RestrictsNewChats
{
get => _restrictsNewChats;
set => Set(ref _restrictsNewChats, value);
}
private DispatcherTimer _informativeTimer;
private MessageViewModel _informativeMessage;
public MessageViewModel InformativeMessage
{
get => _informativeMessage;
set
{
_informativeTimer?.Stop();
if (value != null)
{
if (_informativeTimer == null)
{
_informativeTimer = new DispatcherTimer();
_informativeTimer.Interval = TimeSpan.FromSeconds(5);
_informativeTimer.Tick += (s, args) =>
{
_informativeTimer.Stop();
InformativeMessage = null;
};
}
_informativeTimer.Start();
}
Set(ref _informativeMessage, value);
Delegate?.UpdateCallbackQueryAnswer(_chat, value);
}
}
private OutputChatActionManager _chatActionManager;
public OutputChatActionManager ChatActionManager
{
get
{
return _chatActionManager ??= new OutputChatActionManager(ClientService, _chat, OutgoingThreadId);
}
}
private bool _needsUpdateSpeechRecognitionTrial;
private bool _hasLoadedLastPinnedMessage = false;
public long LockedPinnedMessageId { get; set; }
public MessageViewModel LastPinnedMessage { get; private set; }
public IList<MessageViewModel> PinnedMessages { get; } = new List<MessageViewModel>();
private Td.Api.Chats _groupsInCommon;
public Td.Api.Chats GroupsInCommon
{
get => _groupsInCommon;
set => Set(ref _groupsInCommon, value);
}
private SponsoredMessage _sponsoredMessage;
public SponsoredMessage SponsoredMessage
{
get => _sponsoredMessage;
set => Set(ref _sponsoredMessage, value);
}
private SavedMessagesTags _savedMessagesTags;
public SavedMessagesTags SavedMessagesTags
{
get => _savedMessagesTags;
set => Set(ref _savedMessagesTags, value);
}
public void UpdateSavedMessagesTag(ReactionType tag, bool filterByTag, ReactionType lastTag)
{
bool TryGetLastVisibleMessageIdAndPixel(out long lastVisibleId, out double? lastVisiblePixel)
{
lastVisibleId = 0;
lastVisiblePixel = null;
var field = HistoryField;
if (field != null && !field.IsSuspended && TryGetLastVisibleMessageId(out lastVisibleId, out int lastVisibleIndex))
{
if (lastVisibleId != 0)
{
var message = Items[lastVisibleIndex];
if (message.InteractionInfo?.Reactions != null && message.InteractionInfo.Reactions.IsChosen(lastTag))
{
var container = field.ContainerFromIndex(lastVisibleIndex) as SelectorItem;
if (container != null)
{
var transform = container.TransformToVisual(field);
var position = transform.TransformPoint(new Point());
lastVisiblePixel = field.ActualHeight - (position.Y + container.ActualHeight);
}
return true;
}
}
}
return false;
}
if (lastTag != null && TryGetLastVisibleMessageIdAndPixel(out long lastVisibleId, out double? lastVisiblePixel))
{
_ = LoadMessageSliceAsync(null, lastVisibleId, VerticalAlignment.Bottom, lastVisiblePixel, onlyRemote: true);
}
else
{
_ = LoadMessageSliceAsync(null, long.MaxValue, VerticalAlignment.Bottom, onlyRemote: true);
}
if (_chat is Chat chat && chat.Type is ChatTypePrivate privata)
{
var item = ClientService.GetUser(privata.UserId);
var cache = ClientService.GetUserFull(privata.UserId);
if (cache != null)
{
Delegate?.UpdateUserFullInfo(chat, item, cache, false, false);
}
else
{
ClientService.Send(new GetUserFullInfo(privata.UserId));
}
}
if (filterByTag is false && tag != null)
{
Search?.Search(Search.Query, null, null, tag);
}
}
public int UnreadCount
{
get
{
if (_type != DialogType.History)
{
return 0;
}
return _chat?.UnreadCount ?? 0;
}
}
private bool _isSelectionEnabled;
public bool IsSelectionEnabled
{
get => _isSelectionEnabled;
set => ShowHideSelection(value);
}
public void ShowHideSelection(bool value, ReportChatSelection report = null)
{
if (_isSelectionEnabled != value)
{
Set(ref _isReportingMessages, report, nameof(IsReportingMessages));
Set(ref _isSelectionEnabled, value, nameof(IsSelectionEnabled));
if (value)
{
DisposeSearch();
}
else
{
SelectedItems.Clear();
}
}
}
public ChatTextBox TextField { get; set; }
public ChatHistoryView HistoryField { get; set; }
public void SetSelection(int start)
{
var field = TextField;
if (field == null)
{
return;
}
field.Document.GetText(TextGetOptions.None, out string text);
field.Document.Selection.SetRange(start, text.Length);
}
public void SetText(FormattedText text, bool focus = false)
{
if (text == null)
{
SetText(null, null, focus);
}
else
{
SetText(text.Text, text.Entities, focus);
}
}
public void SetText(string text, IList<TextEntity> entities = null, bool focus = false)
{
var field = TextField;
if (field == null)
{
return;
}
var chat = Chat;
if (chat != null && chat.Type is ChatTypeSupergroup super && super.IsChannel && !string.IsNullOrEmpty(text))
{
var supergroup = ClientService.GetSupergroup(super.SupergroupId);
if (supergroup != null && !supergroup.CanPostMessages())
{
return;
}
}
if (string.IsNullOrEmpty(text))
{
field.SetText(null);
}
else
{
field.SetText(text, entities);
}
if (focus)
{
field.Focus(FocusState.Keyboard);
}
}
public void SetScrollMode(ItemsUpdatingScrollMode mode, bool force)
{
var field = HistoryField;
if (field == null)
{
return;
}
field.SetScrollingMode(mode, force);
}
public override FormattedText GetFormattedText(bool clear = false, bool parseMarkdown = true)
{
var field = TextField;
if (field == null)
{
return new FormattedText(string.Empty, Array.Empty<TextEntity>());
}
return field.GetFormattedText(clear, parseMarkdown);
}
public bool IsEndReached()
{
var lastMessage = _savedMessagesTopic?.LastMessage ?? _chat?.LastMessage;
if (lastMessage == null)
{
return Items.Empty();
}
var last = Items.LastOrDefault();
if (last?.Content is MessageAlbum album)
{
last = album.Messages.LastOrDefault();
}
if (last == null || last.Id == 0)
{
return true;
}
return lastMessage.Id == last.Id;
}
private bool _isChatEmpty;
private Sticker _greetingSticker;
public Sticker GreetingSticker
{
get => _greetingSticker;
set => Set(ref _greetingSticker, value);
}
private bool? _isFirstSliceLoaded;
public bool? IsFirstSliceLoaded
{
get => _isFirstSliceLoaded;
set => Set(ref _isFirstSliceLoaded, value);
}
public bool? IsLastSliceLoaded { get; set; }
private bool _isEmpty = true;
public bool IsEmpty
{
get => _isEmpty && !_loadingSlice;
set
{
Set(ref _isEmpty, value);
RaisePropertyChanged(nameof(HasAccessToken));
}
}
public override bool IsLoading
{
get => _loadingSlice;
set
{
base.IsLoading = value;
RaisePropertyChanged(nameof(IsEmpty));
RaisePropertyChanged(nameof(HasAccessToken));
}
}
protected bool _loadingSlice;
protected Stack<long> _repliesStack = new Stack<long>();
public Stack<long> RepliesStack => _repliesStack;
// Scrolling to top
public virtual Task LoadNextSliceAsync()
{
return LoadNextSliceAsync(PanelScrollingDirection.Backward);
}
// Scrolling to bottom
public Task LoadPreviousSliceAsync()
{
return LoadNextSliceAsync(PanelScrollingDirection.Forward);
}
private async Task LoadNextSliceAsync(PanelScrollingDirection direction)
{
// Backward => Going to top, to the past
// Forward => Going to bottom, to the present
if (_type is not DialogType.History and not DialogType.Thread and not DialogType.Pinned and not DialogType.SavedMessagesTopic)
{
return;
}
var chat = _chat;
if (chat == null)
{
return;
}
using (await _loadMoreLock.WaitAsync())
{
if (_loadingSlice || _chat?.Id != chat.Id || Items.Count < 1)
{
return;
}
if (direction == PanelScrollingDirection.Backward && IsLastSliceLoaded == true)
{
return;
}
_loadingSlice = true;
IsLoading = true;
System.Diagnostics.Debug.WriteLine("DialogViewModel: LoadNextSliceAsync");
MessageViewModel fromMessage;
long fromMessageId;
int offset;
if (direction == PanelScrollingDirection.Backward)
{
fromMessage = Items.Count > 0 ? Items[0] : null;
fromMessageId = Items.FirstId;
offset = 0;
}
else
{
fromMessage = null;
fromMessageId = Items.LastId;
offset = -49;
}
if (fromMessageId == long.MaxValue || fromMessageId == long.MinValue)
{
_loadingSlice = false;
IsLoading = false;
return;
}
Function func;
if (Search?.SavedMessagesTag != null)
{
func = new SearchSavedMessages(SavedMessagesTopicId, Search.SavedMessagesTag, string.Empty, fromMessageId, offset, 50);
}
else if (SavedMessagesTopicId != 0)
{
func = new GetSavedMessagesTopicHistory(SavedMessagesTopicId, fromMessageId, offset, 50);
}
else if (Topic != null)
{
func = new GetMessageThreadHistory(chat.Id, _topic.Info.MessageThreadId, fromMessageId, offset, 50);
}
else if (Thread != null)
{
func = new GetMessageThreadHistory(chat.Id, _thread.MessageThreadId, fromMessageId, offset, 50);
}
else if (_type == DialogType.Pinned)
{
func = new SearchChatMessages(chat.Id, string.Empty, null, fromMessageId, offset, 50, new SearchMessagesFilterPinned(), 0, 0);
}
else
{
func = new GetChatHistory(chat.Id, fromMessageId, offset, 50, false);
}
var tsc = new TaskCompletionSource<MessageCollection>();
async void handler(BaseObject result)
{
if (result is FoundChatMessages foundChatMessages)
{
result = await PreloadAlbumsAsync(chat.Id, foundChatMessages);
}
if (result is Messages messages)
{
var endReached = messages.MessagesValue.Empty();
if (endReached && direction == PanelScrollingDirection.Backward)
{
await AddHeaderAsync(messages.MessagesValue, fromMessage?.Get());
}
tsc.SetResult(new MessageCollection(Items.Ids, messages.MessagesValue, CreateMessage, endReached));
}
else
{
tsc.SetResult(null);
}
}
ClientService.Send(func, handler);
var response = await tsc.Task;
if (response is MessageCollection replied)
{
if (replied.Count > 0)
{
ProcessMessages(chat, replied);
if (direction == PanelScrollingDirection.Backward)
{
SetScrollMode(ItemsUpdatingScrollMode.KeepLastItemInView, true);
Items.RawInsertRange(0, replied, true, out bool empty);
}
else
{
SetScrollMode(ItemsUpdatingScrollMode.KeepItemsInView, true);
Items.RawAddRange(replied, true, out bool empty);
}
}
else if (direction != PanelScrollingDirection.Backward)
{
SetScrollMode(ItemsUpdatingScrollMode.KeepLastItemInView, true);
}
if (direction == PanelScrollingDirection.Backward)
{
IsLastSliceLoaded = replied.IsEndReached;
UpdateDetectedLanguage();
}
else
{
IsFirstSliceLoaded = replied.IsEndReached || IsEndReached();
}
}
_loadingSlice = false;
IsLoading = false;
LoadPinnedMessagesSliceAsync(fromMessageId, direction);
}
}
protected async Task AddHeaderAsync(IList<Message> messages, Message previous)
{
if (previous != null && (previous.Content is MessageHeaderDate || (previous.Content is MessageText && previous.Id == 0)))
{
return;
}
var chat = _chat;
if (chat == null || _type != DialogType.History)
{
goto AddDate;
}
var user = ClientService.GetUser(chat);
if (user?.Type is not UserTypeBot)
{
goto AddDate;
}
if (chat.Id == ClientService.Options.VerificationCodesBotChatId)
{
var entities = ClientEx.GetTextEntities(Strings.VerifyChatInfo);
var text = new FormattedText(Strings.VerifyChatInfo, entities);
var content = new MessageText(text, null, null);
messages.Add(new Message(0, new MessageSenderUser(user.Id), chat.Id, null, null, false, false, false, false, false, false, false, false, 0, 0, null, null, null, null, null, null, 0, 0, null, 0, 0, 0, 0, 0, 0, string.Empty, 0, 0, false, string.Empty, content, null));
return;
}
else
{
var fullInfo = ClientService.GetUserFull(user.Id);
fullInfo ??= await ClientService.SendAsync(new GetUserFullInfo(user.Id)) as UserFullInfo;
if (fullInfo?.BotInfo?.Description.Length > 0)
{
var entities = ClientEx.GetTextEntities(fullInfo.BotInfo.Description);
foreach (var entity in entities)
{
entity.Offset += Strings.BotInfoTitle.Length + Environment.NewLine.Length;
}
entities.Add(new TextEntity(0, Strings.BotInfoTitle.Length, new TextEntityTypeBold()));
var message = $"{Strings.BotInfoTitle}{Environment.NewLine}{fullInfo.BotInfo.Description}";
var text = new FormattedText(message, entities);
MessageContent content;
if (fullInfo.BotInfo.Animation != null)
{
content = new MessageAnimation(fullInfo.BotInfo.Animation, text, false, false, false);
}
else if (fullInfo.BotInfo.Photo != null)
{
content = new MessagePhoto(fullInfo.BotInfo.Photo, text, false, false, false);
}
else
{
content = new MessageText(text, null, null);
}
messages.Add(new Message(0, new MessageSenderUser(user.Id), chat.Id, null, null, false, false, false, false, false, false, false, false, 0, 0, null, null, null, null, null, null, 0, 0, null, 0, 0, 0, 0, 0, 0, string.Empty, 0, 0, false, string.Empty, content, null));
return;
}
}
AddDate:
if (_topic == null && _thread != null)
{
var replied = _thread.Messages.OrderBy(x => x.Id).ToList();
var empty = previous == null;
previous = replied[0];
if (empty)
{
messages.Add(new Message(0, previous.SenderId, previous.ChatId, null, null, previous.IsOutgoing, false, false, false, false, previous.IsChannelPost, previous.IsTopicMessage, false, previous.Date, 0, null, null, null, null, null, null, 0, 0, null, 0, 0, 0, 0, 0, 0, string.Empty, 0, 0, false, string.Empty, new MessageCustomServiceAction(Strings.NoComments), null));
}
else
{
messages.Add(new Message(0, previous.SenderId, previous.ChatId, null, null, previous.IsOutgoing, false, false, false, false, previous.IsChannelPost, previous.IsTopicMessage, false, previous.Date, 0, null, null, null, null, null, null, 0, 0, null, 0, 0, 0, 0, 0, 0, string.Empty, 0, 0, false, string.Empty, new MessageCustomServiceAction(Strings.DiscussionStarted), null));
}
for (int i = replied.Count - 1; i >= 0; i--)
{
messages.Add(replied[i]);
}
}
if (previous != null)
{
messages.Add(new Message(0, previous.SenderId, previous.ChatId, null, null, previous.IsOutgoing, false, false, false, false, previous.IsChannelPost, previous.IsTopicMessage, false, previous.Date, 0, null, null, null, null, null, null, 0, 0, null, 0, 0, 0, 0, 0, 0, string.Empty, 0, 0, false, string.Empty, new MessageHeaderDate(), null));
}
}
public async void PreviousSlice()
{
if (_type is DialogType.ScheduledMessages or DialogType.EventLog)
{
ScrollToBottom();
}
else if (_repliesStack.Count > 0)
{
await LoadMessageSliceAsync(null, _repliesStack.Pop());
}
else
{
await LoadLastSliceAsync();
}
TextField?.Focus(FocusState.Programmatic);
}
public Task LoadLastSliceAsync()
{
var chat = _chat;
if (chat == null)
{
return Task.CompletedTask;
}
long lastReadMessageId;
long lastMessageId;
if (_savedMessagesTopic is SavedMessagesTopic savedMessagesTopic)
{
lastReadMessageId = savedMessagesTopic.LastMessage?.Id ?? long.MaxValue;
lastMessageId = savedMessagesTopic.LastMessage?.Id ?? long.MaxValue;
}
else if (_topic is ForumTopic topic)
{
lastReadMessageId = topic.LastReadInboxMessageId;
lastMessageId = topic.LastMessage?.Id ?? long.MaxValue;
}
else if (_thread is MessageThreadInfo thread)
{
lastReadMessageId = thread.ReplyInfo?.LastReadInboxMessageId ?? long.MaxValue;
lastMessageId = thread.ReplyInfo?.LastMessageId ?? long.MaxValue;
}
else
{
lastReadMessageId = chat.LastReadInboxMessageId;
lastMessageId = chat.LastMessage?.Id ?? long.MaxValue;
}
if (TryGetLastVisibleMessageId(out long lastVisibleId, out int lastVisibleIndex))
{