Skip to content

Commit 96c7e24

Browse files
authored
Add VuePress infrastructure for preview (openhab#870)
This allows a preview VuePress resembling the final website to be built in order to preview the main documentation (in the openhab-docs repository, content fetched from other repos is excluded). Started to refactor the sidebar navigation items and scripts processing pages for VuePress compatibility so they can be maintained in the openhab-docs repository. Signed-off-by: Yannick Schaus <[email protected]>
1 parent ae90389 commit 96c7e24

29 files changed

+12647
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ project.pbxproj
1717

1818
#vscode
1919
.vscode
20+
21+
# Built docs
22+
docs
23+
addons/integrations
24+
vuepress

.vuepress/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
addons-*
2+
public/logos
3+
tmp

.vuepress/add_placeholders.rb

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This function will add placeholders for pages that are out of scope of the docs preview
2+
3+
def add_placeholder_pages()
4+
puts ">>> Adding placeholder pages for preview"
5+
[
6+
"docs/concepts",
7+
"docs/configuration/iconsets/classic",
8+
"docs/configuration/ui/habmin",
9+
"docs/configuration/ui/habot",
10+
"docs/configuration/ui/basic",
11+
"docs/configuration/ui/basic",
12+
"docs/configuration/ui/classic",
13+
"docs/ecosystem/alexa",
14+
"docs/ecosystem/google-assistant",
15+
"docs/ecosystem/ifttt",
16+
"docs/ecosystem/ifttt",
17+
"docs/ecosystem/mycroft",
18+
"addons/integrations/homekit"
19+
].each { |dir|
20+
puts " -> #{dir}/"
21+
FileUtils.mkdir_p(dir)
22+
File.open("#{dir}/readme.md", "w+") { |f|
23+
f.puts "# This content is unavailable"
24+
f.puts ""
25+
f.puts "This content is migrated from another repository, and is not included in this preview."
26+
}
27+
}
28+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<template>
2+
<div class="page-versions">
3+
<div class="dropdown-wrapper" :class="{ open }">
4+
<a class="dropdown-title" @click="toggle">
5+
<span class="title">Version: {{currentVersion}}</span>
6+
<span class="arrow" :class="open ? 'down' : 'right'"></span></span>
7+
</a>
8+
<ul class="nav-dropdown" v-show="open">
9+
<li v-for="version in versions" class="dropdown-item">
10+
<a class="current" v-if="version.number === currentVersion">{{version.number}}</a>
11+
<a v-else :href="version.url">{{version.number}}</a>
12+
</li>
13+
</ul>
14+
</div>
15+
</div>
16+
</template>
17+
18+
<style lang="stylus">
19+
.content:not(.custom)>h1:first-child
20+
margin-right 140px
21+
.page-versions
22+
position absolute
23+
top 5rem
24+
white-space nowrap
25+
right 2rem
26+
font-size 9pt
27+
margin 5px
28+
padding 3px
29+
height 14px
30+
user-select none
31+
.dropdown-wrapper
32+
padding 2px
33+
position absolute
34+
right 0
35+
.dropdown-title
36+
border 1px solid #eee
37+
border-radius 2px
38+
padding 5px
39+
color black
40+
cursor pointer
41+
&:hover
42+
text-decoration none !important
43+
border 1px solid #ccc
44+
.nav-dropdown
45+
box-sizing border-box
46+
max-height calc(100vh - 2.7rem)
47+
overflow-y auto
48+
top 100%
49+
right 0
50+
background-color #fff
51+
padding 10px 0
52+
border 1px solid #ddd
53+
border-bottom-color #ccc
54+
text-align left
55+
border-radius 0.25rem
56+
white-space nowrap
57+
margin 0;
58+
position relative
59+
top 0
60+
.current
61+
color black
62+
font-weight bold !important
63+
&:hover
64+
text-decoration none
65+
color black !important
66+
</style>
67+
68+
<script>
69+
export default {
70+
data () {
71+
return {
72+
versionNumbers: ['latest', '2.4', '2.3', '2.2'], //, '2.1'],
73+
currentVersion: 'latest',
74+
open: false
75+
}
76+
},
77+
methods: {
78+
toggle () {
79+
this.open = !this.open
80+
}
81+
},
82+
created () {
83+
if (this.$site.base && this.$site.base.indexOf('v') > 0) {
84+
this.currentVersion = this.$site.base.replace('v', '').replace(/\//g, '')
85+
this.versionNumbers = ['latest', this.currentVersion] // to avoid having to regenerate previous sites
86+
}
87+
},
88+
computed: {
89+
versions () {
90+
return this.versionNumbers.map(version => {
91+
let url = this.$page.path
92+
if (version === '2.1') {
93+
url = url.replace('addons/integrations/', 'addons/ios/')
94+
if (url.indexOf('/addons') === 0) url += 'readme.html'
95+
}
96+
if (version === 'latest') {
97+
url = 'https://www.openhab.org' + url
98+
} else {
99+
url = `https://${(version === '2.1') ? 'docs.' : 'www.'}openhab.org${version === 'snapshot' ? '' : '/v' + version}${url}`
100+
}
101+
102+
return {
103+
number: version,
104+
url: url
105+
}
106+
})
107+
}
108+
}
109+
}
110+
</script>

.vuepress/components/EditPageLink.vue

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<template>
2+
<div class="editLink" v-if="editUrl">
3+
<em>Caught a mistake or want to contribute to the documentation? <a target="_blank" :href="editUrl">Edit this page on GitHub<OutboundLink /></a></em>
4+
<div v-if="isEsh" class="esh-note"><br />
5+
&#128712; This page comes from the Eclipse SmartHome project, which has specific
6+
<a target="_blank" href="https://github.com/eclipse/smarthome/blob/master/CONTRIBUTING.md">legal and technical<OutboundLink /></a>
7+
requirements for accepting contributions, please read them before submitting a change.
8+
</div>
9+
</div>
10+
</template>
11+
12+
<style lang="stylus">
13+
.editLink
14+
border-top 1px solid #eee
15+
padding 1rem
16+
font-size 10pt
17+
margin-bottom -3rem
18+
.esh-note
19+
color #999
20+
font-size 8pt
21+
svg
22+
height: 10px !important
23+
width: 10px !important
24+
</style>
25+
26+
<script>
27+
export default {
28+
computed: {
29+
isEsh () {
30+
return (this.$page.frontmatter.source.indexOf('eclipse/smarthome') > 0)
31+
},
32+
editUrl () {
33+
if (!this.$page || !this.$page.frontmatter.source) return null
34+
return this.$page.frontmatter.source.replace('/blob/', '/edit/').replace('/developer/', '/developers/')
35+
}
36+
}
37+
}
38+
</script>

.vuepress/config.js

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
const DocsSidebarNavigation = require('./docs-sidebar.js')
2+
3+
const fs = require ('fs-extra')
4+
const path = require('path')
5+
// const CopyWebpackPlugin = require('copy-webpack-plugin')
6+
7+
const HighlightDsl = require('./highlight-dsl')
8+
const HighlightRules = require('./highlight-rules')
9+
10+
const base = process.env.OH_DOCS_VERSION ? `/v${process.env.OH_DOCS_VERSION}/` : '/'
11+
12+
module.exports = {
13+
title: 'Documentation Preview',
14+
description: 'This is a preview of the main parts of the documentation, found in the openhab/openhab-docs repository',
15+
dest: 'vuepress',
16+
host: 'localhost',
17+
base,
18+
shouldPrefetch: () => false,
19+
head: [
20+
['link', { rel: 'stylesheet', href: `/fonts/fonts.css` }],
21+
['link', { rel: 'icon', href: `/favicon.ico` }],
22+
['link', { rel: 'shortcut icon', href: `/favicon.ico` }],
23+
['link', { rel: 'apple-touch-icon', href: `/apple-icon.png` }],
24+
// ['link', { rel: 'stylesheet', href: `https://fonts.googleapis.com/css?family=Open+Sans:300,400` }],
25+
['meta', { property: 'og:type', content: 'website' }],
26+
['meta', { property: 'og:image', content: 'https://www.openhab.org/og-image.png' }],
27+
// ['meta', { property: 'og:title', content: 'openHAB' }],
28+
// ['meta', { property: 'og:description', content: 'a vendor and technology agnostic open source automation software for your home' }],
29+
// ['script', { src: `https://identity.netlify.com/v1/netlify-identity-widget.js` }]
30+
],
31+
markdown: {
32+
config: (md) => {
33+
md.options.linkify = true
34+
const highlight = md.options.highlight
35+
md.options.highlight = (str, lang) => {
36+
/* Simple heuristics to detect rules & other openHAB DSL code snippets and override the language */
37+
if (str.match(/\b(?:Color|Contact|Dimmer|Group|Number|Player|Rollershutter|Switch|Location|Frame|Default|Text|Group|Selection|Setpoint|Slider|Colorpicker|Chart|Webview|Mapview|Image|Video|Item|Thing|Bridge|Time|Type|Sitemap|sitemap)\b/)) {
38+
lang = 'dsl'
39+
}
40+
if (str.match(/\b(?:String|DateTime)\b/) && lang !== 'java' && lang !== 'xml') {
41+
lang = 'dsl'
42+
}
43+
if ((str.match(/\brule\b/) && str.match(/\bwhen\b/) && str.match(/\bthen\b/) && str.match(/\bend\b/)) ||
44+
str.match(/received update/) || str.match(/changed.*(?:from|to)/) || str.match(/Channel.*triggered/) ||
45+
str.match(/\bval\b/) || str.match(/\bvar\b/) /* <-- dangerous! */) {
46+
47+
if (lang !== 'nginx' && lang !== 'shell') lang = 'rules'
48+
}
49+
if (lang === 'shell' || lang === 'sh' || lang === 'shell_session') lang = 'bash'
50+
if (lang === 'conf') lang = 'dsl'
51+
if (lang === 'JSON') lang = 'json'
52+
// if (lang === 'xtend' || lang === 'text' || !lang) {
53+
// console.log('Cannot determine language of code: ' + lang)
54+
// console.log(str)
55+
// }
56+
57+
if (!Prism.languages.dsl || !Prism.languages.rules) {
58+
Prism.languages.dsl = HighlightDsl
59+
Prism.languages.rules = HighlightRules
60+
}
61+
62+
return highlight(str, lang)
63+
}
64+
}
65+
},
66+
// configureWebpack: (config, isServer) => {
67+
// config.plugins.push(new CopyWebpackPlugin([
68+
// { from: '.vuepress/_redirects', to: '.'},
69+
// { from: '.vuepress/_headers', to: '.'},
70+
// ]))
71+
// },
72+
serviceWorker: false,
73+
themeConfig: {
74+
logo: `/openhab-logo.png`,
75+
// repo: 'openhab',
76+
editLinks: false,
77+
activeHeaderLinks: false,
78+
sidebarDepth: 0,
79+
docsDir: 'docs',
80+
nav: [
81+
{
82+
text: 'Documentation',
83+
link: '/docs/',
84+
},
85+
{
86+
text: 'GitHub',
87+
link: 'https://github.com/openhab/openhab-docs',
88+
}
89+
],
90+
sidebar: {
91+
'/docs/': DocsSidebarNavigation.filter((s, i) => s.title !== 'Concepts')
92+
}
93+
}
94+
}

0 commit comments

Comments
 (0)