Skip to content

feat(ui): group overloaded functions into tabs - #1047

Closed
moshams272 wants to merge 2 commits into
nodejs:mainfrom
moshams272:feat/group-overload-functions-tabs
Closed

feat(ui): group overloaded functions into tabs#1047
moshams272 wants to merge 2 commits into
nodejs:mainfrom
moshams272:feat/group-overload-functions-tabs

Conversation

@moshams272

@moshams272 moshams272 commented Aug 19, 2026

Copy link
Copy Markdown
Contributor

Description

This PR introduces a new tabbed UI for overloaded functions. This implementation is a direct result of the discussions in #1038. It updates the MDX AST to group overloads into OverloadTabs component(using tabs & react-tabs), utilizing CSS Grid stacking to prevent layout shifts; as it takes fixed height from the longest one.

Note: Using AI to write JSDocs & traverse some errors ;)

Validation

Add tests, and there are visual results:

Before:

image

After:

image

Related Issues

None

Check List

  • I have read the Contributing Guidelines and made commit messages that follow the guideline.
  • I have run node --run test and all tests passed.
  • I have check code formatting with node --run format:check & node --run lint.
  • I've covered new added functionality with unit tests if necessary.

@moshams272
moshams272 requested a review from a team as a code owner August 19, 2026 21:58
@vercel

vercel Bot commented Aug 19, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
api-docs-tooling Ready Ready Preview Aug 19, 2026 9:59pm

Request Review

@moshams272

Copy link
Copy Markdown
Contributor Author

You can view the changes from here: vercel-preview

@avivkeller

Copy link
Copy Markdown
Member

It's an interesting idea, but I think it makes searching harder, e.g. if I want to search for Buffer.from(buffer): Buffer, I need to make sure I'm on the right tab

@avivkeller

Copy link
Copy Markdown
Member

Oddly enough, I'm fine with the showing of multiple overloads in our current state, and consumers can reformat their docs how they like.

Thanks for this demo, however :-)!

@moshams272

Copy link
Copy Markdown
Contributor Author

Hmm, fair enough! Thanks for your time 🤍

@moshams272 moshams272 closed this Aug 20, 2026
@moshams272
moshams272 deleted the feat/group-overload-functions-tabs branch August 20, 2026 13:04
@ovflowd

ovflowd commented Aug 20, 2026

Copy link
Copy Markdown
Member

I actually have a different opinion and was thinking of this differently. Instead of the simple 1, 2 on the Overload headers which makes distinction hard, I feel that it could look like Code Tabs; So it becomes pretty apparent that there are more versions of this method.

What it means is that the main method signature is always the same (the initial tiny snippet box under the header) and only the attributes and descriptions/etc are under "codetabs"

I still feel that this would be much simpler.

and consumers can reformat their docs how they like.

Well I do feel our web generator could have a default stance on overloads, as it is already an opinionated style.

@ovflowd

ovflowd commented Aug 20, 2026

Copy link
Copy Markdown
Member

It's an interesting idea, but I think it makes searching harder, e.g. if I want to search for Buffer.from(buffer): Buffer, I need to make sure I'm on the right tab

That much I agree. I think that anchorinhg can be solved with the tab being switched to the right one based on the click... For pure command+f/ctrl+f searches, I'm unsure of either, we could either think a bit more about this or keep the current status quo.

My goal was to make overloads simpler to identify / consume less vertical space and be better organized.

@moshams272

moshams272 commented Aug 20, 2026

Copy link
Copy Markdown
Contributor Author

I initially thought about using the signatures/parameters as the tab titles, but I hit two major edge cases:

  • Extremely long parameters: If an overload has 4-5 parameters or long variable names, the tab title becomes massive and completely breaks the UI. (AugustinMauroy actually pointed out a similar issue).

  • Identical signature, different types: If we only show the signature, the tabs will look identical!

That's why I retreated to indexes, and to make clear that tabs are for overloads, I've placed a header before the component itself (above indexes) contains "Overloads".

After Aviv's comment, I searched about it and found that the web standard solution is using
Accordion(details & summary tags) , It'll solve the search problem but it'll be vertical, not horizontal. we can put the signature also, but I imagined that design and I hate it, so I closed this PR ;)

@ovflowd

ovflowd commented Aug 21, 2026

Copy link
Copy Markdown
Member

Extremely long parameters: If an overload has 4-5 parameters or long variable names, the tab title becomes massive and completely breaks the UI. (AugustinMauroy actually pointed out a similar #1038 (comment)).

Could you show an example of what you're thinking? Are you referring to header sections?

Identical signature, different types: If we only show the signature, the tabs will look identical!

Im unsure I got what you're saying. Im saying that the initial signature box should be shared across overloads and the only tabbed pieces are the attributes/descriptions/examples

image

So this is not tabbed, but the below gets tabbed

image

And the tabbing design could be that the whole thing gets surrounded by the same box/tabbing header we use for code tabs, but instead of the content being code, it is the actual content of that overload (the attributes table, description, example, code boxes...) and the title of each tab is "Overload #1", "Overload #2"

@moshams272

Copy link
Copy Markdown
Contributor Author

Could you show an example of what you're thinking? Are you referring to header sections?
Imagne that the function signature has 10 params...

That header "Overloads" tells the developers that they r overloads:
Screenshot from 2026-08-19 23-52-12

you can review the "After" image in description of that PR as well.

Im unsure I got what you're saying. Im saying that the initial signature box should be shared across overloads and the only tabbed pieces are the attributes/descriptions/examples
And the tabbing design could be that the whole thing gets surrounded by the same box/tabbing header we use for code tabs, but instead of the content being code, it is the actual content of that overload (the attributes table, description, example, code boxes...) and the title of each tab is "Overload #1", "Overload #2"

Overloads siganture not always the same to do that 👀, For example:

lol(option, callback)
lol(index, option, callback)

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.

3 participants