* feat: Enhanced sender avatars with gravatar and favicons integration * chore: Remove unused known companies thumbnails * feat(thumbnail): add IThumbnailService and refactor usage - Introduced a new interface `IThumbnailService` for handling thumbnail-related functionalities. - Registered `IThumbnailService` with its implementation `ThumbnailService` in the service container. - Updated `NotificationBuilder` to use an instance of `IThumbnailService` instead of static methods. - Refactored `ThumbnailService` from a static class to a regular class with instance methods and variables. - Modified `ImagePreviewControl` to utilize the new `IThumbnailService` instance. - Completed integration of `IThumbnailService` in the application by registering it in `App.xaml.cs`. * style: Show favicons as squares - Changed `hintCrop` in `NotificationBuilder` to `None` for app logo display. - Added `FaviconSquircle`, `FaviconImage`, and `isFavicon` to `ImagePreviewControl` for favicon handling. - Updated `UpdateInformation` method to manage favicon visibility. - Introduced `GetBitmapImageAsync` for converting Base64 to Bitmap images. - Enhanced XAML to include `FaviconSquircle` for improved UI appearance. * refactor thumbnail service * Removed old code and added clear method * added prefetch function * Change key from host to email * Remove redundant code * Test event * Fixed an issue with the thumbnail updated event. * Fix cutted favicons * exclude some domain from favicons * add yandex.ru * fix buttons in settings * remove prefetch method * Added thumbnails propagation to mailRenderingPage * Revert MailItemViewModel to object * Remove redundant code * spaces * await load parameter added * fix spaces * fix case sensativity for mail list thumbnails * change duckdns to google * Some cleanup. --------- Co-authored-by: Aleh Khantsevich <aleh.khantsevich@gmail.com> Co-authored-by: Burak Kaan Köse <bkaankose@outlook.com>
231 lines
8.8 KiB
C#
231 lines
8.8 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Fernandezja.ColorHashSharp;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Windows.UI;
|
|
using Windows.UI.Xaml;
|
|
using Windows.UI.Xaml.Controls;
|
|
using Windows.UI.Xaml.Media;
|
|
using Windows.UI.Xaml.Media.Imaging;
|
|
using Windows.UI.Xaml.Shapes;
|
|
using Wino.Core.Domain.Interfaces;
|
|
|
|
namespace Wino.Controls;
|
|
|
|
public partial class ImagePreviewControl : Control
|
|
{
|
|
private const string PART_EllipseInitialsGrid = "EllipseInitialsGrid";
|
|
private const string PART_InitialsTextBlock = "InitialsTextBlock";
|
|
private const string PART_KnownHostImage = "KnownHostImage";
|
|
private const string PART_Ellipse = "Ellipse";
|
|
private const string PART_FaviconSquircle = "FaviconSquircle";
|
|
private const string PART_FaviconImage = "FaviconImage";
|
|
|
|
#region Dependency Properties
|
|
|
|
public static readonly DependencyProperty FromNameProperty = DependencyProperty.Register(nameof(FromName), typeof(string), typeof(ImagePreviewControl), new PropertyMetadata(string.Empty, OnInformationChanged));
|
|
public static readonly DependencyProperty FromAddressProperty = DependencyProperty.Register(nameof(FromAddress), typeof(string), typeof(ImagePreviewControl), new PropertyMetadata(string.Empty, OnInformationChanged));
|
|
public static readonly DependencyProperty SenderContactPictureProperty = DependencyProperty.Register(nameof(SenderContactPicture), typeof(string), typeof(ImagePreviewControl), new PropertyMetadata(string.Empty, new PropertyChangedCallback(OnInformationChanged)));
|
|
public static readonly DependencyProperty ThumbnailUpdatedEventProperty = DependencyProperty.Register(nameof(ThumbnailUpdatedEvent), typeof(bool), typeof(ImagePreviewControl), new PropertyMetadata(false, new PropertyChangedCallback(OnInformationChanged)));
|
|
|
|
public bool ThumbnailUpdatedEvent
|
|
{
|
|
get { return (bool)GetValue(ThumbnailUpdatedEventProperty); }
|
|
set { SetValue(ThumbnailUpdatedEventProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets base64 string of the sender contact picture.
|
|
/// </summary>
|
|
public string SenderContactPicture
|
|
{
|
|
get { return (string)GetValue(SenderContactPictureProperty); }
|
|
set { SetValue(SenderContactPictureProperty, value); }
|
|
}
|
|
|
|
public string FromName
|
|
{
|
|
get { return (string)GetValue(FromNameProperty); }
|
|
set { SetValue(FromNameProperty, value); }
|
|
}
|
|
|
|
public string FromAddress
|
|
{
|
|
get { return (string)GetValue(FromAddressProperty); }
|
|
set { SetValue(FromAddressProperty, value); }
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Ellipse Ellipse;
|
|
private Grid InitialsGrid;
|
|
private TextBlock InitialsTextblock;
|
|
private Image KnownHostImage;
|
|
private Border FaviconSquircle;
|
|
private Image FaviconImage;
|
|
private CancellationTokenSource contactPictureLoadingCancellationTokenSource;
|
|
|
|
public ImagePreviewControl()
|
|
{
|
|
DefaultStyleKey = nameof(ImagePreviewControl);
|
|
}
|
|
|
|
protected override void OnApplyTemplate()
|
|
{
|
|
base.OnApplyTemplate();
|
|
|
|
InitialsGrid = GetTemplateChild(PART_EllipseInitialsGrid) as Grid;
|
|
InitialsTextblock = GetTemplateChild(PART_InitialsTextBlock) as TextBlock;
|
|
KnownHostImage = GetTemplateChild(PART_KnownHostImage) as Image;
|
|
Ellipse = GetTemplateChild(PART_Ellipse) as Ellipse;
|
|
FaviconSquircle = GetTemplateChild(PART_FaviconSquircle) as Border;
|
|
FaviconImage = GetTemplateChild(PART_FaviconImage) as Image;
|
|
|
|
UpdateInformation();
|
|
}
|
|
|
|
private static void OnInformationChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args)
|
|
{
|
|
if (obj is ImagePreviewControl control)
|
|
control.UpdateInformation();
|
|
}
|
|
|
|
private async void UpdateInformation()
|
|
{
|
|
if ((KnownHostImage == null && FaviconSquircle == null) || InitialsGrid == null || InitialsTextblock == null || (string.IsNullOrEmpty(FromName) && string.IsNullOrEmpty(FromAddress)))
|
|
return;
|
|
|
|
// Cancel active image loading if exists.
|
|
if (!contactPictureLoadingCancellationTokenSource?.IsCancellationRequested ?? false)
|
|
{
|
|
contactPictureLoadingCancellationTokenSource.Cancel();
|
|
}
|
|
|
|
string contactPicture = SenderContactPicture;
|
|
|
|
var isAvatarThumbnail = false;
|
|
|
|
if (string.IsNullOrEmpty(contactPicture) && !string.IsNullOrEmpty(FromAddress))
|
|
{
|
|
contactPicture = await App.Current.ThumbnailService.GetThumbnailAsync(FromAddress);
|
|
isAvatarThumbnail = true;
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(contactPicture))
|
|
{
|
|
if (isAvatarThumbnail && FaviconSquircle != null && FaviconImage != null)
|
|
{
|
|
// Show favicon in squircle
|
|
FaviconSquircle.Visibility = Visibility.Visible;
|
|
InitialsGrid.Visibility = Visibility.Collapsed;
|
|
KnownHostImage.Visibility = Visibility.Collapsed;
|
|
|
|
var bitmapImage = await GetBitmapImageAsync(contactPicture);
|
|
|
|
if (bitmapImage != null)
|
|
{
|
|
FaviconImage.Source = bitmapImage;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Show normal avatar (tondo)
|
|
FaviconSquircle.Visibility = Visibility.Collapsed;
|
|
KnownHostImage.Visibility = Visibility.Collapsed;
|
|
InitialsGrid.Visibility = Visibility.Visible;
|
|
contactPictureLoadingCancellationTokenSource = new CancellationTokenSource();
|
|
try
|
|
{
|
|
var brush = await GetContactImageBrushAsync(contactPicture);
|
|
|
|
if (brush != null)
|
|
{
|
|
if (!contactPictureLoadingCancellationTokenSource?.Token.IsCancellationRequested ?? false)
|
|
{
|
|
Ellipse.Fill = brush;
|
|
InitialsTextblock.Text = string.Empty;
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
Debugger.Break();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
FaviconSquircle.Visibility = Visibility.Collapsed;
|
|
KnownHostImage.Visibility = Visibility.Collapsed;
|
|
InitialsGrid.Visibility = Visibility.Visible;
|
|
|
|
var colorHash = new ColorHash();
|
|
var rgb = colorHash.Rgb(FromAddress);
|
|
|
|
Ellipse.Fill = new SolidColorBrush(Color.FromArgb(rgb.A, rgb.R, rgb.G, rgb.B));
|
|
InitialsTextblock.Text = ExtractInitialsFromName(FromName);
|
|
}
|
|
}
|
|
|
|
private static async Task<ImageBrush> GetContactImageBrushAsync(string base64)
|
|
{
|
|
// Load the image from base64 string.
|
|
|
|
var bitmapImage = await GetBitmapImageAsync(base64);
|
|
|
|
if (bitmapImage == null) return null;
|
|
|
|
return new ImageBrush() { ImageSource = bitmapImage };
|
|
}
|
|
|
|
private static async Task<BitmapImage> GetBitmapImageAsync(string base64)
|
|
{
|
|
try
|
|
{
|
|
var bitmapImage = new BitmapImage();
|
|
var imageArray = Convert.FromBase64String(base64);
|
|
var imageStream = new MemoryStream(imageArray);
|
|
var randomAccessImageStream = imageStream.AsRandomAccessStream();
|
|
randomAccessImageStream.Seek(0);
|
|
await bitmapImage.SetSourceAsync(randomAccessImageStream);
|
|
return bitmapImage;
|
|
}
|
|
catch (Exception) { }
|
|
|
|
return null;
|
|
}
|
|
|
|
public string ExtractInitialsFromName(string name)
|
|
{
|
|
// Change from name to from address in case of name doesn't exists.
|
|
if (string.IsNullOrEmpty(name))
|
|
{
|
|
name = FromAddress;
|
|
}
|
|
|
|
// first remove all: punctuation, separator chars, control chars, and numbers (unicode style regexes)
|
|
string initials = Regex.Replace(name, @"[\p{P}\p{S}\p{C}\p{N}]+", "");
|
|
|
|
// Replacing all possible whitespace/separator characters (unicode style), with a single, regular ascii space.
|
|
initials = Regex.Replace(initials, @"\p{Z}+", " ");
|
|
|
|
// Remove all Sr, Jr, I, II, III, IV, V, VI, VII, VIII, IX at the end of names
|
|
initials = Regex.Replace(initials.Trim(), @"\s+(?:[JS]R|I{1,3}|I[VX]|VI{0,3})$", "", RegexOptions.IgnoreCase);
|
|
|
|
// Extract up to 2 initials from the remaining cleaned name.
|
|
initials = Regex.Replace(initials, @"^(\p{L})[^\s]*(?:\s+(?:\p{L}+\s+(?=\p{L}))?(?:(\p{L})\p{L}*)?)?$", "$1$2").Trim();
|
|
|
|
if (initials.Length > 2)
|
|
{
|
|
// Worst case scenario, everything failed, just grab the first two letters of what we have left.
|
|
initials = initials.Substring(0, 2);
|
|
}
|
|
|
|
return initials.ToUpperInvariant();
|
|
}
|
|
}
|