Merge pull request #17431 from abpframework/EngincanV/fix-layout-hooks

Fix layout hooks filtering and show layout hooks for the specified layouts
pull/17435/head
maliming 2 years ago committed by GitHub
commit 253f3855b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,7 +26,7 @@ public partial class LayoutHook : ComponentBase
{
layoutHooks = layoutHooks
.Where(IsComponentBase)
.WhereIf(string.IsNullOrWhiteSpace(Layout), x => x.Layout == Layout)
.WhereIf(!string.IsNullOrWhiteSpace(Layout), x => x.Layout == Layout)
.ToList();
}

@ -16,10 +16,12 @@ public class LayoutHookViewComponent : AbpViewComponent
Options = options.Value;
}
public virtual IViewComponentResult Invoke(string name, string layout)
public virtual IViewComponentResult Invoke(string name, string? layout)
{
var hooks = Options.Hooks.GetOrDefault(name)?.Where(x => x.Layout == layout && IsViewComponent(x)).ToArray()
?? Array.Empty<LayoutHookInfo>();
var hooks = Options.Hooks.GetOrDefault(name)?
.Where(IsViewComponent)
.WhereIf(!string.IsNullOrWhiteSpace(layout), x => x.Layout == layout)
.ToArray() ?? Array.Empty<LayoutHookInfo>();
return View(
"~/Volo/Abp/AspNetCore/Mvc/UI/Components/LayoutHook/Default.cshtml",

@ -9,7 +9,7 @@ public static class ViewComponentHelperLayoutHookExtensions
public static Task<IHtmlContent> InvokeLayoutHookAsync(
this IViewComponentHelper componentHelper,
string name,
string layout)
string? layout = null)
{
return componentHelper.InvokeAsync(
typeof(LayoutHookViewComponent),

Loading…
Cancel
Save