using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using Microsoft.AspNetCore.Components; namespace AntDesign { public partial class RangePicker : DatePickerBase { public RangePicker() { IsRange = true; Value = new DateTime[2]; DisabledDate = (date) => { if (_pickerStatus[0]._hadSelectValue && _inputEnd.IsOnFocused) { return DateHelper.FormatDateByPicker(date.Date, Picker) < DateHelper.FormatDateByPicker(Value[0].Date, Picker); } if (_pickerStatus[1]._hadSelectValue && _inputStart.IsOnFocused) { return DateHelper.FormatDateByPicker(date.Date, Picker) > DateHelper.FormatDateByPicker(Value[1].Date, Picker); } return false; }; } protected void OnInput(ChangeEventArgs args, int index = 0) { if (args == null) { return; } if (DateTime.TryParse(args.Value.ToString(), out DateTime changeValue)) { Value[index] = changeValue; _pickerValues[index] = changeValue; StateHasChanged(); } UpdateCurrentValueAsString(index); } /// /// Get value by picker index /// /// /// public override DateTime? GetIndexValue(int index) { if (_pickerStatus[index]._hadSelectValue) { return Value[index]; } else if (_defaultValues[index] != null) { return (DateTime)_defaultValues[index]; } else { return null; } } public override void ChangeValue(DateTime value, int index = 0) { Value[index] = value; _pickerStatus[index]._hadSelectValue = true; UpdateCurrentValueAsString(index); if (IsRange && !IsShowTime && Picker != DatePickerType.Time) { if (_pickerStatus[0]._hadSelectValue && _pickerStatus[1]._hadSelectValue) { Close(); } } else if (!IsShowTime && Picker != DatePickerType.Time) { Close(); } } private async Task OnInputClick(int index) { await _dropDown.Show(); if (index == 0) { // change start picker value if (!_inputStart.IsOnFocused && _pickerStatus[index]._hadSelectValue) { ChangePickerValue(Value[index], index); } ChangeFocusTarget(true, false); } else { // change end picker value if (!_inputEnd.IsOnFocused && _pickerStatus[index]._hadSelectValue) { ChangePickerValue(Value[index], index); } ChangeFocusTarget(false, true); } } public override void ClearValue(int index = 0) { _isSetPicker = false; _pickerStatus[0]._hadSelectValue = false; _pickerStatus[1]._hadSelectValue = false; UpdateCurrentValueAsString(); Close(); } } }