-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsidebarsGuides.js
130 lines (125 loc) · 4.19 KB
/
sidebarsGuides.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
const sidebarMobile = require('./sidebarsMobile.js')
module.exports = {
docs: [
{
type: 'html',
value: '<strong>Guides & Tutorials</strong>',
defaultStyle: true,
},
'guides-overview',
{
type: 'html',
value: '<strong>Getting started</strong>',
defaultStyle: true,
},
'quickstart',
'tutorials/setup-env',
'quickstart/quickstart-web',
'quickstart/quickstart-android',
'tutorials/dhis2-docker',
{
type: 'html',
value: '<strong>Web Development</strong>',
defaultStyle: true,
},
'tutorials/ui-library',
{
label: 'Capture Plugins',
type: 'category',
collapsed: true,
collapsible: true,
link: {
type: 'doc',
id: 'capture-plugins/developer/getting-started',
},
items: [
'capture-plugins/developer/getting-started',
'capture-plugins/developer/develop-a-capture-plugin',
'capture-plugins/developer/configure-a-capture-plugin',
{
'Form Field Plugin': [
'capture-plugins/developer/form-field-plugins/introduction',
'capture-plugins/developer/form-field-plugins/developer-details',
'capture-plugins/developer/form-field-plugins/manual-setup',
],
'Enrollment Plugin': [
'capture-plugins/developer/enrollment-plugins/introduction',
'capture-plugins/developer/enrollment-plugins/developer-details',
'capture-plugins/developer/enrollment-plugins/manual-setup',
],
},
],
},
{
Guides: [
'guides',
{
'Local Development': [
'guides/spin-up-local-instance',
'guides/code-style',
'guides/debug-instance',
],
},
{
label: 'Web UI Component Recipes',
type: 'category',
collapsed: true,
link: {
type: 'generated-index',
title: 'Web UI Components Recipes',
slug: 'ui/recipes',
},
items: [
{
type: 'autogenerated',
dirName: 'ui/recipes',
},
],
},
{
'DHIS2 App Runtime': [
'tutorials/app-runtime-query',
'tutorials/app-runtime-mutation',
'guides/query-playground',
'app-runtime/guides/display-alerts',
'app-runtime/guides/using-dataquery',
],
'App Hub': [
'guides/submit-apphub',
'guides/apphub-guidelines',
'guides/publish-apphub',
],
Translation: ['guides/translation-support'],
},
],
},
{
type: 'html',
value: '<strong>Mobile Development</strong>',
defaultStyle: true,
},
sidebarMobile.mobile,
{
type: 'html',
value: '<strong>Integration</strong>',
defaultStyle: true,
},
'integration/overview',
'integration/dhis2-java-sdk',
'integration/apache-camel',
'integration/camel-dhis2-component',
{
type: 'html',
value: '<strong>General Guides</strong>',
defaultStyle: true,
},
'dev-videos',
{
Conceptual: [
'conceptual',
'conceptual/git-workflow',
'conceptual/jira-workflow',
],
},
],
}