mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 08:51:27 +08:00
4d2c77fec7
* feat: add mock browser * docs: add mock browser * docs: rename menu * fix: style for submenu * docs: add two menu demo * fix: some errors * fix(module:menu): openkeys * docs: add switch-mode demo for menu * docs(module:menu): finish demos * docs(module: menu): add router demo * docs: add new demos (#111) * feat(module: datepicker): remove ant prefix * feat(module: dropdown): remove ant prefix * feat(module: empty): remove ant prefix * feat(module: timepicker): remove ant prefix * docs(module: datepicker): add new demos * docs(module: dropdown): add new demos * docs(module: empty): add new demos * docs(module: timepicker): add new demos * docs: remove old demo Co-authored-by: 钟迪龙 <mutouzdl@hotmail.com> * refactor(module: dropdown): add overlay (#122) * feat(module: dropdown): support left/right popup * feat(module: submenu): use dropdown to popup * feat: add overlay and trigger class(not complete yet) * feat: add OverlayTrigger.cs * feat: submenu support dropdown * feat(module: overlay): prevent hide when child is showing * fix(module: menu): prefixCls error * feat(module: overlay-trigger): change function to virtual * feat(module: dropdown): remove unuse class * feat(module: sub-menu): set IsOpen to Visible * refactor: change namespace * refactor: use smartEnum * fix: menu json * fix: submenu open state Co-authored-by: 笨木头 <musicvs@163.com> Co-authored-by: 钟迪龙 <mutouzdl@hotmail.com>
72 lines
3.7 KiB
Plaintext
72 lines
3.7 KiB
Plaintext
@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>
|