Skip to content

Commit 554c862

Browse files
committed
rewired menu, better header event handling
1 parent b70303a commit 554c862

7 files changed

Lines changed: 14706 additions & 3031 deletions

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,13 @@ We have added comments in the code to make it explicit which parts are 100% writ
9090
* Raptor mini: take a look how I wired the environement from mashlib into solid-panes. It is not quite right, can you suggest fixes?
9191

9292
* Raptor mini: Update the code to use the new solid-ui-header component. Keep in mind the log in and sign up are wired in specific ways.
93+
94+
* Auto: chnage the menu to fill up the menu items like in the code: async function getMenuItems (outliner: any) {
95+
const items = await outliner.getDashboardItems()
96+
return items.map((element) => {
97+
return {
98+
label: element.label,
99+
onclick: () => openDashboardPane(outliner, element.tabName || element.paneName)
100+
}
101+
})
102+
}

0 commit comments

Comments
 (0)