//
// DateField.cs: text entry for date
//
// Author: Barry Nolte
//
// Licensed under the MIT license
//
using System;
using System.Globalization;
using System.Linq;
using System.Text;
namespace Terminal.Gui;
///
/// Simple Date editing
///
///
/// The provides date editing functionality with mouse support.
///
public class DateField : TextField {
private const string RIGHT_TO_LEFT_MARK = "\u200f";
DateTime _date;
private string _separator;
private string _format;
private readonly int _dateFieldLength = 12;
private int FormatLength => StandardizeDateFormat (_format).Trim ().Length;
///
/// DateChanged event, raised when the property has changed.
///
///
/// This event is raised when the property changes.
///
///
/// The passed event arguments containing the old value, new value, and format string.
///
public event EventHandler> DateChanged;
///
/// Initializes a new instance of using layout.
///
public DateField () : this (DateTime.MinValue) { }
///
/// Initializes a new instance of using layout.
///
///
public DateField (DateTime date) : base ("")
{
Width = _dateFieldLength;
SetInitialProperties (date);
}
void SetInitialProperties (DateTime date)
{
_format = $" {StandardizeDateFormat (Culture.DateTimeFormat.ShortDatePattern)}";
_separator = GetDataSeparator (Culture.DateTimeFormat.DateSeparator);
Date = date;
CursorPosition = 1;
TextChanging += DateField_Changing;
// Things this view knows how to do
AddCommand (Command.DeleteCharRight, () => {
DeleteCharRight ();
return true;
});
AddCommand (Command.DeleteCharLeft, () => {
DeleteCharLeft (false);
return true;
});
AddCommand (Command.LeftHome, () => MoveHome ());
AddCommand (Command.Left, () => MoveLeft ());
AddCommand (Command.RightEnd, () => MoveEnd ());
AddCommand (Command.Right, () => MoveRight ());
// Default keybindings for this view
KeyBindings.Add (KeyCode.Delete, Command.DeleteCharRight);
KeyBindings.Add (Key.D.WithCtrl, Command.DeleteCharRight);
KeyBindings.Add (Key.Backspace, Command.DeleteCharLeft);
KeyBindings.Add (Key.D.WithAlt, Command.DeleteCharLeft);
KeyBindings.Add (Key.Home, Command.LeftHome);
KeyBindings.Add (Key.A.WithCtrl, Command.LeftHome);
KeyBindings.Add (Key.CursorLeft, Command.Left);
KeyBindings.Add (Key.B.WithCtrl, Command.Left);
KeyBindings.Add (Key.End, Command.RightEnd);
KeyBindings.Add (Key.E.WithCtrl, Command.RightEnd);
KeyBindings.Add (Key.CursorRight, Command.Right);
KeyBindings.Add (Key.F.WithCtrl, Command.Right);
}
///
public override bool OnProcessKeyDown (Key a)
{
// Ignore non-numeric characters.
if (a >= Key.D0 && a <= Key.D9) {
if (!ReadOnly) {
if (SetText ((Rune)a)) {
IncCursorPosition ();
}
}
return true;
}
return false;
}
void DateField_Changing (object sender, TextChangingEventArgs e)
{
try {
int spaces = 0;
for (int i = 0; i < e.NewText.Length; i++) {
if (e.NewText [i] == ' ') {
spaces++;
} else {
break;
}
}
spaces += FormatLength;
string trimedText = e.NewText [..spaces];
spaces -= FormatLength;
trimedText = trimedText.Replace (new string (' ', spaces), " ");
var date = Convert.ToDateTime (trimedText).ToString (_format.Trim ());
if ($" {date}" != e.NewText) {
e.NewText = $" {date}".Replace (RIGHT_TO_LEFT_MARK, "");
}
AdjCursorPosition (CursorPosition, true);
} catch (Exception) {
e.Cancel = true;
}
}
///
/// Gets or sets the date of the .
///
///
///
public DateTime Date {
get => _date;
set {
if (ReadOnly) {
return;
}
var oldData = _date;
_date = value;
Text = value.ToString (" " + StandardizeDateFormat (_format.Trim ()))
.Replace (RIGHT_TO_LEFT_MARK, "");
var args = new DateTimeEventArgs (oldData, value, _format);
if (oldData != value) {
OnDateChanged (args);
}
}
}
///
/// CultureInfo for date. The default is CultureInfo.CurrentCulture.
///
public CultureInfo Culture {
get => CultureInfo.CurrentCulture;
set {
if (value is not null) {
CultureInfo.CurrentCulture = value;
_separator = GetDataSeparator (value.DateTimeFormat.DateSeparator);
_format = " " + StandardizeDateFormat (value.DateTimeFormat.ShortDatePattern);
Text = Date.ToString (_format).Replace (RIGHT_TO_LEFT_MARK, "");
}
}
}
///
public override int CursorPosition {
get => base.CursorPosition;
set => base.CursorPosition = Math.Max (Math.Min (value, FormatLength), 1);
}
bool SetText (Rune key)
{
if (CursorPosition > FormatLength) {
CursorPosition = FormatLength;
return false;
} else if (CursorPosition < 1) {
CursorPosition = 1;
return false;
}
var text = Text.EnumerateRunes ().ToList ();
var newText = text.GetRange (0, CursorPosition);
newText.Add (key);
if (CursorPosition < FormatLength) {
newText = [.. newText, .. text.GetRange (CursorPosition + 1, text.Count - (CursorPosition + 1))];
}
return SetText (StringExtensions.ToString (newText));
}
bool SetText (string text)
{
if (string.IsNullOrEmpty (text)) {
return false;
}
text = NormalizeFormat (text);
string [] vals = text.Split (_separator);
for (var i = 0; i < vals.Length; i++) {
if (vals [i].Contains (RIGHT_TO_LEFT_MARK)) {
vals [i] = vals [i].Replace (RIGHT_TO_LEFT_MARK, "");
}
}
string [] frm = _format.Split (_separator);
int year;
int month;
int day;
int idx = GetFormatIndex (frm, "y");
if (Int32.Parse (vals [idx]) < 1) {
year = 1;
vals [idx] = "1";
} else {
year = Int32.Parse (vals [idx]);
}
idx = GetFormatIndex (frm, "M");
if (Int32.Parse (vals [idx]) < 1) {
month = 1;
vals [idx] = "1";
} else if (Int32.Parse (vals [idx]) > 12) {
month = 12;
vals [idx] = "12";
} else {
month = Int32.Parse (vals [idx]);
}
idx = GetFormatIndex (frm, "d");
if (Int32.Parse (vals [idx]) < 1) {
day = 1;
vals [idx] = "1";
} else if (Int32.Parse (vals [idx]) > 31) {
day = DateTime.DaysInMonth (year, month);
vals [idx] = day.ToString ();
} else {
day = Int32.Parse (vals [idx]);
}
string d = GetDate (month, day, year, frm);
DateTime date;
try {
date = Convert.ToDateTime (d);
} catch (Exception) {
return false;
}
Date = date;
return true;
}
string NormalizeFormat (string text, string fmt = null, string sepChar = null)
{
if (string.IsNullOrEmpty (fmt)) {
fmt = _format;
}
if (string.IsNullOrEmpty (sepChar)) {
sepChar = _separator;
}
if (fmt.Length != text.Length) {
return text;
}
var fmtText = text.ToCharArray ();
for (int i = 0; i < text.Length; i++) {
var c = fmt [i];
if (c.ToString () == sepChar && text [i].ToString () != sepChar) {
fmtText [i] = c;
}
}
return new string (fmtText);
}
string GetDate (int month, int day, int year, string [] fm)
{
string date = " ";
for (int i = 0; i < fm.Length; i++) {
if (fm [i].Contains ('M')) {
date += $"{month,2:00}";
} else if (fm [i].Contains ('d')) {
date += $"{day,2:00}";
} else {
date += $"{year,4:0000}";
}
if (i < 2) {
date += $"{_separator}";
}
}
return date;
}
static int GetFormatIndex (string [] fm, string t)
{
int idx = -1;
for (int i = 0; i < fm.Length; i++) {
if (fm [i].Contains (t)) {
idx = i;
break;
}
}
return idx;
}
private string GetDataSeparator (string separator)
{
var sepChar = separator.Trim ();
if (sepChar.Length > 1 && sepChar.Contains (RIGHT_TO_LEFT_MARK)) {
sepChar = sepChar.Replace (RIGHT_TO_LEFT_MARK, "");
}
return sepChar;
}
// Converts various date formats to a uniform 10-character format.
// This aids in simplifying the handling of single-digit months and days,
// and reduces the number of distinct date formats to maintain.
private static string StandardizeDateFormat (string format) =>
format switch {
"MM/dd/yyyy" => "MM/dd/yyyy",
"yyyy-MM-dd" => "yyyy-MM-dd",
"yyyy/MM/dd" => "yyyy/MM/dd",
"dd/MM/yyyy" => "dd/MM/yyyy",
"d?/M?/yyyy" => "dd/MM/yyyy",
"dd.MM.yyyy" => "dd.MM.yyyy",
"dd-MM-yyyy" => "dd-MM-yyyy",
"dd/MM yyyy" => "dd/MM/yyyy",
"d. M. yyyy" => "dd.MM.yyyy",
"yyyy.MM.dd" => "yyyy.MM.dd",
"g yyyy/M/d" => "yyyy/MM/dd",
"d/M/yyyy" => "dd/MM/yyyy",
"d?/M?/yyyy g" => "dd/MM/yyyy",
"d-M-yyyy" => "dd-MM-yyyy",
"d.MM.yyyy" => "dd.MM.yyyy",
"d.MM.yyyy '?'." => "dd.MM.yyyy",
"M/d/yyyy" => "MM/dd/yyyy",
"d. M. yyyy." => "dd.MM.yyyy",
"d.M.yyyy." => "dd.MM.yyyy",
"g yyyy-MM-dd" => "yyyy-MM-dd",
"d.M.yyyy" => "dd.MM.yyyy",
"d/MM/yyyy" => "dd/MM/yyyy",
"yyyy/M/d" => "yyyy/MM/dd",
"dd. MM. yyyy." => "dd.MM.yyyy",
"yyyy. MM. dd." => "yyyy.MM.dd",
"yyyy. M. d." => "yyyy.MM.dd",
"d. MM. yyyy" => "dd.MM.yyyy",
_ => "dd/MM/yyyy"
};
void IncCursorPosition ()
{
if (CursorPosition >= FormatLength) {
CursorPosition = FormatLength;
return;
}
CursorPosition++;
AdjCursorPosition (CursorPosition);
}
void DecCursorPosition ()
{
if (CursorPosition <= 1) {
CursorPosition = 1;
return;
}
CursorPosition--;
AdjCursorPosition (CursorPosition, false);
}
void AdjCursorPosition (int point, bool increment = true)
{
var newPoint = point;
if (point > FormatLength) {
newPoint = FormatLength;
}
if (point < 1) {
newPoint = 1;
}
if (newPoint != point) {
CursorPosition = newPoint;
}
while (Text [CursorPosition].ToString () == _separator) {
if (increment) {
CursorPosition++;
} else {
CursorPosition--;
}
}
}
bool MoveRight ()
{
ClearAllSelection ();
IncCursorPosition ();
return true;
}
new bool MoveEnd ()
{
ClearAllSelection ();
CursorPosition = FormatLength;
return true;
}
bool MoveLeft ()
{
ClearAllSelection ();
DecCursorPosition ();
return true;
}
bool MoveHome ()
{
// Home, C-A
ClearAllSelection ();
CursorPosition = 1;
return true;
}
///
public override void DeleteCharLeft (bool useOldCursorPos = true)
{
if (ReadOnly) {
return;
}
ClearAllSelection ();
SetText ((Rune)'0');
DecCursorPosition ();
return;
}
///
public override void DeleteCharRight ()
{
if (ReadOnly) {
return;
}
ClearAllSelection ();
SetText ((Rune)'0');
return;
}
///
public override bool MouseEvent (MouseEvent ev)
{
var result = base.MouseEvent (ev);
if (result && SelectedLength == 0 && ev.Flags.HasFlag (MouseFlags.Button1Pressed)) {
int point = ev.X;
AdjCursorPosition (point, true);
}
return result;
}
///
/// Event firing method for the event.
///
/// Event arguments
public virtual void OnDateChanged (DateTimeEventArgs args) => DateChanged?.Invoke (this, args);
}