mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
5809c80011
* start trying to add a different first day of the week based on localization. * add first day of week parameter and get weekday local from .net * fix some issues * extend demo * remove no longed needed Locale parameter * fix range for selection * add german localization * add entry for API section * remove obsolet things from the react ant documentation * add description to chart documentation * translate general configuration to english. * code cleanup * use LocalProvider to get first day of week. * use localeprovider instead of date picker localization * remove no longer used parameter * delete no longer used interface * change from enum to string due to parsing issue. * add missing formats and use culture info from localprovider * correct locales * us Sunday as a default * remove no longer used culture info parameter * adjust locales * add parameter for Locale instead of directly accessing it. * add inheritance to access locale * typo * readd culture info parameter * fixes for locale jsons * adjust demo and api * small adjustments on docs, set monday in chinese as first day of the week. * use locale in calendar as well. * adjust docs * use enum * adjust demo * adjust for different starting date. * add defaults for DatePickerLocale * add short week days to locale files * use days from locale file * code cleanup use consts instead of magic numbers, add code comment and use dayOfWeek As param instead of the whole locale object. Remove no longed used method. * not sure about the chinese translation so I remove them * Revert "not sure about the chinese translation so I remove them" This reverts commit 54017513c7b684494cf06184b4051a4dcfc43850.
278 lines
8.1 KiB
C#
278 lines
8.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public partial class RangePicker<TValue> : DatePickerBase<TValue>
|
|
{
|
|
[Parameter]
|
|
public EventCallback<DateRangeChangedEventArgs> OnChange { get; set; }
|
|
|
|
public RangePicker()
|
|
{
|
|
IsRange = true;
|
|
|
|
DisabledDate = (date) =>
|
|
{
|
|
var array = Value as Array;
|
|
|
|
if (_pickerStatus[0]._hadSelectValue && _inputEnd.IsOnFocused)
|
|
{
|
|
DateTime? value = null;
|
|
GetIfNotNull(Value, 0, notNullValue =>
|
|
{
|
|
value = notNullValue;
|
|
});
|
|
|
|
if (value != null)
|
|
{
|
|
return DateHelper.FormatDateByPicker(date.Date, Picker) < DateHelper.FormatDateByPicker(((DateTime)value).Date, Picker);
|
|
}
|
|
}
|
|
if (_pickerStatus[1]._hadSelectValue && _inputStart.IsOnFocused)
|
|
{
|
|
DateTime? value = null;
|
|
GetIfNotNull(Value, 1, notNullValue =>
|
|
{
|
|
value = notNullValue;
|
|
});
|
|
|
|
if (value != null)
|
|
{
|
|
return DateHelper.FormatDateByPicker(date.Date, Picker) > DateHelper.FormatDateByPicker(((DateTime)value).Date, Picker);
|
|
}
|
|
}
|
|
|
|
return false;
|
|
};
|
|
}
|
|
|
|
protected void OnInput(ChangeEventArgs args, int index = 0)
|
|
{
|
|
if (args == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var array = Value as Array;
|
|
|
|
if (BindConverter.TryConvertTo(args.Value.ToString(), CultureInfo, out DateTime changeValue))
|
|
{
|
|
array.SetValue(changeValue, index);
|
|
PickerValues[index] = changeValue;
|
|
|
|
StateHasChanged();
|
|
}
|
|
|
|
UpdateCurrentValueAsString();
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
|
|
if (Value != null)
|
|
{
|
|
GetIfNotNull(Value, 0, notNullValue =>
|
|
{
|
|
ChangeValue(notNullValue, 0);
|
|
});
|
|
|
|
GetIfNotNull(Value, 1, notNullValue =>
|
|
{
|
|
ChangeValue(notNullValue, 1);
|
|
});
|
|
}
|
|
else
|
|
{
|
|
Value = CreateInstance();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get value by picker index
|
|
/// </summary>
|
|
/// <param name="index"></param>
|
|
/// <returns></returns>
|
|
public override DateTime? GetIndexValue(int index)
|
|
{
|
|
if (_pickerStatus[index]._hadSelectValue)
|
|
{
|
|
var array = Value as Array;
|
|
var indexValue = array.GetValue(index);
|
|
|
|
if (indexValue == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return Convert.ToDateTime(indexValue, CultureInfo);
|
|
}
|
|
else if (DefaultValues[index] != null)
|
|
{
|
|
return (DateTime)DefaultValues[index];
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public override void ChangeValue(DateTime value, int index = 0)
|
|
{
|
|
var array = Value as Array;
|
|
|
|
array.SetValue(value, index);
|
|
|
|
_pickerStatus[index]._hadSelectValue = true;
|
|
_pickerStatus[index]._currentShowHadSelectValue = true;
|
|
|
|
UpdateCurrentValueAsString(index);
|
|
|
|
if (!IsShowTime && Picker != DatePickerType.Time)
|
|
{
|
|
if (_pickerStatus[0]._currentShowHadSelectValue && _pickerStatus[1]._currentShowHadSelectValue)
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
|
|
if (OnChange.HasDelegate)
|
|
{
|
|
OnChange.InvokeAsync(new DateRangeChangedEventArgs
|
|
{
|
|
Dates = new DateTime?[] { array.GetValue(0) as DateTime?, array.GetValue(1) as DateTime? },
|
|
DateStrings = new string[] { GetInputValue(0), GetInputValue(1) }
|
|
});
|
|
}
|
|
}
|
|
|
|
public override void ClearValue(int index = 0)
|
|
{
|
|
_isSetPicker = false;
|
|
|
|
var array = CurrentValue as Array;
|
|
array.SetValue(default, 0);
|
|
array.SetValue(default, 1);
|
|
|
|
_pickerStatus[0]._hadSelectValue = false;
|
|
_pickerStatus[1]._hadSelectValue = false;
|
|
|
|
Close();
|
|
}
|
|
|
|
private async Task OnInputClick(int index)
|
|
{
|
|
await _dropDown.Show();
|
|
|
|
// clear status
|
|
_pickerStatus[0]._currentShowHadSelectValue = false;
|
|
_pickerStatus[1]._currentShowHadSelectValue = false;
|
|
|
|
if (index == 0)
|
|
{
|
|
// change start picker value
|
|
if (!_inputStart.IsOnFocused && _pickerStatus[index]._hadSelectValue)
|
|
{
|
|
GetIfNotNull(Value, index, notNullValue =>
|
|
{
|
|
ChangePickerValue(notNullValue, index);
|
|
});
|
|
}
|
|
|
|
ChangeFocusTarget(true, false);
|
|
}
|
|
else
|
|
{
|
|
// change end picker value
|
|
if (!_inputEnd.IsOnFocused && _pickerStatus[index]._hadSelectValue)
|
|
{
|
|
GetIfNotNull(Value, index, notNullValue =>
|
|
{
|
|
ChangePickerValue(notNullValue, index);
|
|
});
|
|
}
|
|
|
|
ChangeFocusTarget(false, true);
|
|
}
|
|
}
|
|
|
|
private void GetIfNotNull(TValue value, int index, Action<DateTime> notNullAction)
|
|
{
|
|
var array = value as Array;
|
|
var indexValue = array.GetValue(index);
|
|
|
|
if (!_isNullable)
|
|
{
|
|
DateTime dateTime = Convert.ToDateTime(indexValue, CultureInfo);
|
|
if (dateTime != DateTime.MinValue)
|
|
{
|
|
notNullAction?.Invoke(dateTime);
|
|
}
|
|
}
|
|
if (_isNullable && indexValue != null)
|
|
{
|
|
notNullAction?.Invoke(Convert.ToDateTime(indexValue, CultureInfo));
|
|
}
|
|
}
|
|
|
|
private TValue CreateInstance()
|
|
{
|
|
if (_isNullable)
|
|
{
|
|
return (TValue)Array.CreateInstance(typeof(DateTime?), 2).Clone();
|
|
}
|
|
else
|
|
{
|
|
return (TValue)Array.CreateInstance(typeof(DateTime), 2).Clone();
|
|
}
|
|
}
|
|
|
|
protected override void UpdateCurrentValueAsString(int index = 0)
|
|
{
|
|
if (EditContext != null)
|
|
{
|
|
CurrentValueAsString = $"{GetInputValue(0)},{GetInputValue(1)}";
|
|
}
|
|
}
|
|
|
|
protected override bool TryParseValueFromString(string value, out TValue result, out string validationErrorMessage)
|
|
{
|
|
result = default;
|
|
validationErrorMessage = $"{FieldIdentifier.FieldName} field isn't valid.";
|
|
|
|
if (string.IsNullOrEmpty(value))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
string[] values = value.Split(",");
|
|
|
|
if (values.Length != 2)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var success0 = BindConverter.TryConvertTo<DateTime>(values[0], CultureInfo, out var dateTime0);
|
|
var success1 = BindConverter.TryConvertTo<DateTime>(values[1], CultureInfo, out var dateTime1);
|
|
|
|
if (success0 && success1)
|
|
{
|
|
result = CreateInstance();
|
|
|
|
var array = result as Array;
|
|
|
|
array.SetValue(dateTime0, 0);
|
|
array.SetValue(dateTime1, 1);
|
|
|
|
validationErrorMessage = null;
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|