mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
152a574577
* 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>
113 lines
5.0 KiB
C#
113 lines
5.0 KiB
C#
@namespace AntDesign.Internal
|
|
@typeparam TValue
|
|
@inherits DatePickerPanelBase<TValue>
|
|
@using AntDesign
|
|
|
|
<div class="@(PrefixCls)-@(Picker)-panel" @ref="Ref">
|
|
@if (IsShowHeader)
|
|
{
|
|
@RenderPickerHeader
|
|
}
|
|
<div class="@(PrefixCls)-body">
|
|
<table class="@(PrefixCls)-content">
|
|
<thead>
|
|
@RenderTableHeader
|
|
</thead>
|
|
<tbody>
|
|
@{
|
|
var startDate = ViewStartDate;
|
|
bool shouldStopRender = false;
|
|
}
|
|
@for (int row = 1; row <= MaxRow; row++)
|
|
{
|
|
if (shouldStopRender)
|
|
{
|
|
break;
|
|
}
|
|
|
|
var startColDate = startDate;
|
|
|
|
<tr class="@(GetRowClass?.Invoke(startColDate))"
|
|
@onclick="e => OnRowSelect?.Invoke(startColDate)">
|
|
|
|
@RenderFisrtCol?.Invoke(startColDate)
|
|
|
|
@for (int col = 1; col <= MaxCol; col++)
|
|
{
|
|
if (shouldStopRender)
|
|
{
|
|
break;
|
|
}
|
|
|
|
var currentColDate = startDate;
|
|
|
|
string cellCls = GetCellCls(currentColDate);
|
|
string innerCellCls = GetInnerCellCls(currentColDate);
|
|
|
|
<td title="@GetColTitle?.Invoke(currentColDate)"
|
|
class="@cellCls"
|
|
@onmouseenter="e => DateOnMouseEnter(currentColDate)"
|
|
@onmouseleave="e => DateOnMouseLeave()">
|
|
<div class="@innerCellCls"
|
|
@onclick="e => OnValueSelect?.Invoke(currentColDate)">
|
|
@if (IsCalendar)
|
|
{
|
|
<div class="@(PrefixCls)-calendar-date-value">
|
|
@if (Picker == DatePickerType.Date && DateRender != null)
|
|
{
|
|
@(DateRender(currentColDate, DatePicker.CurrentDate))
|
|
}
|
|
else if (Picker == DatePickerType.Month && MonthCellRender != null)
|
|
{
|
|
@(MonthCellRender(currentColDate))
|
|
}
|
|
else
|
|
{
|
|
@RenderColValue(currentColDate)
|
|
}
|
|
</div>
|
|
<div class="@(PrefixCls)-calendar-date-content">
|
|
@if (Picker == DatePickerType.Date && CalendarDateRender != null)
|
|
{
|
|
@(CalendarDateRender(currentColDate))
|
|
}
|
|
else if (Picker == DatePickerType.Month && CalendarMonthCellRender != null)
|
|
{
|
|
@(CalendarMonthCellRender(currentColDate))
|
|
}
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
@if (Picker == DatePickerType.Date && DateRender != null)
|
|
{
|
|
@(DateRender(currentColDate, DatePicker.CurrentDate))
|
|
}
|
|
else if (Picker == DatePickerType.Month && MonthCellRender != null)
|
|
{
|
|
@(MonthCellRender(currentColDate))
|
|
}
|
|
else
|
|
{
|
|
@RenderColValue(currentColDate)
|
|
}
|
|
}
|
|
</div>
|
|
</td>
|
|
|
|
startDate = @GetNextColValue(currentColDate);
|
|
|
|
if (ShouldStopRenderDate(currentColDate, startDate))
|
|
{
|
|
shouldStopRender = true;
|
|
}
|
|
}
|
|
|
|
@{ var endColDate = startDate;}
|
|
@RenderLastCol?.Invoke(endColDate)
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div> |