2.5 KiB
2.5 KiB
SideNav
The SideNav is a container that provides sidebar navigation functionality
Extends: Container
Properties
| Property | Type | Default | Description |
|---|---|---|---|
| activeTab | number | nil | The currently active navigation item ID |
| sidebarWidth | number | 12 | Width of the sidebar navigation area |
| tabs | table | {} | List of navigation item definitions |
| sidebarBackground | color | gray | Background color for the sidebar area |
| activeTabBackground | color | white | Background color for the active navigation item |
| activeTabTextColor | color | black | Foreground color for the active navigation item text |
| sidebarScrollOffset | number | 0 | Current scroll offset for navigation items in scrollable mode |
| sidebarPosition | string | left | Position of the sidebar ("left" or "right") |
Functions
| Method | Returns | Description |
|---|---|---|
| SideNav:newTab | table | Creates a new navigation item handler proxy |
| SideNav:setTab | SideNav | Sets an element to belong to a specific navigation item |
| SideNav:addElement | table | Adds an element to the SideNav and assigns it to the active navigation item |
| SideNav:setActiveTab | - | Sets the active navigation item |
| SideNav:scrollSidebar | SideNav | Scrolls the sidebar up or down |
| SideNav:setCursor | - | Sets the cursor position; accounts for sidebar offset when delegating to parent |
SideNav:newTab(title)
returns a proxy for adding elements to the navigation item
Parameters
titlestringThe title of the navigation item
Returns
tabletabHandlerThe navigation item handler proxy for adding elements
SideNav:setTab(element, tabId)
Parameters
elementtableThe element to assign to a navigation itemtabIdnumberThe ID of the navigation item to assign the element to
Returns
SideNavselfFor method chaining
SideNav:addElement(elementType, tabId)
Parameters
elementTypestringThe type of element to addtabIdnumberOptional navigation item ID, defaults to active item
Returns
tableelementThe created element
SideNav:setActiveTab(tabId)
Parameters
tabIdnumberThe ID of the navigation item to activate
SideNav:scrollSidebar(direction)
Scrolls the sidebar up or down
Parameters
directionnumber-1 to scroll up, 1 to scroll down
Returns
SideNavselfFor method chaining