Skip to content

Commit

Permalink
Sort category and non-category nav link according to order in left me…
Browse files Browse the repository at this point in the history
…nu (opensearch-project#60)

* change order for home

Signed-off-by: yuye-aws <[email protected]>

* Sort category and non-category navlink types in left menu

Signed-off-by: yuye-aws <[email protected]>

* change order for overview when inside workspace

Signed-off-by: yuye-aws <[email protected]>

* assign sorted unknowns to another variable

Signed-off-by: yuye-aws <[email protected]>

* change annotation

Signed-off-by: yuye-aws <[email protected]>

* refactor function getMergedNavLinks in left menu

Signed-off-by: yuye-aws <[email protected]>

* fix zero order bug

Signed-off-by: yuye-aws <[email protected]>

* add annotation

Signed-off-by: yuye-aws <[email protected]>

---------

Signed-off-by: yuye-aws <[email protected]>
  • Loading branch information
yuye-aws authored Jul 26, 2023
1 parent 3f7a55a commit efbb1ce
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 41 deletions.
110 changes: 71 additions & 39 deletions src/core/public/chrome/ui/header/collapsible_nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,30 @@ function getOrderedCategories(
);
}

function getMergedNavLinks(
orderedCategories: string[],
uncategorizedLinks: ChromeNavLink[],
categoryDictionary: ReturnType<typeof getAllCategories>
): Array<string | ChromeNavLink> {
const uncategorizedLinksWithOrder = sortBy(
uncategorizedLinks.filter((link) => link.order !== null),
'order'
);
const uncategorizedLinksWithoutOrder = uncategorizedLinks.filter((link) => link.order === null);
const orderedCategoryWithOrder = orderedCategories
.filter((categoryName) => categoryDictionary[categoryName]?.order !== null)
.map((categoryName) => ({ categoryName, order: categoryDictionary[categoryName]?.order }));
const orderedCategoryWithoutOrder = orderedCategories.filter(
(categoryName) => categoryDictionary[categoryName]?.order === null
);
const mergedNavLinks = sortBy(
[...uncategorizedLinksWithOrder, ...orderedCategoryWithOrder],
'order'
).map((navLink) => ('categoryName' in navLink ? navLink.categoryName : navLink));
// if order is not defined , categorized links will be placed before uncategorized links
return [...mergedNavLinks, ...orderedCategoryWithoutOrder, ...uncategorizedLinksWithoutOrder];
}

function getCategoryLocalStorageKey(id: string) {
return `core.navGroup.${id}`;
}
Expand Down Expand Up @@ -122,9 +146,14 @@ export function CollapsibleNav({
const appId = useObservable(observables.appId$, '');
const lockRef = useRef<HTMLButtonElement>(null);
const groupedNavLinks = groupBy(navLinks, (link) => link?.category?.id);
const { undefined: unknowns = [], ...allCategorizedLinks } = groupedNavLinks;
const { undefined: uncategorizedLinks = [], ...allCategorizedLinks } = groupedNavLinks;
const categoryDictionary = getAllCategories(allCategorizedLinks);
const orderedCategories = getOrderedCategories(allCategorizedLinks, categoryDictionary);
const mergedNavLinks = getMergedNavLinks(
orderedCategories,
uncategorizedLinks,
categoryDictionary
);

const readyForEUI = (link: ChromeNavLink, needsIcon: boolean = false) => {
return createEuiListItem({
Expand Down Expand Up @@ -277,47 +306,50 @@ export function CollapsibleNav({
</>
) */}

{/* OpenSearchDashboards, Observability, Security, and Management sections */}
{orderedCategories.map((categoryName) => {
const category = categoryDictionary[categoryName]!;
const opensearchLinkLogo =
category.id === 'opensearchDashboards' ? customSideMenuLogo() : category.euiIconType;
{/* merged NavLinks */}
{mergedNavLinks.map((item, i) => {
if (typeof item === 'string') {
const category = categoryDictionary[item]!;
const opensearchLinkLogo =
category.id === 'opensearchDashboards' ? customSideMenuLogo() : category.euiIconType;

return (
<EuiCollapsibleNavGroup
key={category.id}
iconType={opensearchLinkLogo}
title={category.label}
isCollapsible={true}
initialIsOpen={getIsCategoryOpen(category.id, storage)}
onToggle={(isCategoryOpen) => setIsCategoryOpen(category.id, isCategoryOpen, storage)}
data-test-subj={`collapsibleNavGroup-${category.id}`}
data-test-opensearch-logo={opensearchLinkLogo}
>
<EuiListGroup
aria-label={i18n.translate('core.ui.primaryNavSection.screenReaderLabel', {
defaultMessage: 'Primary navigation links, {category}',
values: { category: category.label },
})}
listItems={allCategorizedLinks[categoryName].map((link) => readyForEUI(link))}
maxWidth="none"
color="subdued"
gutterSize="none"
size="s"
/>
</EuiCollapsibleNavGroup>
);
return (
<EuiCollapsibleNavGroup
key={category.id}
iconType={opensearchLinkLogo}
title={category.label}
isCollapsible={true}
initialIsOpen={getIsCategoryOpen(category.id, storage)}
onToggle={(isCategoryOpen) =>
setIsCategoryOpen(category.id, isCategoryOpen, storage)
}
data-test-subj={`collapsibleNavGroup-${category.id}`}
data-test-opensearch-logo={opensearchLinkLogo}
>
<EuiListGroup
aria-label={i18n.translate('core.ui.primaryNavSection.screenReaderLabel', {
defaultMessage: 'Primary navigation links, {category}',
values: { category: category.label },
})}
listItems={allCategorizedLinks[item].map((link) => readyForEUI(link))}
maxWidth="none"
color="subdued"
gutterSize="none"
size="s"
/>
</EuiCollapsibleNavGroup>
);
} else {
return (
<EuiCollapsibleNavGroup data-test-subj={`collapsibleNavGroup-noCategory`} key={i}>
<EuiListGroup flush>
<EuiListGroupItem color="text" size="s" {...readyForEUI(item, true)} />
</EuiListGroup>
</EuiCollapsibleNavGroup>
);
}
})}

{/* Things with no category (largely for custom plugins) */}
{unknowns.map((link, i) => (
<EuiCollapsibleNavGroup data-test-subj={`collapsibleNavGroup-noCategory`} key={i}>
<EuiListGroup flush>
<EuiListGroupItem color="text" size="s" {...readyForEUI(link, true)} />
</EuiListGroup>
</EuiCollapsibleNavGroup>
))}

{/* Docking button only for larger screens that can support it*/}
<EuiShowFor sizes={['l', 'xl']}>
<EuiCollapsibleNavGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/workspace/public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export class WorkspacesPlugin implements Plugin<{}, {}, WorkspacesPluginSetupDep
...chromeNavLink,
hidden: currentWorkspace !== null,
euiIconType: 'logoOpenSearch',
order: 1000,
order: 0,
};
filteredNavLinks.set(chromeNavLink.id, homeNavLink);
} else {
Expand Down Expand Up @@ -239,7 +239,7 @@ export class WorkspacesPlugin implements Plugin<{}, {}, WorkspacesPluginSetupDep
baseUrl: overviewUrl,
href: overviewUrl,
euiIconType: 'grid',
order: 1000,
order: 0,
};
filteredNavLinks.set(overviewId, overviewNavLink);
}
Expand Down

0 comments on commit efbb1ce

Please sign in to comment.