feat(cover): add onlyCover option, close #382

This commit is contained in:
qingwei.li 2018-02-10 14:35:35 +08:00 committed by cinwell.li
commit b265fdd68a
3 changed files with 20 additions and 5 deletions

View file

@ -85,6 +85,7 @@ export function fetchMixin (proto) {
path = cover === true ? '_coverpage.md' : cover
}
this.coverEnable = !!path
if (path) {
path = this.router.getFile(root + path)
this.coverIsHTML = /\.html$/g.test(path)
@ -98,12 +99,21 @@ export function fetchMixin (proto) {
}
proto.$fetch = function (cb = noop) {
this._fetchCover()
this._fetch(result => {
this.$resetEvents()
const done = () => {
callHook(this, 'doneEach')
cb()
})
}
this._fetchCover()
if (this.coverEnable && this.config.onlyCover) {
done()
} else {
this._fetch(result => {
this.$resetEvents()
done()
})
}
}
}

View file

@ -38,6 +38,7 @@ function renderMain (html) {
html = 'not found'
}
dom.toggleClass(dom.getNode('main'), 'add', 'ready')
this._renderTo('.markdown-section', html)
// Render sidebar with the TOC
!this.config.loadSidebar && this._renderSidebar()

View file

@ -217,12 +217,16 @@ li input[type='checkbox'] {
/* main */
main {
display: block;
display: none;
position: relative;
size: 100vw 100%;
z-index: 0;
}
main.ready {
display: block;
}
.anchor {
display: inline-block;
text-decoration: none;