Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions src/BootstrapBlazor.Server/Components/Samples/Table/Tables.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page "/table"
@page "/table"
@inject IStringLocalizer<NavMenu> NavMenuLocalizer
@inject IStringLocalizer<Tables> Localizer
@inject IStringLocalizer<Foo> FooLocalizer
Expand Down Expand Up @@ -68,8 +68,16 @@
<DemoBlock Title="@Localizer["TableBaseSizeTitle"]"
Introduction="@Localizer["TableBaseSizeIntro"]"
Name="TableSize">
<section ignore>@((MarkupString)Localizer["TableBaseSizeDescription"].Value)</section>
<Table TItem="Foo" Items="@Items.Take(3)" IsBordered="true" IsStriped="true" TableSize="TableSize.Compact">
<section ignore>
<p>@((MarkupString)Localizer["TableBaseSizeDescription"].Value)</p>
<div class="row g-3">
<div class="col-12 col-sm-6">
<Switch @bind-Value="@_isCompact" DisplayText="TableSize" />
</div>
</div>
</section>
<Table TItem="Foo" Items="@Items.Take(3)" IsBordered="true" IsStriped="true"
TableSize="@(_isCompact ? TableSize.Compact : TableSize.Normal)" IsMultipleSelect="true">
<TableColumns>
<TableColumn @bind-Field="@context.DateTime" Width="180" Filterable="true" Sortable="true" />
<TableColumn @bind-Field="@context.Name" Filterable="true" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
Expand All @@ -21,6 +21,8 @@ public partial class Tables
[NotNull]
private string? RefreshText { get; set; }

private bool _isCompact = true;

/// <summary>
/// OnInitialized
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions src/BootstrapBlazor/BootstrapBlazor.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup Condition="'$(VisualStudioVersion)' == '17.0'">
<Version>9.12.2-beta01</Version>
<Version>9.12.2-beta02</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(VisualStudioVersion)' == '18.0'">
<Version>10.0.0-rc.2.2.3</Version>
<Version>10.0.0-rc.2.2.4</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/BootstrapBlazor/Components/ErrorLogger/ErrorLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ protected override async Task OnInitializedAsync()
protected override void BuildRenderTree(RenderTreeBuilder builder)
{
builder.OpenComponent<CascadingValue<IErrorLogger>>(0);
builder.AddAttribute(1, nameof(CascadingValue<IErrorLogger>.Value), this);
builder.AddAttribute(2, nameof(CascadingValue<IErrorLogger>.IsFixed), true);
builder.AddAttribute(3, nameof(CascadingValue<IErrorLogger>.ChildContent), RenderContent);
builder.AddAttribute(1, nameof(CascadingValue<>.Value), this);
builder.AddAttribute(2, nameof(CascadingValue<>.IsFixed), true);
builder.AddAttribute(3, nameof(CascadingValue<>.ChildContent), RenderContent);
builder.CloseComponent();
}

Expand Down
12 changes: 9 additions & 3 deletions src/BootstrapBlazor/Components/Table/Table.razor.Sort.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
Expand Down Expand Up @@ -175,7 +175,10 @@ private int MultipleSelectColumnLeft()

private string? MultiColumnStyleString => GetFixedMultipleSelectColumn ? $"left: {MultipleSelectColumnLeft()}px;" : null;

private int MultiColumnWidth => ShowCheckboxText ? ShowCheckboxTextColumnWidth : CheckboxColumnWidth;
private int MultiColumnWidth => ShowCheckboxText ? ShowCheckboxTextColumnWidth :
TableSize == TableSize.Normal
? CheckboxColumnWidth
: CheckboxColumnCompactWidth;

