ant-design-blazor/components/date-picker/internal/DatePickerDatetimePanel.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

162 lines
6.4 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);
DayOfWeek monthFirstDayOfWeek = calendar.GetDayOfWeek(monthFirstDayDate);
int diffDay = (int)CultureInfo.DateTimeFormat.FirstDayOfWeek - (int)monthFirstDayOfWeek;
DateTime startDate = monthFirstDayDate.AddDays(diffDay);
}
<div class='@($"{PrefixCls}-datetime-panel")'>
@if (IsShowTime)
{
<DatePickerTemplate TValue="TValue"
@attributes="GetAttritubes()"
MaxRow="6"
MaxCol="7"
ViewStartDate="startDate"
ShowFooter="@ShowToday"
IsInView="date => DateHelper.IsSameMonth(date, PickerValue)"
IsToday="date => DateHelper.IsSameDay(date, DatePicker.CurrentDate)"
IsSelected="date => DateHelper.IsSameDay(date, Value)"
GetColTitle='date => date.ToString(Locale.Lang.DateFormat, CultureInfo)'
OnValueSelect="OnSelectDate"
GetNextColValue="date => date.AddDays(1)">
<RenderPickerHeader>
<DatePickerHeader TValue="TValue"
@attributes="GetAttritubes()" />
</RenderPickerHeader>
<RenderTableHeader>
<tr>
@foreach(string weekDay in Locale.Lang.ShortWeekDays)
{
<th>@weekDay</th>
}
</tr>
</RenderTableHeader>
<RenderColValue Context="currentColDate">
@currentColDate.Day
</RenderColValue>
</DatePickerTemplate>
}
@{
var startTime = new DateTime(2020, 1, 1, 0, 0, 0);
var timeFormat = ShowTimeFormat;
if (Picker == DatePickerType.Time && !string.IsNullOrEmpty(Format))
{
timeFormat = Format;
}
DatePickerDisabledTime disabledTime = GetDisabledTime();
}
<div class="@(PrefixCls)-time-panel">
@if(Picker == DatePickerType.Date)
{
<div class="@(PrefixCls)-header">
<div class="@(PrefixCls)-header-view">
@Value.ToString(timeFormat) <br />
</div>
</div>
}
<div class="@(PrefixCls)-content">
@if (timeFormat.ToLower().Contains("hh"))
{
<ul class="@(PrefixCls)-time-panel-column" style="position: relative;">
@for (int hour = 0; hour < 24; hour++)
{
var viewTime = startTime;
bool disabled = disabledTime._disabledHours.Contains(hour);
string isSelectedCls = viewTime.Hour == Value.Hour ? $"{PrefixCls}-time-panel-cell-selected" : "";
string disabledCls = disabled ? $"{PrefixCls}-time-panel-cell-disabled" : "";
<li class="@(PrefixCls)-time-panel-cell @isSelectedCls @disabledCls">
<div class="@(PrefixCls)-time-panel-cell-inner"
@onclick="e => { if (!disabled) OnSelectHour(viewTime); }">
@hour
</div>
</li>
startTime = startTime.AddHours(1);
}
</ul>
}
@if (timeFormat.ToLower().Contains("mm"))
{
<ul class="@(PrefixCls)-time-panel-column" style="position: relative;">
@for (int minute = 0; minute < 60; minute++)
{
var viewTime = startTime;
bool disabled = disabledTime._disabledMinutes.Contains(minute);
string isSelectedCls = viewTime.Minute == Value.Minute ? $"{PrefixCls}-time-panel-cell-selected" : "";
string disabledCls = disabled ? $"{PrefixCls}-time-panel-cell-disabled" : "";
<li class="@(PrefixCls)-time-panel-cell @isSelectedCls @disabledCls">
<div class="@(PrefixCls)-time-panel-cell-inner"
@onclick="e => { if (!disabled) OnSelectMinute(viewTime); }">
@minute
</div>
</li>
startTime = startTime.AddMinutes(1);
}
</ul>
}
@if (timeFormat.ToLower().Contains("ss"))
{
<ul class="@(PrefixCls)-time-panel-column" style="position: relative;">
@for (int second = 0; second < 60; second++)
{
var viewTime = startTime;
bool disabled = disabledTime._disabledSeconds.Contains(second);
string isSelectedCls = viewTime.Second == Value.Second ? $"{PrefixCls}-time-panel-cell-selected" : "";
string disabledCls = disabled ? $"{PrefixCls}-time-panel-cell-disabled" : "";
<li class="@(PrefixCls)-time-panel-cell @isSelectedCls @disabledCls">
<div class="@(PrefixCls)-time-panel-cell-inner"
@onclick="e => { if (!disabled) OnSelectSecond(viewTime); }">
@second
</div>
</li>
startTime = startTime.AddSeconds(1);
}
</ul>
}
</div>
</div>
</div>
@if (RenderExtraFooter != null)
{
<div class="@(PrefixCls)-footer">
<div class="@(PrefixCls)-footer-extra">
@RenderExtraFooter
</div>
</div>
}
<div class="@(PrefixCls)-footer">
<ul class="@(PrefixCls)-ranges">
<li class="@(PrefixCls)-now">
<a class="@(PrefixCls)-now-btn"
@onclick="e => { OnSelectTime(DateTime.Now); Close(); }">
@Locale.Lang.Now
</a>
</li>
<li class="@(PrefixCls)-ok">
<Button Type="@ButtonType.Primary"
OnClick="e => DatePicker.Close()">
@Locale.Lang.Ok
</Button>
</li>
</ul>
</div>