-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsidebars.js
52 lines (50 loc) · 1.06 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const sidebar = {
Introduction: ["getting-started", "herbsjs"],
Tutorial: [
"introduction",
"new-project",
"create-entity",
"working-usecases",
"specs",
"repositories",
"migrations",
"graphql-rest",
],
Project: [
"motivation",
"roadmap",
"architecture",
"development",
"ecosystem",
"assist",
"contributing",
"acknowledgements",
"communitycontent",
"logos",
"CoC",
"license",
],
UseCase: ["gettingStarted", "features", "steps", "result"],
Entity: ["gettingStarted", "features", "validation"],
Specs: ["gettingStarted", "features"],
Herbarium: ["gettingStarted"],
Validation: ["what-suma", "validations", "checkers"],
Glues: [
"whatisglue",
"herbsshelf",
"herbs2gql",
"herbs2rest",
"herbs2knex",
"herbs2mongo",
"herbs2repl",
"suma2text",
"herbs-snippets",
],
};
Object.keys(sidebar).map(
(property) =>
(sidebar[property] = sidebar[property].map(
(item) => `${property.toLowerCase()}/${item}`
))
);
module.exports = { sidebar };