/// <summary>
/// 获得指定列头固定列样式
Expand Down Expand Up @@ -290,7 +293,10 @@ private int CalcMargin()
}
if (IsMultipleSelect)
{
margin += ShowCheckboxText ? ShowCheckboxTextColumnWidth : CheckboxColumnWidth;
margin += ShowCheckboxText ? ShowCheckboxTextColumnWidth :
TableSize == TableSize.Normal
? CheckboxColumnWidth
: CheckboxColumnCompactWidth;
}
if (ShowLineNo)
{
Expand Down
13 changes: 12 additions & 1 deletion src/BootstrapBlazor/Components/Table/Table.razor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
Expand Down Expand Up @@ -339,6 +339,12 @@ private string GetSortTooltip(ITableColumn col) => SortName != col.GetFieldName(
[Parameter]
public int CheckboxColumnWidth { get; set; }

/// <summary>
/// 获得/设置 紧凑模式下复选框宽度 默认 28
/// </summary>
[Parameter]
public int CheckboxColumnCompactWidth { get; set; }

/// <summary>
/// 获得/设置 行号列宽度 默认 60
/// </summary>
Expand Down Expand Up @@ -880,6 +886,11 @@ private void OnInitParameters()
CheckboxColumnWidth = op.TableSettings.CheckboxColumnWidth;
}

if (CheckboxColumnCompactWidth == 0)
{
CheckboxColumnCompactWidth = op.TableSettings.CheckboxColumnCompactWidth;
}

if (op.TableSettings.TableRenderMode != null && RenderMode == TableRenderMode.Auto)
{
RenderMode = op.TableSettings.TableRenderMode.Value;
Expand Down
4 changes: 2 additions & 2 deletions src/BootstrapBlazor/Components/Table/Table.razor.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.table-container {
.table-container {
--bb-table-td-padding-x: .5rem;
--bb-table-td-padding-y: .5rem;
--bb-table-cardview-label-width: 30%;
Expand Down Expand Up @@ -72,7 +72,7 @@
}

.table-sm {
--bb-table-td-padding-x: .25rem;
--bb-table-td-padding-x: .35rem;
--bb-table-td-padding-y: .25rem;
}

Expand Down
7 changes: 6 additions & 1 deletion src/BootstrapBlazor/Options/TableSettings.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
Expand All @@ -15,6 +15,11 @@ public class TableSettings
/// </summary>
public int CheckboxColumnWidth { get; set; } = 36;

/// <summary>
/// 获得/设置 复选框宽度 默认 28
/// </summary>
public int CheckboxColumnCompactWidth { get; set; } = 28;

/// <summary>
/// 获得/设置 明细行 Row Header 宽度 默认 24
/// </summary>
Expand Down
14 changes: 11 additions & 3 deletions test/UnitTest/Components/TableTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
Expand Down Expand Up @@ -1731,7 +1731,7 @@ public void FixedColumn_Ok()
builder.OpenComponent<TableColumn<Foo, string>>(0);
builder.AddAttribute(1, "Field", foo.Name);
builder.AddAttribute(2, "FieldExpression", Utility.GenerateValueExpression(foo, "Name", typeof(string)));
builder.AddAttribute(3, nameof(TableColumn<Foo, string>.Fixed), true);
builder.AddAttribute(3, nameof(TableColumn<,>.Fixed), true);
builder.CloseComponent();
});
pb.Add(a => a.DetailRowTemplate, foo => builder =>
Expand Down Expand Up @@ -1972,6 +1972,13 @@ public void FixedMultipleColumn_Ok()
});
});
Assert.Contains("left: 36px;", cut.Markup);

var table = cut.FindComponent<Table<Foo>>();
table.SetParametersAndRender(pb =>
{
pb.Add(a => a.TableSize, TableSize.Compact);
});
Assert.Contains("left: 28px;", cut.Markup);
}

[Theory]
Expand Down Expand Up @@ -2650,7 +2657,7 @@ public void ToolbarButton_Ok()
pb.Add(a => a.TableToolbarTemplate, builder =>
{
builder.OpenComponent<TableToolbarButton<Foo>>(0);
builder.AddAttribute(1, nameof(TableToolbarButton<Foo>.Text), "test-after");
builder.AddAttribute(1, nameof(TableToolbarButton<>.Text), "test-after");
builder.CloseComponent();
});
pb.Add(a => a.TableToolbarBeforeTemplate, builder =>
Expand Down Expand Up @@ -7390,6 +7397,7 @@ public void TableSize_Ok()
{
pb.Add(a => a.RenderMode, TableRenderMode.Table);
pb.Add(a => a.TableSize, TableSize.Normal);
pb.Add(a => a.IsMultipleSelect, true);
pb.Add(a => a.OnQueryAsync, OnQueryAsync(localizer));
pb.Add(a => a.TableColumns, foo => builder =>
{
Expand Down
Loading