ant-design-blazor/components/date-picker/internal/DatePickerYearPanel.razor
Bin Dong d99f4f35a8 feat: add localization option to DatePicker (#206)
* feat: add localization option to DatePicker

* fix(module: datepicker): fix formatting issue

* fix: fix Week/Year panel miss matching
fix picker not update when setting CultureInfo
fix ShortWeekDays names and order

* fix: fix binding of CultureInfo in datetime demos
Add globalization demo

* fix: datetime string format

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-16 12:31:46 +08:00

44 lines
1.9 KiB
C#

@namespace AntDesign.Internal
@typeparam TValue
@inherits DatePickerPanelBase<TValue>
@using System.Globalization;
@{
var calendar = CultureInfo.InvariantCulture.Calendar;
int startYear = PickerValue.Year / 10 * 10 - 1;
DateTime startDate = new DateTime(startYear, 1, 1);
int yearIndex = 0;
const int MAX_ROW = 4;
const int MAX_COL = 3;
const int FIRST_YEAR_INDEX = 0;
const int LAST_YEAR_INDEX = MAX_ROW * MAX_COL;
}
<div class='@($"{PrefixCls}-panel")'>
<DatePickerTemplate @attributes="GetAttritubes()"
TValue="TValue"
MaxRow="MAX_ROW"
MaxCol="MAX_COL"
ViewStartDate="startDate"
IsInView="date => yearIndex != FIRST_YEAR_INDEX && yearIndex != LAST_YEAR_INDEX"
IsToday="date => DateHelper.IsSameYear(date, DatePicker.CurrentDate)"
IsSelected="date => DateHelper.IsSameYear(date, Value)"
GetColTitle='date => date.ToString(this.DatePicker.CultureInfo.GetDateLocale().YearFormat, this.DatePicker.CultureInfo)'
OnValueSelect="date => OnSelectYear(date)"
GetNextColValue="date => date.AddYears(1)">
<RenderPickerHeader>
<DatePickerHeader @attributes="GetAttritubes()"
TValue="TValue"
SuperChangeDateInterval="10"
ShowPreChange="@false"
ShowNextChange="@false"
ShowSuperPreChange="@(!(IsRange && PickerIndex == 1))"
ShowSuperNextChange="@(!(IsRange && PickerIndex == 0))" />
</RenderPickerHeader>
<RenderColValue Context="currentColDate">
@{yearIndex++;}
@currentColDate.Year
</RenderColValue>
</DatePickerTemplate>
</div>