ant-design-blazor/components/date-picker/internal/DatePickerDatePanel.razor
Nino Padrutt 5809c80011 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

120 lines
3.9 KiB
C#

@namespace AntDesign.Internal
@typeparam TValue
@inherits DatePickerPanelBase<TValue>
@{
var calendar = CultureInfo.Calendar;
DateTime monthFirstDayDate = new DateTime(PickerValue.Year, PickerValue.Month, 1, 0, 0, 0);
int monthFirstDayOfWeek = (int)calendar.GetDayOfWeek(monthFirstDayDate);
// sunday should be 7
if (monthFirstDayOfWeek == 0)
{
monthFirstDayOfWeek = DayOfWeekHelper.GetDiffForDayOfWeek(Locale.FirstDayOfWeek);
}
int diffDay = (int) Locale.FirstDayOfWeek - monthFirstDayOfWeek;
DateTime startDate = monthFirstDayDate.AddDays(diffDay);
}
<div class='@($"{PrefixCls}-panel")'>
<DatePickerTemplate TValue="TValue"
@attributes="GetAttritubes()"
MaxRow="6"
MaxCol="7"
ViewStartDate="startDate"
ShowFooter="@ShowToday"
GetRowClass="GetRowClass"
IsInView="date => DateHelper.IsSameMonth(date, PickerValue)"
IsToday="date => DateHelper.IsSameDay(date, DatePicker.CurrentDate)"
IsSelected="date => !IsWeek && DateHelper.IsSameDay(date, Value)"
GetColTitle='date => date.ToString(Locale.Lang.DateFormat, CultureInfo)'
OnRowSelect="OnRowSelect"
OnValueSelect="OnValueSelect"
GetNextColValue="date => date.AddDays(1)">
<RenderPickerHeader>
<DatePickerHeader TValue="TValue"
@attributes="GetAttritubes()"
ShowSuperPreChange="@(!(IsRange && PickerIndex == 1))"
ShowPreChange="@(!(IsRange && PickerIndex == 1))"
ShowNextChange="@(!(IsRange && PickerIndex == 0))"
ShowSuperNextChange="@(!(IsRange && PickerIndex == 0))"/>
</RenderPickerHeader>
<RenderTableHeader>
<tr>
@if (IsWeek)
{
<th></th>
}
@foreach(string weekDay in Locale.Lang.ShortWeekDays)
{
<th>@(weekDay)</th>
}
</tr>
</RenderTableHeader>
<RenderFisrtCol>
@if (IsWeek)
{
<td class="@(PrefixCls)-cell @(PrefixCls)-cell-weak">
@DateHelper.GetWeekOfYear(context)
</td>
}
</RenderFisrtCol>
<RenderColValue Context="currentColDate">
@currentColDate.Day
</RenderColValue>
</DatePickerTemplate>
</div>
@if (RenderExtraFooter != null && !IsRange)
{
<div class="@(PrefixCls)-footer">
<div class="@(PrefixCls)-footer-extra">
@RenderExtraFooter
</div>
</div>
}
@if (ShowToday && !IsRange && Picker != DatePickerType.Time)
{
<div class="@(PrefixCls)-footer">
<a class="@(PrefixCls)-today-btn"
@onclick="e => { OnSelectDate(DateTime.Now); Close(); }">
@Locale.Lang.Today
</a>
</div>
}
@code {
[Parameter]
public bool IsWeek { get; set; } = false;
[Parameter]
public bool ShowToday { get; set; } = false;
private string GetRowClass(DateTime viewDate)
{
string selectedRowClass = IsWeek && DateHelper.IsSameWeak(viewDate, Value) ? $"{PrefixCls}-week-panel-row-selected" : "";
string rowClass = IsWeek ? $"{PrefixCls}-week-panel-row" : "";
return $"{rowClass} {selectedRowClass}";
}
private void OnRowSelect(DateTime viewDate)
{
if (IsWeek)
{
OnSelectDate(viewDate);
}
}
private void OnValueSelect(DateTime viewDate)
{
if (!IsWeek)
{
OnSelectDate(viewDate);
}
}
}