1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-28 03:57:43 +02:00
bitwarden-mobile/src/Core/Utilities/DateTimeConverter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.3 KiB
C#
Raw Normal View History

2019-05-02 20:53:45 +02:00
using System;
using Bit.App.Abstractions;
using Bit.Core.Utilities;
2023-09-29 16:02:19 +02:00
using Microsoft.Maui.Controls;
using Microsoft.Maui;
2019-05-02 20:53:45 +02:00
namespace Bit.App.Utilities
{
public class DateTimeConverter : IValueConverter
{
public string Format { get; set; } = "{0} {1}";
private readonly ILocalizeService _localizeService;
public DateTimeConverter()
{
_localizeService = ServiceContainer.Resolve<ILocalizeService>("localizeService");
}
2019-05-02 20:53:45 +02:00
public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
if (targetType != typeof(string))
2019-05-02 20:53:45 +02:00
{
throw new InvalidOperationException("The target must be a string.");
}
if (value == null)
2019-05-02 20:53:45 +02:00
{
return string.Empty;
}
2019-05-14 15:01:07 +02:00
var d = ((DateTime)value).ToLocalTime();
return string.Format(Format,
_localizeService.GetLocaleShortDate(d),
_localizeService.GetLocaleShortTime(d));
2019-05-02 20:53:45 +02:00
}
public object ConvertBack(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
throw new NotSupportedException();
}
}
}