feat(explorer): Add active class to current folder in explorer (#2196)
This commit is contained in:
parent
c2dcc63b5f
commit
f346a01296
1 changed files with 4 additions and 0 deletions
|
|
@ -111,6 +111,10 @@ function createFolderNode(
|
||||||
const folderPath = node.slug
|
const folderPath = node.slug
|
||||||
folderContainer.dataset.folderpath = folderPath
|
folderContainer.dataset.folderpath = folderPath
|
||||||
|
|
||||||
|
if (currentSlug === folderPath) {
|
||||||
|
folderContainer.classList.add("active")
|
||||||
|
}
|
||||||
|
|
||||||
if (opts.folderClickBehavior === "link") {
|
if (opts.folderClickBehavior === "link") {
|
||||||
// Replace button with link for link behavior
|
// Replace button with link for link behavior
|
||||||
const button = titleContainer.querySelector(".folder-button") as HTMLElement
|
const button = titleContainer.querySelector(".folder-button") as HTMLElement
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue