Skip to content

Commit d70834d

Browse files
authored
New v4 (Crow) guide (feathersjs-ecosystem#1316)
1 parent b712131 commit d70834d

File tree

91 files changed

+2188
-4096
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+2188
-4096
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ _book/
4141

4242
.idea/
4343
exapp/
44-
.vuepress/dist
44+
.vuepress/dist
45+
!.vscode/

.travis.yml

-8
This file was deleted.

.vscode/tstab.code-snippets

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"tstabs": {
3+
"scope": "markdown",
4+
"prefix": [ "tstabs" ],
5+
"body": [
6+
":::: tabs :options=\"{ useUrlFragment: false }\"",
7+
"::: tab \"JavaScript\"",
8+
"```js",
9+
"$1",
10+
"```",
11+
":::",
12+
"::: tab \"TypeScript\"",
13+
"```ts",
14+
"$2",
15+
"```",
16+
":::",
17+
"::::"
18+
],
19+
"description": "JavaScript/TypeScript tabs"
20+
}
21+
}

.vuepress/config.js

+44-28
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,25 @@ module.exports = {
1010
sidebarDepth: 2,
1111
sidebar: {
1212
'/guides/': [{
13-
title: 'The basics',
13+
title: 'The Feathers guide',
1414
collapsable: false,
1515
children: [
16-
'basics/',
1716
'basics/setup.md',
1817
'basics/starting.md',
18+
'basics/generator.md',
1919
'basics/services.md',
2020
'basics/hooks.md',
21-
'basics/rest.md',
22-
'basics/databases.md',
23-
'basics/real-time.md',
24-
'basics/clients.md',
25-
'basics/generator.md'
21+
'basics/authentication.md',
22+
'basics/frontend.md',
23+
'basics/testing.md'
2624
]
27-
}, {
28-
title: 'A chat application',
25+
}, 'frameworks.md', 'security.md', 'migrating.md'],
26+
'/help/': [{
27+
title: 'Help',
2928
collapsable: false,
3029
children: [
31-
'chat/',
32-
'chat/creating.md',
33-
'chat/service.md',
34-
'chat/authentication.md',
35-
'chat/processing.md',
36-
'chat/frontend.md',
37-
'chat/testing.md'
30+
'/help/',
31+
'/help/faq.md'
3832
]
3933
}],
4034
'/api/': [{
@@ -80,7 +74,7 @@ module.exports = {
8074
'authentication/client.md'
8175
]
8276
}, {
83-
title: 'Database',
77+
title: 'Databases',
8478
collapsable: false,
8579
children: [
8680
'databases/adapters.md',
@@ -89,33 +83,55 @@ module.exports = {
8983
],
9084
}],
9185
'/cookbook/': [{
86+
title: 'General',
87+
collapsable: false,
88+
children: [
89+
'general/scaling.md'
90+
]
91+
}, {
9292
title: 'Authentication',
93+
collapsable: false,
9394
children: [
9495
'authentication/anonymous.md'
9596
]
9697
}, {
9798
title: 'Express',
99+
collapsable: false,
98100
children: [
99-
'express/file-uploading.md'
101+
'express/file-uploading.md',
102+
'express/view-engine.md'
100103
]
101-
}],
102-
'/': [
103-
'/guides/',
104-
'/api/',
105-
'/faq/',
106-
'migrating.md'
107-
]
104+
}]
108105
},
109106
nav: [
110107
{ text: 'Guides', link: '/guides/' },
111108
{ text: 'API', link: '/api/' },
112109
{ text: 'Cookbook', link: '/cookbook/' },
113-
{ text: 'FAQ', link: '/faq/' },
110+
{ text: 'Help', link: '/help/' },
114111
{
115112
text: 'Ecosystem',
116-
link: 'https://github.com/feathersjs/awesome-feathersjs'
113+
items: [{
114+
text: 'Awesome Feathersjs',
115+
link: 'https://github.com/feathersjs/awesome-feathersjs'
116+
}, {
117+
text: 'Previous versions',
118+
items: [{
119+
text: 'Buzzard (v3)',
120+
link: 'https://buzzard.docs.feathersjs.com/'
121+
}, {
122+
text: 'Auk (v2)',
123+
link: 'https://auk.docs.feathersjs.com/'
124+
}, {
125+
text: 'Legacy (v1)',
126+
link: 'https://legacy.docs.feathersjs.com/'
127+
}]
128+
}]
117129
}
118130
]
119131
},
120-
plugins: ['@vuepress/last-updated', 'tabs']
132+
plugins: [
133+
'@vuepress/last-updated',
134+
[ '@dovyp/vuepress-plugin-clipboard-copy', true ],
135+
'tabs'
136+
]
121137
};
-9.23 KB
Binary file not shown.

.vuepress/public/img/header-hooks.jpg

