ant-design-blazor/components/date-picker/internal/DatePickerHeader.razor
2020-05-29 00:33:49 +08:00

77 lines
2.9 KiB
C#

@namespace AntDesign.Internal
@inherits DatePickerPanelBase
<div class="@(DatePicker.PrefixCls)-header">
@if (ShowSuperPreChange)
{
<button tabindex="-1" class="@(DatePicker.PrefixCls)-header-super-prev-btn" @onclick="e => ChangePickerYearValue(-SuperChangeDateInterval)">
<span class="@(DatePicker.PrefixCls)-super-prev-icon"></span>
</button>
}
@if (ShowPreChange)
{
<button tabindex="-1" class="@(DatePicker.PrefixCls)-header-prev-btn" @onclick="e => ChangePickerMonthValue(-ChangeDateInterval)">
<span class="@(DatePicker.PrefixCls)-prev-icon"></span>
</button>
}
<div class="@(DatePicker.PrefixCls)-header-view">
@if (Picker.IsIn(DatePickerType.Date, DatePickerType.Month, DatePickerType.Quarter, DatePickerType.Week))
{
<button type="button" tabindex="-1" class="@(DatePicker.PrefixCls)-year-btn" @onclick="e => PopUpPicker(DatePickerType.Year)">
@(PickerValue.Year)
</button>
}
@if (Picker.IsIn(DatePickerType.Date, DatePickerType.Week))
{
<button type="button" tabindex="-1" class="@(DatePicker.PrefixCls)-month-btn" @onclick="e => PopUpPicker(DatePickerType.Month)">
@(PickerValue.Month)
</button>
}
@if (Picker.IsIn(DatePickerType.Year))
{
int startYear = PickerValue.Year / 10 * 10;
<button type="button" class="@(DatePicker.PrefixCls)-decade-btn" @onclick="e => PopUpPicker(DatePickerType.Decade)">
@(startYear)-@(startYear + 9)
</button>
}
@if (Picker.IsIn(DatePickerType.Decade))
{
int startYear = PickerValue.Year / 100 * 100;
<button type="button" class="@(DatePicker.PrefixCls)-decade-btn">
@(startYear)-@(startYear + 99)
</button>
}
</div>
@if (ShowNextChange)
{
<button tabindex="-1" class="@(DatePicker.PrefixCls)-header-next-btn" @onclick="e => ChangePickerMonthValue(ChangeDateInterval)">
<span class="@(DatePicker.PrefixCls)-next-icon"></span>
</button>
}
@if (ShowSuperNextChange)
{
<button tabindex="-1" class="@(DatePicker.PrefixCls)-header-super-next-btn" @onclick="e => ChangePickerYearValue(SuperChangeDateInterval)">
<span class="@(DatePicker.PrefixCls)-super-next-icon"></span>
</button>
}
</div>
@code {
[Parameter]
public int SuperChangeDateInterval { get; set; } = 1;
[Parameter]
public int ChangeDateInterval { get; set; } = 1;
[Parameter]
public bool ShowSuperPreChange { get; set; } = true;
[Parameter]
public bool ShowPreChange { get; set; } = true;
[Parameter]
public bool ShowNextChange { get; set; } = true;
[Parameter]
public bool ShowSuperNextChange { get; set; } = true;
}