2019-03-04 04:24:19 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-11-17 05:05:22 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
2023-10-28 13:52:33 +00:00
|
|
|
|
using System.Globalization;
|
2019-03-02 04:40:43 +00:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-11-17 05:05:22 +00:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Overlays.Settings;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Components
|
|
|
|
|
{
|
|
|
|
|
public partial class DateTextBox : SettingsTextBox
|
|
|
|
|
{
|
2023-10-26 07:46:04 +00:00
|
|
|
|
private readonly BindableWithCurrent<DateTimeOffset> current = new BindableWithCurrent<DateTimeOffset>(DateTimeOffset.Now);
|
2023-07-24 11:20:52 +00:00
|
|
|
|
|
|
|
|
|
public new Bindable<DateTimeOffset>? Current
|
2018-11-17 05:05:22 +00:00
|
|
|
|
{
|
2020-10-06 08:18:41 +00:00
|
|
|
|
get => current;
|
2023-10-17 08:48:51 +00:00
|
|
|
|
set => current.Current = value!;
|
2018-11-17 05:05:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DateTextBox()
|
|
|
|
|
{
|
2021-10-01 17:54:10 +00:00
|
|
|
|
base.Current = new Bindable<string>(string.Empty);
|
2020-09-02 04:17:17 +00:00
|
|
|
|
|
2023-07-24 11:20:52 +00:00
|
|
|
|
current.BindValueChanged(dto =>
|
2023-10-28 13:52:33 +00:00
|
|
|
|
base.Current.Value = dto.NewValue.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ", DateTimeFormatInfo.InvariantInfo), true);
|
2023-07-24 11:20:52 +00:00
|
|
|
|
|
2022-06-24 12:25:23 +00:00
|
|
|
|
((OsuTextBox)Control).OnCommit += (sender, _) =>
|
2018-11-17 05:05:22 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2023-10-28 13:52:33 +00:00
|
|
|
|
current.Value = DateTimeOffset.Parse(sender.Text, DateTimeFormatInfo.InvariantInfo);
|
2018-11-17 05:05:22 +00:00
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
2019-06-13 08:04:57 +00:00
|
|
|
|
// reset textbox content to its last valid state on a parse failure.
|
2020-10-06 08:18:41 +00:00
|
|
|
|
current.TriggerChange();
|
2018-11-17 05:05:22 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|