vitepress icon indicating copy to clipboard operation
vitepress copied to clipboard

Support multi-level navbar

Open MikeCZ23 opened this issue 10 months ago • 4 comments

Is your feature request related to a problem? Please describe.

yes

Describe the solution you'd like

{
   "text":"level1",
   "collapsible":true,
   "collapsed":false,
   "items":[
      {
         "text":"level1-1",
         "collapsible":true,
         "collapsed":false,
         "items":[
            {
               "text":"level1-1-1 ",
               "link":"/01.1"
            },
            {
               "text":"level1-1-2 ",
               "link":"/01.2"
            }
         ]
      },
      {
         "text":"level1-2",
         "collapsible":true,
         "collapsed":false,
         "items":[
            {
               "text":"level1-2-1 ",
               "link":"/02.1"
            },
            {
               "text":"level1-2-2 ",
               "link":"/02.2"
            }
         ]
      }
   ]
}

Describe alternatives you've considered

No response

Additional context

No response

Validations

MikeCZ23 avatar Apr 21 '24 09:04 MikeCZ23

You mean you wanna have nested nav bar menu? Do you have any example how it might look like?

kiaking avatar Apr 22 '24 11:04 kiaking

You mean you wanna have nested nav bar menu? Do you have any example how it might look like?

Snímek obrazovky 2024-04-22 133600 something like this

MikeCZ23 avatar Apr 22 '24 11:04 MikeCZ23

Ah I see. Gotcha. Could be cool to have but maybe with a bit different design. Popping up different dialog on top of another dialog becomes tricky when we have many nested menu 👀

I think switching panel inside dialog would be more scalable. Maybe I'll whip up some design for this.

kiaking avatar Apr 24 '24 10:04 kiaking

Ah I see. Gotcha. Could be cool to have but maybe with a bit different design. Popping up different dialog on top of another dialog becomes tricky when we have many nested menu 👀

I think switching panel inside dialog would be more scalable. Maybe I'll whip up some design for this.

status? :)

MikeCZ23 avatar May 30 '24 21:05 MikeCZ23