ant-design-blazor/components/calendar/internal/CalendarHeader.razor

114 lines
4.0 KiB
C#
Raw Normal View History

@namespace AntDesign
@inherits AntDomComponentBase
@using AntDesign.Internal
<div class="@(PrefixCls)-header"
style="@Style"
id="@Id"
@ref="@Ref">
@{
int startYear = Calendar.Value.AddYears(-10).Year;
int endYear = Calendar.Value.AddYears(10).Year;
if (Calendar.ValidRange != null)
{
startYear = Calendar.ValidRange[0].Year;
endYear = Calendar.ValidRange[1].Year;
}
feat(module: date-picker): support localization (#803) * 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.
2020-11-25 11:08:12 +08:00
string yearFormat = Calendar.Locale.Lang.YearFormat;
}
<Select Class=@($"{PrefixCls}-year-select")
@bind-Value="@_yearValue"
Size=@(Calendar.FullScreen ? AntSizeLDSType.Default : AntSizeLDSType.Small)
DefaultValue=@Calendar.Value.Year
TItemValue="int"
TItem="string"
Style="width: 70px;"
SortByLabel="@SortDirection.Ascending"
OnSelectedItemChanged="@(async (item) => await OnSelectYear(item))">
<SelectOptions>
@for (int year = startYear; year <= endYear; year++)
{
DateTime yearDate = new DateTime(year, 1, 1);
<SelectOption @key="@yearDate.Year" TItemValue="int" TItem="string" Value=@yearDate.Year Label="@(yearDate.ToString(yearFormat, Calendar.CultureInfo))" />
}
</SelectOptions>
</Select>
@if (Calendar.Mode == DatePickerType.Month)
{
int startMonth = 1;
int endMonth = 12;
if (Calendar.ValidRange != null)
{
startMonth = Calendar.Value.Year == Calendar.ValidRange[0].Year ? Calendar.ValidRange[0].Month : startMonth;
endMonth = Calendar.Value.Year == Calendar.ValidRange[1].Year ? Calendar.ValidRange[1].Month : endMonth;
}
feat(module: date-picker): support localization (#803) * 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.
2020-11-25 11:08:12 +08:00
string monthFormat = Calendar.Locale.Lang.MonthFormat;
<Select class=@($"{PrefixCls}-month-select")
@bind-Value="@_monthValue"
Size=@(Calendar.FullScreen ? AntSizeLDSType.Default : AntSizeLDSType.Small)
DefaultValue=@Calendar.Value.Month
Style="width: 70px;"
TItemValue="int"
TItem="string"
OnSelectedItemChanged="@(async (item) => await OnSelectMonth(item))">
<SelectOptions>
@for (int month = startMonth; month <= endMonth; month++)
{
DateTime monthDate = new DateTime(1, month, 1);
<SelectOption @key="@monthDate.Month" TItemValue="int" TItem="string" Value=@monthDate.Month Label="@(monthDate.ToString(monthFormat, Calendar.CultureInfo))" />
}
</SelectOptions>
</Select>
}
<RadioGroup class=@($"{PrefixCls}-mode-switch")
Size=@(Calendar.FullScreen ? AntSizeLDSType.Default : AntSizeLDSType.Small)
Value="@Calendar.Mode"
OnChange="OnModeChange" TValue="string">
feat(module: date-picker): support localization (#803) * 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.
2020-11-25 11:08:12 +08:00
<Radio RadioButton Value="@DatePickerType.Month">@(Calendar.Locale.Lang.Month)</Radio>
<Radio RadioButton Value="@DatePickerType.Year">@(Calendar.Locale.Lang.Year)</Radio>
</RadioGroup>
</div>
@code
{
[CascadingParameter(Name = "PrefixCls")]
public string PrefixCls { get; set; }
[CascadingParameter(Name = "Calendar")]
public Calendar Calendar { get; set; }
private DateTime currentDate;
private int _yearValue;
private int _monthValue;
protected override void OnInitialized()
{
base.OnInitialized();
currentDate = Calendar.Value;
}
private void OnModeChange(string value)
{
Calendar.ChangePickerType(value);
}
private async Task OnSelectYear(string value)
{
int year = Convert.ToInt32(value);
await Calendar.ChangeValue(DateHelper.CombineNewDate(Calendar.Value, year: year));
}
private async Task OnSelectMonth(string value)
{
int month = Convert.ToInt32(value);
await Calendar.ChangeValue(DateHelper.CombineNewDate(Calendar.Value, month: month));
}
}