Skip to content

Commit e90bfb6

Browse files
authored
test(AutoFill): update test improve code coverage (#5675)
* test: 更新单元测试 * feat(TreeView): 增加 OverscanCount 支持 * doc: 更新默认值 * chore: bump version 9.4.10 * refactor: 更新默认值判断逻辑 * refactor: 重构方法名称 * test: 更新单元测试 * doc: 文档格式化
1 parent e6d3a6a commit e90bfb6

File tree

4 files changed

+43
-14
lines changed

4 files changed

+43
-14
lines changed

src/BootstrapBlazor/Components/AutoFill/AutoFill.razor

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
else
3535
{
3636
<Virtualize ItemSize="RowHeight" OverscanCount="OverscanCount" ItemsProvider="LoadItems"
37-
Placeholder="RenderPlaceHolderRow" ItemContent="RenderRow" @ref="_virtualizeElement">
37+
Placeholder="RenderPlaceholderRow" ItemContent="RenderRow" @ref="_virtualizeElement">
3838
</Virtualize>
3939
}
4040
</div>
@@ -68,7 +68,7 @@
6868
}
6969
</div>;
7070

71-
RenderFragment<PlaceholderContext> RenderPlaceHolderRow => context =>
71+
RenderFragment<PlaceholderContext> RenderPlaceholderRow => context =>
7272
@<div class="dropdown-item" style="@PlaceHolderStyleString">
7373
<div class="is-ph"></div>
7474
</div>;

src/BootstrapBlazor/Components/AutoFill/AutoFill.razor.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public partial class AutoFill<TValue>
9999
public bool IsVirtualize { get; set; }
100100

101101
/// <summary>
102-
/// Gets or sets the row height for virtual scrolling. Default is 33.
102+
/// Gets or sets the row height for virtual scrolling. Default is 50f.
103103
/// </summary>
104104
/// <remarks>Effective when <see cref="IsVirtualize"/> is set to true.</remarks>
105105
[Parameter]
@@ -160,7 +160,7 @@ public partial class AutoFill<TValue>
160160
.AddClass($"text-danger", IsValid.HasValue && !IsValid.Value)
161161
.Build();
162162

163-
private string? PlaceHolderStyleString => RowHeight > 50f
163+
private string? PlaceHolderStyleString => RowHeight != 50f
164164
? CssBuilder.Default().AddStyle("height", $"{RowHeight}px").Build()
165165
: null;
166166

src/BootstrapBlazor/Components/Table/Table.razor

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@namespace BootstrapBlazor.Components
2+
@using Microsoft.AspNetCore.Components.Web.Virtualization
23
@typeparam TItem
34
@inherits BootstrapModuleComponentBase
45
@attribute [BootstrapModuleAutoLoader(JSObjectReference = true)]
@@ -368,18 +369,16 @@
368369
{
369370
@if (Items != null)
370371
{
371-
<Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize @ref="VirtualizeElement"
372-
ItemSize="RowHeight" OverscanCount="10" Items="@Items.ToList()" ChildContent="RenderRow" />
372+
<Virtualize @ref="VirtualizeElement"
373+
ItemSize="RowHeight" OverscanCount="10" Items="@Items.ToList()" ChildContent="RenderRow">
374+
</Virtualize>
373375
}
374376
else
375377
{
376-
<Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize @ref="VirtualizeElement"
377-
ItemSize="RowHeight" OverscanCount="10"
378-
ItemsProvider="LoadItems" ItemContent="RenderRow">
379-
<Placeholder>
380-
@RenderPlaceHolderRow
381-
</Placeholder>
382-
</Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize>
378+
<Virtualize @ref="VirtualizeElement"
379+
ItemSize="RowHeight" OverscanCount="10" Placeholder="RenderPlaceholderRow"
380+
ItemsProvider="LoadItems" ItemContent="RenderRow">
381+
</Virtualize>
383382
}
384383
}
385384
else
@@ -808,7 +807,7 @@
808807
}
809808
</DynamicElement>;
810809

811-
RenderFragment RenderPlaceHolderRow =>
810+
RenderFragment<PlaceholderContext> RenderPlaceholderRow => context =>
812811
@<tr>
813812
@if (IsMultipleSelect)
814813
{

test/UnitTest/Components/AutoFillTest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,35 @@ public async Task IsVirtualize_Items_Clearable_Ok()
349349
Assert.Null(input.NodeValue);
350350
}
351351

352+
[Fact]
353+
public void Placeholder_Ok()
354+
{
355+
var localizer = Context.Services.GetRequiredService<IStringLocalizer<Foo>>();
356+
var cut = Context.RenderComponent<AutoFill<Foo>>(pb =>
357+
{
358+
pb.Add(a => a.OnQueryAsync, option =>
359+
{
360+
var items = Foo.GenerateFoo(localizer, 80).Skip(option.StartIndex).Take(5);
361+
var ret = new QueryData<Foo>()
362+
{
363+
Items = items,
364+
TotalCount = 80
365+
};
366+
return Task.FromResult(ret);
367+
});
368+
pb.Add(a => a.IsVirtualize, true);
369+
pb.Add(a => a.RowHeight, 50f);
370+
pb.Add(a => a.OnGetDisplayText, f => f?.Name);
371+
});
372+
cut.Contains("<div class=\"dropdown-item\"><div class=\"is-ph\"></div></div>");
373+
374+
cut.SetParametersAndRender(pb =>
375+
{
376+
pb.Add(a => a.RowHeight, 35f);
377+
});
378+
cut.Contains("<div class=\"dropdown-item\" style=\"height: 35px;\"><div class=\"is-ph\"></div></div>");
379+
}
380+
352381
[Fact]
353382
public async Task IsVirtualize_OnQueryAsync_Clearable_Ok()
354383
{
@@ -375,6 +404,7 @@ public async Task IsVirtualize_OnQueryAsync_Clearable_Ok()
375404
pb.Add(a => a.Value, items[0]);
376405
pb.Add(a => a.IsVirtualize, true);
377406
pb.Add(a => a.IsClearable, true);
407+
pb.Add(a => a.RowHeight, 35f);
378408
pb.Add(a => a.OnGetDisplayText, f => f?.Name);
379409
pb.Add(a => a.OnClearAsync, () =>
380410
{

0 commit comments

Comments
 (0)