Skip to content

Commit b265fdd

Browse files
committed
feat(cover): add onlyCover option, close #382
1 parent f68ddf5 commit b265fdd

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

src/core/fetch/index.js

+14-4
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ export function fetchMixin (proto) {
8585
path = cover === true ? '_coverpage.md' : cover
8686
}
8787

88+
this.coverEnable = !!path
8889
if (path) {
8990
path = this.router.getFile(root + path)
9091
this.coverIsHTML = /\.html$/g.test(path)
@@ -98,12 +99,21 @@ export function fetchMixin (proto) {
9899
}
99100

100101
proto.$fetch = function (cb = noop) {
101-
this._fetchCover()
102-
this._fetch(result => {
103-
this.$resetEvents()
102+
const done = () => {
104103
callHook(this, 'doneEach')
105104
cb()
106-
})
105+
}
106+
107+
this._fetchCover()
108+
109+
if (this.coverEnable && this.config.onlyCover) {
110+
done()
111+
} else {
112+
this._fetch(result => {
113+
this.$resetEvents()
114+
done()
115+
})
116+
}
107117
}
108118
}
109119

src/core/render/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ function renderMain (html) {
3838
html = 'not found'
3939
}
4040

41+
dom.toggleClass(dom.getNode('main'), 'add', 'ready')
4142
this._renderTo('.markdown-section', html)
4243
// Render sidebar with the TOC
4344
!this.config.loadSidebar && this._renderSidebar()

src/themes/basic/_layout.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,16 @@ li input[type='checkbox'] {
217217

218218
/* main */
219219
main {
220-
display: block;
220+
display: none;
221221
position: relative;
222222
size: 100vw 100%;
223223
z-index: 0;
224224
}
225225

226+
main.ready {
227+
display: block;
228+
}
229+
226230
.anchor {
227231
display: inline-block;
228232
text-decoration: none;

0 commit comments

Comments
 (0)