using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using CommunityToolkit.Mvvm.Collections; using Serilog; using Wino.Core.Domain.Entities.Mail; using Wino.Core.Domain.Enums; using Wino.Core.Domain.Interfaces; using Wino.Core.Domain.Models.Comparers; using Wino.Core.Domain.Models.MailItem; using Wino.Mail.ViewModels.Data; namespace Wino.Mail.ViewModels.Collections; public class WinoMailCollection { // We cache each mail copy id for faster access on updates. // If the item provider here for update or removal doesn't exist here // we can ignore the operation. public HashSet MailCopyIdHashSet = []; public event EventHandler MailItemRemoved; private ListItemComparer listComparer = new ListItemComparer(); private readonly ObservableGroupedCollection _mailItemSource = new ObservableGroupedCollection(); public ReadOnlyObservableGroupedCollection MailItems { get; } /// /// Property that defines how the item sorting should be done in the collection. /// public SortingOptionType SortingType { get; set; } /// /// Threading strategy that will help thread items according to the account type. /// public IThreadingStrategyProvider ThreadingStrategyProvider { get; set; } /// /// Automatically deletes single mail items after the delete operation or thread->single transition. /// This is useful when reply draft is discarded in the thread. Only enabled for Draft folder for now. /// public bool PruneSingleNonDraftItems { get; set; } public int Count => _mailItemSource.Count; public IDispatcher CoreDispatcher { get; set; } public WinoMailCollection() { MailItems = new ReadOnlyObservableGroupedCollection(_mailItemSource); } public void Clear() => _mailItemSource.Clear(); private object GetGroupingKey(IMailItem mailItem) { if (SortingType == SortingOptionType.ReceiveDate) return mailItem.CreationDate.ToLocalTime().Date; else return mailItem.FromName; } private void UpdateUniqueIdHashes(IMailHashContainer itemContainer, bool isAdd) { foreach (var item in itemContainer.GetContainingIds()) { if (isAdd) { MailCopyIdHashSet.Add(item); } else { MailCopyIdHashSet.Remove(item); } } } private void InsertItemInternal(object groupKey, IMailItem mailItem) { UpdateUniqueIdHashes(mailItem, true); if (mailItem is MailCopy mailCopy) { _mailItemSource.InsertItem(groupKey, listComparer, new MailItemViewModel(mailCopy), listComparer.GetItemComparer()); } else if (mailItem is ThreadMailItem threadMailItem) { _mailItemSource.InsertItem(groupKey, listComparer, new ThreadMailItemViewModel(threadMailItem), listComparer.GetItemComparer()); } else { _mailItemSource.InsertItem(groupKey, listComparer, mailItem, listComparer.GetItemComparer()); } } private void RemoveItemInternal(ObservableGroup group, IMailItem mailItem) { UpdateUniqueIdHashes(mailItem, false); MailItemRemoved?.Invoke(this, mailItem); group.Remove(mailItem); if (group.Count == 0) { _mailItemSource.RemoveGroup(group.Key); } } public async Task AddAsync(MailCopy addedItem) { // Check all items for whether this item should be threaded with them. bool shouldExit = false; var groupCount = _mailItemSource.Count; var addedAccountProviderType = addedItem.AssignedAccount.ProviderType; var threadingStrategy = ThreadingStrategyProvider?.GetStrategy(addedAccountProviderType); for (int i = 0; i < groupCount; i++) { if (shouldExit) break; var group = _mailItemSource[i]; for (int k = 0; k < group.Count; k++) { var item = group[k]; if (threadingStrategy?.ShouldThreadWithItem(addedItem, item) ?? false) { shouldExit = true; if (item is ThreadMailItemViewModel threadMailItemViewModel) { // Item belongs to existing thread. /* Add original item to the thread. * If new group key is not the same as existing thread: * -> Remove the whole thread from list * -> Add the thread to the list again for sorting. * Update thread properties. */ var existingGroupKey = GetGroupingKey(threadMailItemViewModel); await ExecuteUIThread(() => { threadMailItemViewModel.AddMailItemViewModel(addedItem); }); var newGroupKey = GetGroupingKey(threadMailItemViewModel); if (!existingGroupKey.Equals(newGroupKey)) { var mailThreadItems = threadMailItemViewModel.GetThreadMailItem(); await ExecuteUIThread(() => { // Group must be changed for this thread. // Remove the thread first. RemoveItemInternal(group, threadMailItemViewModel); // Insert new view model because the previous one might've been deleted with the group. InsertItemInternal(newGroupKey, new ThreadMailItemViewModel(mailThreadItems)); }); } else { await ExecuteUIThread(() => { threadMailItemViewModel.NotifyPropertyChanges(); }); } UpdateUniqueIdHashes(addedItem, true); break; } else { // Item belongs to a single mail item that is not threaded yet. // Same item might've been tried to added as well. // In that case we must just update the item but not thread it. /* Remove target item. * Create a new thread with both items. * Add new thread to the list. */ if (item.Id == addedItem.Id) { // Item is already added to the list. // We need to update the copy it holds. if (item is MailItemViewModel itemViewModel) { await ExecuteUIThread(() => { itemViewModel.MailCopy = addedItem; }); UpdateUniqueIdHashes(itemViewModel, false); UpdateUniqueIdHashes(addedItem, true); } } else { // Single item that must be threaded together with added item. var threadMailItem = new ThreadMailItem(); await ExecuteUIThread(() => { threadMailItem.AddThreadItem(item); threadMailItem.AddThreadItem(addedItem); if (threadMailItem.ThreadItems.Count == 1) return; var newGroupKey = GetGroupingKey(threadMailItem); RemoveItemInternal(group, item); InsertItemInternal(newGroupKey, threadMailItem); }); } break; } } else { // Update properties. if (item.Id == addedItem.Id && item is MailItemViewModel itemViewModel) { UpdateUniqueIdHashes(itemViewModel, false); UpdateUniqueIdHashes(addedItem, true); await ExecuteUIThread(() => { itemViewModel.MailCopy = addedItem; }); shouldExit = true; } } } } if (!shouldExit) { // At this point all items are already checked and not suitable option was available. // Item doesn't belong to any thread. // Just add it to the collection. var groupKey = GetGroupingKey(addedItem); await ExecuteUIThread(() => { InsertItemInternal(groupKey, addedItem); }); } } public void AddRange(IEnumerable items, bool clearIdCache) { if (clearIdCache) { MailCopyIdHashSet.Clear(); } var groupedByName = items .GroupBy(a => GetGroupingKey(a)) .Select(a => new ObservableGroup(a.Key, a)); foreach (var group in groupedByName) { // Store all mail copy ids for faster access. foreach (var item in group) { if (item is MailItemViewModel mailCopyItem && !MailCopyIdHashSet.Contains(item.UniqueId)) { MailCopyIdHashSet.Add(item.UniqueId); } else if (item is ThreadMailItemViewModel threadMailItem) { foreach (var mailItem in threadMailItem.ThreadItems) { if (!MailCopyIdHashSet.Contains(mailItem.UniqueId)) { MailCopyIdHashSet.Add(mailItem.UniqueId); } } } } var existingGroup = _mailItemSource.FirstGroupByKeyOrDefault(group.Key); if (existingGroup == null) { _mailItemSource.AddGroup(group.Key, group); } else { foreach (var item in group) { existingGroup.Add(item); } } } } public MailItemContainer GetMailItemContainer(Guid uniqueMailId) { var groupCount = _mailItemSource.Count; for (int i = 0; i < groupCount; i++) { var group = _mailItemSource[i]; for (int k = 0; k < group.Count; k++) { var item = group[k]; if (item is MailItemViewModel singleMailItemViewModel && singleMailItemViewModel.UniqueId == uniqueMailId) return new MailItemContainer(singleMailItemViewModel); else if (item is ThreadMailItemViewModel threadMailItemViewModel && threadMailItemViewModel.HasUniqueId(uniqueMailId)) { var singleItemViewModel = threadMailItemViewModel.GetItemById(uniqueMailId) as MailItemViewModel; return new MailItemContainer(singleItemViewModel, threadMailItemViewModel); } } } return null; } /// /// Fins the item container that updated mail copy belongs to and updates it. /// /// Updated mail copy. /// public async Task UpdateMailCopy(MailCopy updatedMailCopy) { // This item doesn't exist in the list. if (!MailCopyIdHashSet.Contains(updatedMailCopy.UniqueId)) { return; } await ExecuteUIThread(() => { var itemContainer = GetMailItemContainer(updatedMailCopy.UniqueId); if (itemContainer == null) return; if (itemContainer.ItemViewModel != null) { UpdateUniqueIdHashes(itemContainer.ItemViewModel, false); } if (itemContainer.ItemViewModel != null) { itemContainer.ItemViewModel.MailCopy = updatedMailCopy; } UpdateUniqueIdHashes(updatedMailCopy, true); // Call thread notifications if possible. itemContainer.ThreadViewModel?.NotifyPropertyChanges(); }); } public MailItemViewModel GetNextItem(MailCopy mailCopy) { try { var groupCount = _mailItemSource.Count; for (int i = 0; i < groupCount; i++) { var group = _mailItemSource[i]; for (int k = 0; k < group.Count; k++) { var item = group[k]; if (item is MailItemViewModel singleMailItemViewModel && singleMailItemViewModel.UniqueId == mailCopy.UniqueId) { if (k + 1 < group.Count) { return group[k + 1] as MailItemViewModel; } else if (i + 1 < groupCount) { return _mailItemSource[i + 1][0] as MailItemViewModel; } else { return null; } } else if (item is ThreadMailItemViewModel threadMailItemViewModel && threadMailItemViewModel.HasUniqueId(mailCopy.UniqueId)) { var singleItemViewModel = threadMailItemViewModel.GetItemById(mailCopy.UniqueId) as MailItemViewModel; if (singleItemViewModel == null) return null; var singleItemIndex = threadMailItemViewModel.ThreadItems.IndexOf(singleItemViewModel); if (singleItemIndex + 1 < threadMailItemViewModel.ThreadItems.Count) { return threadMailItemViewModel.ThreadItems[singleItemIndex + 1] as MailItemViewModel; } else if (i + 1 < groupCount) { return _mailItemSource[i + 1][0] as MailItemViewModel; } else { return null; } } } } return null; } catch (Exception ex) { Log.Warning(ex, "Failed to find the next item to select."); } return null; } public async Task RemoveAsync(MailCopy removeItem) { // This item doesn't exist in the list. if (!MailCopyIdHashSet.Contains(removeItem.UniqueId)) return; // Check all items for whether this item should be threaded with them. bool shouldExit = false; var groupCount = _mailItemSource.Count; for (int i = 0; i < groupCount; i++) { if (shouldExit) break; var group = _mailItemSource[i]; for (int k = 0; k < group.Count; k++) { var item = group[k]; if (item is ThreadMailItemViewModel threadMailItemViewModel && threadMailItemViewModel.HasUniqueId(removeItem.UniqueId)) { var removalItem = threadMailItemViewModel.GetItemById(removeItem.UniqueId); if (removalItem == null) return; // Threads' Id is equal to the last item they hold. // We can't do Id check here because that'd remove the whole thread. /* Remove item from the thread. * If thread had 1 item inside: * -> Remove the thread and insert item as single item. * If thread had 0 item inside: * -> Remove the thread. */ var oldGroupKey = GetGroupingKey(threadMailItemViewModel); await ExecuteUIThread(() => { threadMailItemViewModel.RemoveCopyItem(removalItem); }); if (threadMailItemViewModel.ThreadItems.Count == 1) { // Convert to single item. var singleViewModel = threadMailItemViewModel.GetSingleItemViewModel(); var groupKey = GetGroupingKey(singleViewModel); await ExecuteUIThread(() => { RemoveItemInternal(group, threadMailItemViewModel); InsertItemInternal(groupKey, singleViewModel); }); // If thread->single conversion is being done, we should ignore it for non-draft items. // eg. Deleting a reply message from draft folder. Single non-draft item should not be re-added. if (PruneSingleNonDraftItems && !singleViewModel.IsDraft) { // This item should not be here anymore. // It's basically a reply mail in Draft folder. var newGroup = _mailItemSource.FirstGroupByKeyOrDefault(groupKey); if (newGroup != null) { await ExecuteUIThread(() => { RemoveItemInternal(newGroup, singleViewModel); }); } } } else if (threadMailItemViewModel.ThreadItems.Count == 0) { await ExecuteUIThread(() => { RemoveItemInternal(group, threadMailItemViewModel); }); } else { // Item inside the thread is removed. await ExecuteUIThread(() => { threadMailItemViewModel.ThreadItems.Remove(removalItem); }); UpdateUniqueIdHashes(removalItem, false); } shouldExit = true; break; } else if (item.UniqueId == removeItem.UniqueId) { await ExecuteUIThread(() => { RemoveItemInternal(group, item); }); shouldExit = true; break; } } } } private async Task ExecuteUIThread(Action action) => await CoreDispatcher?.ExecuteOnUIThread(action); }