refactor(core): add router

This commit is contained in:
qingwei.li 2017-02-18 11:41:33 +08:00 committed by cinwell.li
commit 30da0d5d46
17 changed files with 316 additions and 88 deletions

View file

@ -1,23 +1,33 @@
import progressbar from '../render/progressbar'
import { noop } from '../util/core'
const cache = {}
const RUN_VERSION = Date.now()
/**
* Simple ajax get
* @param {String} url
* @param {Boolean} [loading=false] has loading bar
* @param {string} url
* @param {boolean} [hasBar=false] has progress bar
* @return { then(resolve, reject), abort }
*/
export function get (url, hasLoading = false) {
export function get (url, hasBar = false) {
const xhr = new XMLHttpRequest()
const on = function () {
xhr.addEventListener.apply(xhr, arguments)
}
url += (/\?(\w+)=/g.test(url) ? '&' : '?') + `v=${RUN_VERSION}`
if (cache[url]) {
return { then: cb => cb(cache[url]), abort: noop }
}
xhr.open('GET', url)
xhr.send()
return {
then: function (success, error = noop) {
const on = xhr.addEventListener
if (hasLoading) {
if (hasBar) {
const id = setInterval(_ => progressbar({}), 500)
on('progress', progressbar)
@ -29,9 +39,14 @@ export function get (url, hasLoading = false) {
on('error', error)
on('load', ({ target }) => {
target.status >= 400 ? error(target) : success(target.response)
if (target.status >= 400) {
error(target)
} else {
cache[url] = target.response
success(target.response)
}
})
},
abort: () => xhr.readyState !== 4 && xhr.abort()
abort: _ => xhr.readyState !== 4 && xhr.abort()
}
}

View file

@ -1,13 +1,43 @@
import { get } from './ajax'
import { callHook } from '../init/lifecycle'
import { getCurrentRoot } from '../route/util'
export function fetchMixin (Docsify) {
Docsify.prototype.$fetch = function (path) {
// 加载侧边栏、导航、内容
let last
Docsify.prototype._fetch = function (cb) {
const { path } = this.route
const { loadNavbar, loadSidebar } = this.config
const currentRoot = getCurrentRoot(path)
// Abort last request
last && last.abort && last.abort()
last = get(this.$getFile(path), true)
last.then(text => {
this._renderMain(text)
if (!loadSidebar) return cb()
const fn = result => { this._renderSidebar(result); cb() }
// Load sidebar
get(this.$getFile(currentRoot + loadSidebar))
.then(fn, _ => get(loadSidebar).then(fn))
},
_ => this._renderMain(null))
// Load nav
loadNavbar &&
get(this.$getFile(currentRoot + loadNavbar))
.then(
this._renderNav,
_ => get(loadNavbar).then(this._renderNav)
)
}
}
export function initFetch (vm) {
vm.$fetch(result => {
vm._fetch(result => {
vm.$resetEvents()
callHook(vm, 'doneEach')
})