Skip to content
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

[Aksel.nav.no] Implemented support for new lvl 1 articles #3658

Merged
merged 5 commits into from
Mar 14, 2025

Conversation

KenAJoh
Copy link
Collaborator

@KenAJoh KenAJoh commented Mar 13, 2025

Description

This updates the actual support for new lvl 1 articles in the sidebar. You will now be able to set the category to "Frittstående" (standalone), and make the article appear at the top of all the other "Dropdown" sections in the sidebar.

Component Checklist 📝

  • JSDoc
  • Examples
  • Documentation / Decision Records
  • Storybook
  • Style mappings (@navikt/core/css/config/_mappings.js)
  • Component tokens (@navikt/core/css/tokens.json)
  • CSS class deprecations (@navikt/aksel-stylelint/src/deprecations.ts)
  • Exports (@navikt/core/react/src/index.ts and @navikt/core/react/package.json)
  • New component? CSS import (@navikt/core/css/index.css)
  • Breaking change? Update migration guide. Consider codemod.
  • Changeset (Format: <Component>: <gitmoji?> <Text>. E.g. "Button: ✨ Add feature xyz.")

Copy link

changeset-bot bot commented Mar 13, 2025

⚠️ No Changeset found

Latest commit: 85024d7

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@KenAJoh KenAJoh changed the title Sidebar implemented 2 [Aksel.nav.no] Implemented support for new lvl 1 articles Mar 13, 2025
@KenAJoh KenAJoh changed the base branch from main to darkside-sanity-sidebar-taxonomy March 13, 2025 12:26
@KenAJoh KenAJoh requested a review from Copilot March 13, 2025 12:27
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This pull request adds support for new level 1 articles in the sidebar by introducing a new "standalone" category that ensures these articles appear at the top of the sidebar. Key changes include:

  • Renaming and updating sidebar types to DesignsystemSidebarSectionT.
  • Adding tests to verify that standalone articles are correctly positioned and sorted.
  • Updating various page components to utilize the new sidebar type.

Reviewed Changes

Copilot reviewed 11 out of 11 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
aksel.nav.no/website/components/utils/tests/generate-sidebar.test.ts Added tests to check ordering of standalone articles
aksel.nav.no/website/components/utils/generate-sidebar.ts Updated implementation to filter, sort, and map standalone pages using the new type
aksel.nav.no/website/components/types/sanity-schema.ts Replaced SidebarT with DesignsystemSidebarSectionT and adjusted related typings
aksel.nav.no/website/pages/* Updated sidebar type usage in multiple page components
aksel.nav.no/website/components/layout/sidebar/Sidebar.tsx Updated type definitions and removed unused code for consistency
aksel.nav.no/website/components/layout/templates/WithSidebar.tsx Adjusted sidebar type and removed breadcrumb logic

Comment on lines +16 to +20
.sort((a, b) => {
return a?.heading.localeCompare(b?.heading);
})
.sort(sortIndex)
.sort(sortDeprecated)
Copy link
Preview

Copilot AI Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Chaining multiple sort calls (first by heading, then by index, then by deprecated status) may lead to unexpected ordering, as each sort call reorders the array independently. Consider combining the comparator logic into a single sort call to ensure a stable and clear ordering.

Suggested change
.sort((a, b) => {
return a?.heading.localeCompare(b?.heading);
})
.sort(sortIndex)
.sort(sortDeprecated)
.sort(combinedComparator)

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

@KenAJoh KenAJoh merged commit 164e5ed into darkside-sanity-sidebar-taxonomy Mar 14, 2025
3 checks passed
@KenAJoh KenAJoh deleted the sidebar-implemented-2 branch March 14, 2025 14:39
KenAJoh added a commit that referenced this pull request Mar 14, 2025
* 📝 Reposition sanity fields

* ✨ Added new standalone-category to sanity docs

* ✨ Added validation to make sure standalone articles dont overlap with sections

* 🐛 Always error out if using standalone articles until implemented

* 🔥 Removed temp removal of feature

* 🐛 Check for undefined slug

* [Aksel.nav.no] Implemented support for new lvl 1 articles  (#3658)

* ✨ Added support for new lvl 1 articles

* 🧪 Added tests for new sidebar

* 🔥 Removed breadcrumb from WithSidebar layout

* 🐛 Revert to prod dataset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant