| | |
| | | title: "Explorer", // title of the explorer component |
| | | folderClickBehavior: "collapse", // what happens when you click a folder ("link" to navigate to folder page on click or "collapse" to collapse folder on click) |
| | | folderDefaultState: "collapsed", // default state of folders ("collapsed" or "open") |
| | | useSavedState: true, // wether to use local storage to save "state" (which folders are opened) of explorer |
| | | useSavedState: true, // whether to use local storage to save "state" (which folders are opened) of explorer |
| | | // Sort order: folders first, then files. Sort folders and files alphabetically |
| | | sortFn: (a, b) => { |
| | | ... // default implementation shown later |
| | |
| | | |
| | | Want to customize it even more? |
| | | |
| | | - Removing table of contents: remove `Component.Explorer()` from `quartz.layout.ts` |
| | | - Removing explorer: remove `Component.Explorer()` from `quartz.layout.ts` |
| | | - (optional): After removing the explorer component, you can move the [[table of contents | Table of Contents]] component back to the `left` part of the layout |
| | | - Changing `sort`, `filter` and `map` behavior: explained in [[#Advanced customization]] |
| | | - Component: |