File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ let markdownCompiler = marked
12
12
let contentBase = ''
13
13
let currentPath = ''
14
14
let renderer = new marked . Renderer ( )
15
- const TOC = { }
15
+ const cacheTree = { }
16
16
let toc = [ ]
17
17
18
18
/**
@@ -120,11 +120,9 @@ export function sidebar (text, level) {
120
120
export function subSidebar ( el , level ) {
121
121
if ( el ) {
122
122
toc [ 0 ] && toc [ 0 ] . level === 1 && toc . shift ( )
123
- const tree = genTree ( TOC [ currentPath ] || toc , level )
123
+ const tree = cacheTree [ currentPath ] || genTree ( toc , level )
124
124
el . parentNode . innerHTML += treeTpl ( tree , '<ul class="app-sub-sidebar">' )
125
- }
126
- if ( toc . length ) {
127
- TOC [ currentPath ] = toc . slice ( )
125
+ cacheTree [ currentPath ] = tree
128
126
}
129
127
toc = [ ]
130
128
}
Original file line number Diff line number Diff line change @@ -15,8 +15,7 @@ export function genTree (toc, maxLevel) {
15
15
16
16
if ( level > maxLevel ) return
17
17
if ( last [ len ] ) {
18
- last [ len ] . children = last [ len ] . children || [ ]
19
- last [ len ] . children . push ( headline )
18
+ last [ len ] . children = ( last [ len ] . children || [ ] ) . concat ( headline )
20
19
} else {
21
20
headlines . push ( headline )
22
21
}
You can’t perform that action at this time.
0 commit comments