mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
6a6a12175f
* fix(module:rangePicker): year & month skip * fix(module:rangePicker): extra space removed on 2nd picker * fix(module:rangePicker): when ShowTime, click on OK moves to other picker * fix(module:rangePicker): adjust year skip button * fix(module:rangePicker): focus issue resolution * fix(module:rangePicker): remove incorrect value from input Co-authored-by: James Yeung <shunjiey@hotmail.com>
76 lines
2.5 KiB
C#
76 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign.Internal
|
|
{
|
|
public partial class DatePickerDatetimePanel<TValue> : DatePickerPanelBase<TValue>
|
|
{
|
|
[Parameter]
|
|
public bool ShowToday { get; set; } = false;
|
|
|
|
[Parameter]
|
|
public string ShowTimeFormat { get; set; }
|
|
|
|
[Parameter]
|
|
public string Format { get; set; }
|
|
|
|
[Parameter]
|
|
public Func<DateTime, int[]> DisabledHours { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public Func<DateTime, int[]> DisabledMinutes { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public Func<DateTime, int[]> DisabledSeconds { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public Func<DateTime, DatePickerDisabledTime> DisabledTime { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public EventCallback OnOkClick { get; set; }
|
|
|
|
private DatePickerDisabledTime GetDisabledTime()
|
|
{
|
|
List<int> disabledHours = new List<int>();
|
|
List<int> disabledMinutes = new List<int>();
|
|
List<int> disabledSeconds = new List<int>();
|
|
DatePickerDisabledTime userDisabledTime = null;
|
|
if (Value is not null)
|
|
{
|
|
if (DisabledHours is not null)
|
|
{
|
|
disabledHours.AddRange(DisabledHours(Value.Value));
|
|
}
|
|
if (DisabledMinutes is not null)
|
|
{
|
|
disabledMinutes.AddRange(DisabledMinutes(Value.Value));
|
|
}
|
|
if (DisabledSeconds is not null)
|
|
{
|
|
disabledSeconds.AddRange(DisabledSeconds(Value.Value));
|
|
}
|
|
userDisabledTime = DisabledTime?.Invoke(Value ?? DateTime.Now);
|
|
}
|
|
|
|
if (userDisabledTime != null)
|
|
{
|
|
if (userDisabledTime._disabledHours != null)
|
|
{
|
|
disabledHours.AddRange(userDisabledTime._disabledHours);
|
|
}
|
|
if (userDisabledTime._disabledMinutes != null)
|
|
{
|
|
disabledMinutes.AddRange(userDisabledTime._disabledMinutes);
|
|
}
|
|
if (userDisabledTime._disabledSeconds != null)
|
|
{
|
|
disabledSeconds.AddRange(userDisabledTime._disabledSeconds);
|
|
}
|
|
}
|
|
|
|
return new DatePickerDisabledTime(disabledHours.ToArray(), disabledMinutes.ToArray(), disabledSeconds.ToArray());
|
|
}
|
|
}
|
|
}
|