ant-design-blazor/components/date-picker/DatePicker.razor

72 lines
3.7 KiB
Plaintext
Raw Normal View History

@namespace AntBlazor
@inherits AntDomComponentBase
@using AntBlazor.Internal;
<CascadingValue Value='$"{PrefixCls}-dropdown"' Name="PrefixCls">
<Dropdown @ref="_dropDown"
Visible="Open"
Disabled="Disabled"
PopupContainerSelector="@PopupContainerSelector"
OnVisibleChange="visible => AutoFocus = visible"
Trigger="new TriggerType[] { TriggerType.Click }">
<Overlay>
<div class="@(PrefixCls)-panel-container">
@if (IsRange)
{
<div class="@(PrefixCls)-panels">
<div class="@(PrefixCls)-panel">
<DatePickerPanelChooser DatePicker="@this" PickerIndex="0" OnSelect="async (date, index) => await OnSelect(date)" />
</div>
<div class="@(PrefixCls)-panel">
<DatePickerPanelChooser DatePicker="@this" PickerIndex="1" OnSelect="async (date, index) => await OnSelect(date)" />
</div>
</div>
}
else
{
<div class="@(PrefixCls)-panel">
<DatePickerPanelChooser DatePicker="@this" OnSelect="async (date, index) => await OnSelect(date)" />
</div>
}
</div>
</Overlay>
<ChildContent>
<div class="@ClassMapper.Class"
@ref="@Ref"
style="@Style"
Id="@Id">
<DatePickerInput @ref="_inputStart"
PrefixCls="@PrefixCls"
Size="@Size"
Disabled="@Disabled"
Value="@GetInputValue(0)"
Placeholder="@_placeholders[0]"
ReadOnly="@InputReadOnly"
AutoFocus="@AutoFocus"
Onclick="e => { ChangeFocusTarget(true, false); }"
OnInput="e => OnInput(e, 0)"
ShowTime="@(Picker == DatePickerType.Time)" />
@if (IsRange)
{
<div class="@(PrefixCls)-range-separator"><span aria-label="to" class="@(PrefixCls)-separator"><span role="img" aria-label="swap-right" class="anticon anticon-swap-right"><svg viewBox="0 0 1024 1024" focusable="false" class="" data-icon="swap-right" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M873.1 596.2l-164-208A32 32 0 00684 376h-64.8c-6.7 0-10.4 7.7-6.3 13l144.3 183H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h695.9c26.8 0 41.7-30.8 25.2-51.8z"></path></svg></span></span></div>
<DatePickerInput @ref="_inputEnd"
PrefixCls="@PrefixCls"
Size="@Size"
Disabled="@Disabled"
Value="@GetInputValue(1)"
Placeholder="@_placeholders[1]"
ReadOnly="@InputReadOnly"
AutoFocus="@AutoFocus"
Onclick="e => { ChangeFocusTarget(false, true); }"
OnInput="e => OnInput(e, 0)"
ShowTime="@(Picker == DatePickerType.Time)" />
<div class="@(PrefixCls)-active-bar" style="@_activeBarStyle"></div>
}
</div>
</ChildContent>
</Dropdown>
</CascadingValue>