ant-design-blazor/components/auto-complete/AutoComplete.razor
Andrzej Bakun ef0b690331 fix(module: autocomplete): overlay is showing for AutoCompleteSearch (#1860)
* fix(module:autocomplete): overlay is showing for AutoCompleteSearch

* translate comments

* code cleanup

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2021-08-26 16:44:47 +00:00

69 lines
3.1 KiB
C#

@namespace AntDesign
@inherits AntInputComponentBase<string>
@typeparam TOption
@using AntDesign.Internal
<CascadingValue Value='$"ant-select-dropdown"' Name="PrefixCls">
<OverlayTrigger @ref="_overlayTrigger"
Style="display: inline"
IsButton="@true"
Disabled="false"
Trigger="new TriggerType[] { TriggerType.Click }"
PopupContainerSelector="@PopupContainerSelector"
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"
OverlayClassName="@OverlayClassName"
OverlayStyle="@OverlayStyle"
OnVisibleChange="@OnOverlayTriggerVisibleChange">
<Overlay>
<CascadingValue Value="this" IsFixed="@true">
@if (ShowPanel && !_isOptionsZero)
{
<div style="max-height: 256px; overflow-y: auto; overflow-anchor: none; @_minWidth">
<div style="display: flex;flex-direction: column;">
@if (OverlayTemplate != null)
{
@OverlayTemplate
}
else
{
@if (OptionTemplate != null)
{
@foreach (var option in GetOptionItems())
{
@OptionTemplate(option)
}
}
else
{
@foreach (var option in GetOptionItems())
{
var label = OptionFormat == null ? option.Label : OptionFormat(option);
<AutoCompleteOption Value="@option.Value" Label="@option.Label" Disabled="option.IsDisabled">
@label
</AutoCompleteOption>
}
}
}
</div>
</div>
}
</CascadingValue>
</Overlay>
<Unbound>
<CascadingValue Value="this" IsFixed="@true">
<CascadingValue Value="context" Name="OverlayTriggerContext">
@if (ChildContent == null)
{
<AutoCompleteInput @bind-Value="@CurrentValue" Placeholder="@Placeholder" Disabled="@Disabled" Style="@Style" Id="@Id" />
}
else
{
@ChildContent
}
</CascadingValue>
</CascadingValue>
</Unbound>
</OverlayTrigger>
</CascadingValue>