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

57 lines
2.2 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;
if (startYear > 0)
startDate = new DateTime(startYear, 1, 1);
else
startDate = DateTime.MinValue;
int yearIndex = 0;
}
<div class='@($"{PrefixCls}-panel")' @ref="Ref">
<DatePickerTemplate @attributes="GetAttritubes()"
TValue="TValue"
MaxRow="MAX_ROW"
MaxCol="MAX_COL"
ViewStartDate="startDate"
IsInView="date => IsInView(date, startDate)"
IsToday="date => DateHelper.IsSameYear(date, DatePicker.CurrentDate)"
IsSelected="date => DateHelper.IsSameYear(date, Value)"
GetColTitle='date => date.ToString(Locale.Lang.YearFormat, CultureInfo)'
OnValueSelect="date => OnSelectYear(date)"
GetNextColValue="date => DateHelper.AddYearsSafely(date, 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>
@code {
private const int MAX_ROW = 4;
private const int MAX_COL = 3;
private const int FIRST_YEAR_INDEX = 0;
private const int LAST_YEAR_INDEX = MAX_ROW * MAX_COL - 1;
private bool IsInView(DateTime date, DateTime startDate)
{
return date.Year != DateHelper.AddYearsSafely(startDate, FIRST_YEAR_INDEX).Year
&& date.Year != DateHelper.AddYearsSafely(startDate, LAST_YEAR_INDEX).Year;
}
}