mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 08:51:27 +08:00
6a6a12175f
* fix(module:rangePicker): year & month skip * fix(module:rangePicker): extra space removed on 2nd picker * fix(module:rangePicker): when ShowTime, click on OK moves to other picker * fix(module:rangePicker): adjust year skip button * fix(module:rangePicker): focus issue resolution * fix(module:rangePicker): remove incorrect value from input Co-authored-by: James Yeung <shunjiey@hotmail.com>
91 lines
4.7 KiB
C#
91 lines
4.7 KiB
C#
@namespace AntDesign
|
|
@inherits DatePickerBase<TValue>
|
|
@typeparam TValue
|
|
@using AntDesign.Internal;
|
|
|
|
<CascadingValue Value='$"{PrefixCls}-dropdown"' Name="PrefixCls">
|
|
<OverlayTrigger @ref="_dropDown"
|
|
Visible="Open"
|
|
IsButton="@true"
|
|
Disabled="IsDisabled()"
|
|
PopupContainerSelector="@PopupContainerSelector"
|
|
OnVisibleChange="OverlayVisibleChange"
|
|
OverlayClassName="ant-picker-dropdown-range"
|
|
OverlayEnterCls="ant-slide-up-enter ant-slide-up-enter-active ant-slide-up"
|
|
OverlayLeaveCls="ant-slide-up-leave ant-slide-up-leave-active ant-slide-up"
|
|
Trigger="new TriggerType[] { TriggerType.Click }">
|
|
<Overlay>
|
|
<div class="@(PrefixCls)-range-arrow" style="@_rangeArrowStyle" />
|
|
<div class="@(PrefixCls)-panel-container" @onclick="@PickerClicked">
|
|
<div class="@(PrefixCls)-panels">
|
|
<div class="@_panelClassMapper.Class" style="@(Picker == DatePickerType.Date && IsShowTime && GetOnFocusPickerIndex() == 1 ? "display: none;": "")">
|
|
<DatePickerPanelChooser TValue="TValue" DatePicker="@this" PickerIndex="@(RTL ? 1 : 0)" OnSelect="async (date, index) => await OnSelect(date)" />
|
|
</div>
|
|
<div class="@_panelClassMapper.Class">
|
|
<DatePickerPanelChooser TValue="TValue" DatePicker="@this" PickerIndex="@(RTL ? 0 : 1)" OnSelect="async (date, index) => await OnSelect(date)" />
|
|
</div>
|
|
</div>
|
|
@if (RenderExtraFooter != null && !IsShowTime)
|
|
{
|
|
<div class="@(PrefixCls)-footer">
|
|
<div class="@(PrefixCls)-footer-extra">
|
|
@RenderExtraFooter
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
</Overlay>
|
|
<Unbound>
|
|
<div class="@ClassMapper.Class"
|
|
@ref="@context.Current"
|
|
style="@Style"
|
|
Id="@Id">
|
|
<DatePickerInput @ref="_inputStart"
|
|
PrefixCls="@PrefixCls"
|
|
Size="@Size"
|
|
Disabled="IsDisabled(0)"
|
|
Value="@GetInputValue(0)"
|
|
Placeholder="@_placeholders[0]"
|
|
ReadOnly="@InputReadOnly"
|
|
AutoFocus="@AutoFocus"
|
|
OnClick="async e => { await OnInputClick(0); }"
|
|
OnInput="e => OnInput(e, 0)"
|
|
OnKeyDown="e => OnKeyDown(e, 0)"
|
|
Onfocus="() => OnFocus(0)"
|
|
OnBlur="e => OnBlur(0)"
|
|
ShowTime="@(Picker == DatePickerType.Time)"
|
|
ShowSuffixIcon="false"
|
|
IsRange="@IsRange"
|
|
AllowClear="@AllowClear"
|
|
HtmlInputSize="@HtmlInputSize"
|
|
OnClickClear="e => ClearValue(-1)" />
|
|
|
|
<div class="@(PrefixCls)-range-separator">
|
|
<span aria-label="to" class="@(PrefixCls)-separator">
|
|
<Icon Type="swap-right" Theme="outline" />
|
|
</span>
|
|
</div>
|
|
|
|
<DatePickerInput @ref="_inputEnd"
|
|
PrefixCls="@PrefixCls"
|
|
Size="@Size"
|
|
Disabled="IsDisabled(1)"
|
|
Value="@GetInputValue(1)"
|
|
Placeholder="@_placeholders[1]"
|
|
ReadOnly="@InputReadOnly"
|
|
AutoFocus="@AutoFocus"
|
|
OnClick="async e => { await OnInputClick(1); }"
|
|
OnInput="e => OnInput(e, 1)"
|
|
OnKeyDown="e => OnKeyDown(e, 1)"
|
|
Onfocus="() => OnFocus(1)"
|
|
OnBlur="e => OnBlur(1)"
|
|
ShowTime="@(Picker == DatePickerType.Time)"
|
|
IsRange="@IsRange"
|
|
AllowClear="@AllowClear"
|
|
HtmlInputSize="@HtmlInputSize"
|
|
OnClickClear="e => ClearValue(-1)" />
|
|
<div class="@(PrefixCls)-active-bar" style="@_activeBarStyle"></div>
|
|
</div>
|
|
</Unbound>
|
|
</OverlayTrigger>
|
|
</CascadingValue> |