aboutsummaryrefslogtreecommitdiff
path: root/node_modules/vuepress/lib/default-theme/SidebarLink.vue
diff options
context:
space:
mode:
authorruki <waruqi@gmail.com>2018-11-08 00:43:05 +0800
committerruki <waruqi@gmail.com>2018-11-07 22:18:30 +0800
commit89e95b3f143682ed9a006991bacf45c9dcba4818 (patch)
tree4f44cf41b828577d583890bdd5a1c31e8491a6ba /node_modules/vuepress/lib/default-theme/SidebarLink.vue
parentaa7f0199255277949790b41c56e8ec97dd4f0da4 (diff)
downloadxmake-docs-vuepress.tar.gz
xmake-docs-vuepress.zip
remove node_modulesvuepress
Diffstat (limited to 'node_modules/vuepress/lib/default-theme/SidebarLink.vue')
-rw-r--r--node_modules/vuepress/lib/default-theme/SidebarLink.vue91
1 files changed, 0 insertions, 91 deletions
diff --git a/node_modules/vuepress/lib/default-theme/SidebarLink.vue b/node_modules/vuepress/lib/default-theme/SidebarLink.vue
deleted file mode 100644
index 8288bf96..00000000
--- a/node_modules/vuepress/lib/default-theme/SidebarLink.vue
+++ /dev/null
@@ -1,91 +0,0 @@
-<script>
-import { isActive, hashRE, groupHeaders } from './util'
-
-export default {
- functional: true,
-
- props: ['item'],
-
- render (h, { parent: { $page, $site, $route }, props: { item }}) {
- // use custom active class matching logic
- // due to edge case of paths ending with / + hash
- const selfActive = isActive($route, item.path)
- // for sidebar: auto pages, a hash link should be active if one of its child
- // matches
- const active = item.type === 'auto'
- ? selfActive || item.children.some(c => isActive($route, item.basePath + '#' + c.slug))
- : selfActive
- const link = renderLink(h, item.path, item.title || item.path, active)
- const configDepth = $page.frontmatter.sidebarDepth != null
- ? $page.frontmatter.sidebarDepth
- : $site.themeConfig.sidebarDepth
- const maxDepth = configDepth == null ? 1 : configDepth
- const displayAllHeaders = !!$site.themeConfig.displayAllHeaders
- if (item.type === 'auto') {
- return [link, renderChildren(h, item.children, item.basePath, $route, maxDepth)]
- } else if ((active || displayAllHeaders) && item.headers && !hashRE.test(item.path)) {
- const children = groupHeaders(item.headers)
- return [link, renderChildren(h, children, item.path, $route, maxDepth)]
- } else {
- return link
- }
- }
-}
-
-function renderLink (h, to, text, active) {
- return h('router-link', {
- props: {
- to,
- activeClass: '',
- exactActiveClass: ''
- },
- class: {
- active,
- 'sidebar-link': true
- }
- }, text)
-}
-
-function renderChildren (h, children, path, route, maxDepth, depth = 1) {
- if (!children || depth > maxDepth) return null
- return h('ul', { class: 'sidebar-sub-headers' }, children.map(c => {
- const active = isActive(route, path + '#' + c.slug)
- return h('li', { class: 'sidebar-sub-header' }, [
- renderLink(h, path + '#' + c.slug, c.title, active),
- renderChildren(h, c.children, path, route, maxDepth, depth + 1)
- ])
- }))
-}
-</script>
-
-<style lang="stylus">
-@import './styles/config.styl'
-
-.sidebar .sidebar-sub-headers
- padding-left 1rem
- font-size 0.95em
-
-a.sidebar-link
- font-weight 400
- display inline-block
- color $textColor
- border-left 0.25rem solid transparent
- padding 0.35rem 1rem 0.35rem 1.25rem
- line-height 1.4
- width: 100%
- box-sizing: border-box
- &:hover
- color $accentColor
- &.active
- font-weight 600
- color $accentColor
- border-left-color $accentColor
- .sidebar-group &
- padding-left 2rem
- .sidebar-sub-headers &
- padding-top 0.25rem
- padding-bottom 0.25rem
- border-left none
- &.active
- font-weight 500
-</style>