ant-design-blazor/components/date-picker/internal/DatePickerDatePanel.razor
Andrzej Bakun 152a574577 feat(module: overlay): OverlayTrigger not bound to a div (#937)
* feat(module:overlay): OverlayTrigger not bound to a div

* feat(module:overlay): OverlayTrigger not bound to a div

* feat(module:overlay): Logic transfer to single Overlay

* feat(module:overlay): remove obsolete duplication

* feat(module:Tooltip): Add for unbounded oncontextmenu event handler

* feat(module:tooltip): unbound js event listeners remove

* docs(module:tooltip): unbound explanation

* fix(module:button): attach Ref to top level html element @ref

* feat(module:dropdown&tooltip&popconfirm&popover): Overlay not bound to a div

* docs(module:dropdown&tooltip&popconfirm&popover): unbound explanation

* feat(module:OverlayTrigger): common logic relocation

* feat(module:overlaytrigger): Overlay not bound to a div

* feat(module:DatePicker): Overlay not bound to a div

* feat(module:select): Overlay not boud to div

* fix(module:select): onclickarrow event relocation

* fix(module:select): rename Show to OnArrowClick

* feat(module:avatar): Overlay not bound to a div

* docs(module:avatar): demo switch to unbound version

* feat(module:autocomplete): partial OverlayTrigger not bound to a div

* feat(module:slider): tooltip

* docs(module:slider): tooltip

* fix(module:overlay): add SetVisible method

* feat: set Ref where missing, performance

components register Ref when missing
IsFixed flag for CascadeValue changed
hard-code sequence numbers when using RenderTreeBuilder
Rate component use Tooltip Unbound version
Tabs test fix

* fix: revert changes (accidental)

* feat(module:upload): tooltip with unbound usage

* feat(module:table): column use of unbound tooltip

* feat(module:autocomplete):overlay unbound from div

* fix(module:upload): missing div restore

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2021-01-21 17:20:10 +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")' @ref="Ref">
<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 => DateHelper.AddDaysSafely(date, 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);
}
}
}