-
Notifications
You must be signed in to change notification settings - Fork 461
[Doc] Search for NavMenu #2297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
[Doc] Search for NavMenu #2297
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,59 @@ | ||
| @inject DemoNavProvider NavProvider | ||
| @using NavLink = FluentUI.Demo.Shared.NavLink | ||
| @inject DemoNavProvider NavProvider | ||
|
|
||
| <div class="navmenu"> | ||
| <input type="checkbox" title="Menu expand/collapse toggle" id="navmenu-toggle" class="navmenu-icon" /> | ||
| <label for="navmenu-toggle" class="navmenu-icon"><FluentIcon Value="@(new Icons.Regular.Size20.Navigation())" Color="Color.Neutral" /></label> | ||
| <nav class="sitenav" aria-labelledby="main-menu" > | ||
| <FluentNavMenu Id="main-menu" Title="Main menu" CustomToggle="true" > | ||
| @foreach(var item in NavProvider.NavMenuItems) | ||
| <nav class="sitenav" aria-labelledby="main-menu"> | ||
| <FluentSearch @bind-Value="@_term" Placeholder="search"/> | ||
| <FluentNavMenu Id="main-menu" Title="Main menu" CustomToggle="true"> | ||
| @foreach (var item in navMenuItems.Where(a => a.Visible)) | ||
| { | ||
| <DemoNavMenuItem Value="item"/> | ||
| <DemoNavMenuItem Value="item" /> | ||
| } | ||
| </FluentNavMenu> | ||
| </nav> | ||
| </div> | ||
|
|
||
|
|
||
| @code | ||
| { | ||
| string _term = default!; | ||
|
|
||
| IEnumerable<NavItem> navMenuItems | ||
| { | ||
| get | ||
| { | ||
| foreach (var item in NavProvider.NavMenuItems) | ||
| { | ||
| SetVisible(item); | ||
| } | ||
|
|
||
| return NavProvider.NavMenuItems; | ||
| } | ||
| } | ||
|
|
||
| private void SetVisible(NavItem item) | ||
| { | ||
| switch (item) | ||
| { | ||
| case NavGroup group: | ||
| foreach (var link in group.Children) | ||
| { | ||
| SetVisible(link); | ||
| } | ||
|
|
||
| item.Visible = group.Children.Any(a => a.Visible); | ||
| break; | ||
|
|
||
| case NavLink: | ||
| item.Visible = string.IsNullOrEmpty(_term) | ||
| ? true | ||
| : item.Title.Contains(_term, StringComparison.OrdinalIgnoreCase) | ||
| || item.Tags.Any(a => a.Contains(_term, StringComparison.OrdinalIgnoreCase)); | ||
| break; | ||
|
|
||
| default: break; | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,16 +13,23 @@ public abstract record NavItem | |
| public string? Href { get; init; } | ||
| public NavLinkMatch Match { get; init; } = NavLinkMatch.Prefix; | ||
| public Icon Icon { get; init; } = new Icons.Regular.Size20.Document(); | ||
| public bool Visible { get; set; } | ||
| public IEnumerable<string> Tags { get; set; } = []; | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Possible to add tags for search |
||
| } | ||
|
|
||
| public record NavLink : NavItem | ||
| { | ||
| public NavLink(string? href, Icon icon, string title, NavLinkMatch match = NavLinkMatch.Prefix) | ||
| public NavLink(string? href, | ||
| Icon icon, | ||
| string title, | ||
| NavLinkMatch match = NavLinkMatch.Prefix, | ||
| IEnumerable<string>? tags = null) | ||
| { | ||
| Href = href; | ||
| Icon = icon; | ||
| Title = title; | ||
| Match = match; | ||
| Tags = tags ?? []; | ||
| } | ||
| } | ||
|
|
||
|
|
@@ -32,13 +39,14 @@ public record NavGroup : NavItem | |
| public string Gap { get; init; } | ||
| public IReadOnlyList<NavItem> Children { get; } | ||
|
|
||
| public NavGroup(Icon icon, string title, bool expanded, string gap, List<NavItem> children) | ||
| public NavGroup(Icon icon, string title, bool expanded, string gap, List<NavItem> children, IEnumerable<string>? tags = null) | ||
| { | ||
| Href = null; | ||
| Icon = icon; | ||
| Title = title; | ||
| Expanded = expanded; | ||
| Gap = gap; | ||
| Children = children.AsReadOnly(); | ||
| Tags = tags ?? []; | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Filter