Skip to content

Commit

Permalink
refactor: load 'active header links' on demand
Browse files Browse the repository at this point in the history
  • Loading branch information
ulivz committed May 24, 2018
1 parent 4c09627 commit b0c9e11
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 44 deletions.
47 changes: 47 additions & 0 deletions lib/app/root-mixins/activeHeaderLinks.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import store from '@app/store'
import throttle from 'lodash.throttle'

export default {
mounted () {
window.addEventListener('scroll', this.onScroll)
},
methods: {
onScroll: throttle(function () {
this.setActiveHash()
}, 300),
setActiveHash () {
const sidebarLinks = [].slice.call(document.querySelectorAll('.sidebar-link'))
const anchors = [].slice.call(document.querySelectorAll('.header-anchor'))
.filter(anchor => sidebarLinks.some(sidebarLink => sidebarLink.hash === anchor.hash))

const scrollTop = Math.max(
window.pageYOffset,
document.documentElement.scrollTop,
document.body.scrollTop
)

for (let i = 0; i < anchors.length; i++) {
const anchor = anchors[i]
const nextAnchor = anchors[i + 1]

const isActive = i === 0 && scrollTop === 0 ||
(scrollTop >= anchor.parentElement.offsetTop + 10 &&
(!nextAnchor || scrollTop < nextAnchor.parentElement.offsetTop - 10))

if (isActive && decodeURIComponent(this.$route.hash) !== decodeURIComponent(anchor.hash)) {
store.disableScrollBehavior = true
this.$router.replace(decodeURIComponent(anchor.hash), () => {
// execute after scrollBehavior handler.
this.$nextTick(() => {
store.disableScrollBehavior = false
})
})
return
}
}
}
},
beforeDestroy () {
window.removeEventListener('scroll', this.onScroll)
}
}
8 changes: 7 additions & 1 deletion lib/app/root-mixins/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
import updateMeta from './updateMeta'
export default [updateMeta]
import activeHeaderLinks from '@activeHeaderLinks'

console.log(activeHeaderLinks)
export default [
updateMeta, // required
activeHeaderLinks // optional
]
42 changes: 0 additions & 42 deletions lib/default-theme/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ import Navbar from './Navbar.vue'
import Page from './Page.vue'
import Sidebar from './Sidebar.vue'
import { pathToComponentName } from '@app/util'
import store from '@app/store'
import { resolveSidebarItems } from './util'
import throttle from 'lodash.throttle'
export default {
components: { Home, Page, Sidebar, Navbar },
Expand Down Expand Up @@ -88,8 +86,6 @@ export default {
},
mounted () {
window.addEventListener('scroll', this.onScroll)
// configure progress bar
nprogress.configure({ showSpinner: false })
Expand All @@ -106,10 +102,6 @@ export default {
})
},
beforeDestroy () {
window.removeEventListener('scroll', this.onScroll)
},
methods: {
toggleSidebar (to) {
this.isSidebarOpen = typeof to === 'boolean' ? to : !this.isSidebarOpen
Expand All @@ -131,40 +123,6 @@ export default {
this.toggleSidebar(false)
}
}
},
onScroll: throttle(function () {
this.setActiveHash()
}, 300),
setActiveHash () {
if (this.$site.themeConfig.disableActiveHash) {
return
}
const sidebarLinks = [].slice.call(document.querySelectorAll('.sidebar-link'))
const anchors = [].slice.call(document.querySelectorAll('.header-anchor'))
.filter(anchor => sidebarLinks.some(sidebarLink => sidebarLink.hash === anchor.hash))
const scrollTop = Math.max(window.pageYOffset, document.documentElement.scrollTop, document.body.scrollTop)
for (let i = 0; i < anchors.length; i++) {
const anchor = anchors[i]
const nextAnchor = anchors[i + 1]
const isActive = i === 0 && scrollTop === 0 ||
(scrollTop >= anchor.parentElement.offsetTop + 10 &&
(!nextAnchor || scrollTop < nextAnchor.parentElement.offsetTop - 10))
if (isActive && decodeURIComponent(this.$route.hash) !== decodeURIComponent(anchor.hash)) {
store.disableScrollBehavior = true
this.$router.replace(decodeURIComponent(anchor.hash), () => {
// execute after scrollBehavior handler.
this.$nextTick(() => {
store.disableScrollBehavior = false
})
})
return
}
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = async function prepare (sourceDir) {
await writeTemp('routes.js', [
componentCode,
routesCode
].join('\n\n'))
].join('\n'))

// 3. generate siteData
const dataCode = `export const siteData = ${JSON.stringify(options.siteData, null, 2)}`
Expand Down
13 changes: 13 additions & 0 deletions lib/webpack/createBaseConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const path = require('path')

module.exports = function createBaseConfig ({
siteConfig,
siteData,
sourceDir,
outDir,
publicPath,
Expand Down Expand Up @@ -56,6 +57,18 @@ module.exports = function createBaseConfig ({
.add(path.resolve(__dirname, '../../../'))
.add('node_modules')

// Load extra root mixins on demand.
const { activeHeaderLinks = true } = siteData.themeConfig
const rootMixinsLoadingConfig = { activeHeaderLinks }
for (const mixinName in rootMixinsLoadingConfig) {
const enabled = rootMixinsLoadingConfig[mixinName]
config.resolve
.alias.set(`@${mixinName}`, enabled
? path.resolve(__dirname, `../app/root-mixins/${mixinName}.js`)
: path.resolve(__dirname, './noopModule.js')
)
}

config.resolveLoader
.set('symlinks', true)
.modules
Expand Down

0 comments on commit b0c9e11

Please sign in to comment.