-8.5 KB
Binary file not shown.
-11.4 KB
Binary file not shown.
-12.5 KB
Binary file not shown.
-13.1 KB
Binary file not shown.
-8.74 KB
Binary file not shown.
-10.2 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-7.07 KB
Binary file not shown.
-7.84 KB
Binary file not shown.
343 KB
Loading

.vuepress/styles/palette.styl

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ $accentColor = #D513A5
22
$textColor = #2c3e50
33
$borderColor = #eaecef
44
$codeBgColor = #FAFAFA
5+
$secondaryColor = #33CCFF

.vuepress/theme/components/Page.vue

+31-20
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,24 @@
55
<Content/>
66

77
<footer class="page-edit">
8-
<div
9-
class="edit-link"
10-
v-if="editLink"
11-
>
12-
<a
13-
:href="editLink"
14-
target="_blank"
15-
rel="noopener noreferrer"
16-
>{{ editLinkText }}</a>
17-
<OutboundLink/>
18-
</div>
19-
20-
<div
21-
class="last-updated"
22-
v-if="lastUpdated"
23-
>
24-
<span class="prefix">{{ lastUpdatedText }}: </span>
25-
<span class="time">{{ lastUpdated }}</span>
26-
</div>
8+
<blockquote>
9+
<p>
10+
Anything unclear or missing?
11+
<a :href="commentLink" target="_blank" rel="noopener noreferrer">
12+
Leave a comment
13+
</a>
14+
<OutboundLink/> or <a
15+
:href="editLink"
16+
target="_blank"
17+
rel="noopener noreferrer"
18+
>{{ editLinkText }}</a>
19+
<OutboundLink/>
20+
</p>
21+
<small>
22+
<span class="prefix">{{ lastUpdatedText }}: </span>
23+
<span class="time">{{ lastUpdated }}</span>
24+
</small>
25+
</blockquote>
2726
</footer>
2827

2928
<div class="page-nav" v-if="prev || next">
@@ -121,6 +120,18 @@ export default {
121120
}
122121
},
123122
123+
commentLink () {
124+
const {
125+
repo,
126+
docsRepo = repo
127+
} = this.$site.themeConfig
128+
129+
return (outboundRE.test(docsRepo)
130+
? docsRepo
131+
: `https://github.com/${docsRepo}`) +
132+
`/issues/new?title=Comment: ${this.$page.title} (${this.$page.relativePath})`
133+
},
134+
124135
editLinkText () {
125136
return (
126137
this.$themeLocaleConfig.editLinkText
@@ -201,7 +212,7 @@ function flatten (items, res) {
201212
202213
.page-edit
203214
@extend $wrapper
204-
padding-top 1rem
215+
padding-top 0
205216
padding-bottom 1rem
206217
overflow auto
207218
.edit-link

.vuepress/theme/styles/code.styl

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1+
.code-copy {
2+
top: 20px !important;
3+
}
4+
15
.content
26
code
37
color lighten($textColor, 20%)
48
padding 0.25rem 0.5rem
59
margin 0
610
font-size 0.85em
7-
background-color rgba(27,31,35,0.05)
11+
background-color $codeBgColor
812
border-radius 3px
913
.token
1014
&.deleted
@@ -14,9 +18,9 @@
1418
&.keyword
1519
color lighten($accentColor, 50%)
1620
&.string
17-
color #33CCFF
18-
&.function, &.class-name, &.property
1921
color complement($accentColor)
22+
&.function, &.class-name, &.property
23+
color #33CCFF
2024

2125
.content
2226
pre, pre[class*="language-"]
@@ -139,3 +143,6 @@ div[class~="language-bash"]:before
139143

140144
div[class~="language-php"]:before
141145
content "php"
146+
147+
div[class*="language-"] pre .code-copy
148+
opacity: 0.5

.vuepress/theme/styles/index.styl

+21
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ h1, h2, h3, h4, h5, h6
120120

121121
h1
122122
font-size 2.2rem
123+
color: $secondaryColor
123124

124125
h2
125126
font-size 1.65rem
@@ -175,6 +176,13 @@ th, td
175176
.sidebar
176177
top 0
177178

179+
pre
180+
background-color $codeBgColor
181+
color lighten($textColor, 40%)
182+
183+
code
184+
background-color $codeBgColor
185+
color lighten($textColor, 40%)
178186

179187
@media (min-width: ($MQMobile + 1px))
180188
.theme-container.no-sidebar
@@ -184,3 +192,16 @@ th, td
184192
padding-left 0
185193

186194
@require 'mobile.styl'
195+
196+
footer.page-edit blockquote
197+
border-left: 0.5rem solid $secondaryColor
198+
background-color: lighten($secondaryColor, 85%)
199+
padding: 1em
200+
201+
p
202+
color: $textColor
203+
204+
small
205+
padding-top: 1em
206+
display: block
207+
text-align: right

404.html

-77
This file was deleted.

0 commit comments

Comments
 (0)