-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
172 lines (156 loc) · 8.32 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
webSidebar: [
/* -------------------- General -------------------- */
{
type: "category", label: "General", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Overview", id: "web/overview" },
{ type: "doc", label: "Installation", id: "web/installation" },
{
type: "category", label: "Getting Started", items: [
{
type: "category", label: "Creating the Server", items: [
{ type: "doc", label: "ASP.NET Web API", id: "web/getting-started-server" },
{ type: "doc", label: "Node.js", id: "web/getting-started-server-node" },
{ type: "doc", label: "Node.js - TypeScript", id: "web/getting-started-server-node-typescript" },
{ type: "doc", label: "Spring Boot - Jersey", id: "web/getting-started-spring-boot-jersey" },
]
},
{ type: "doc", label: "Angular", id: "web/getting-started-angular" },
{ type: "doc", label: "ASP.NET Core Web App", id: "web/getting-started-aspnet" },
{ type: "doc", label: "HTML/JavaScript", id: "web/getting-started-javascript" },
{ type: "doc", label: "React", id: "web/getting-started-react" },
]
},
{
type: "category", label: "Configuring the Server", items: [
{ type: "doc", label: "ASP.NET", id: "web/configuring-server-aspnet" },
{ type: "doc", label: "Spring Boot - Jersey", id: "web/configuring-server-spring-boot-jersey" },
{ type: "doc", label: "Tomcat", id: "web/configuring-server-tomcat" },
]
},
]
},
/* -------------------- Working with Dashboards -------------------- */
{
type: "category", label: "Working with Dashboards", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Creating", id: "web/creating-dashboards" },
{ type: "doc", label: "Loading", id: "web/loading-dashboards" },
{ type: "doc", label: "Filtering", id: "web/filtering-dashboards" },
{ type: "doc", label: "Editing", id: "web/editing-dashboards" },
{ type: "doc", label: "Saving", id: "web/saving-dashboards" },
{ type: "doc", label: "Linking", id: "web/linking-dashboards" },
{ type: "doc", label: "Exporting", id: "web/exporting-dashboards" },
{ type: "doc", label: "Theming", id: "web/theming-dashboards" },
]
},
/* -------------------- Working with Data Sources -------------------- */
{
type: "category", label: "Working with Data Sources", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Data Sources", id: "web/datasources" },
{
type: "category", label: "Adding Data Sources", items: [
{ type: "doc", label: "Excel File", id: "web/adding-data-sources/excel-file" },
{ type: "doc", label: "In Memory Data", id: "web/adding-data-sources/in-memory-data" },
{ type: "doc", label: "MS SQL Server", id: "web/adding-data-sources/ms-sql-server" },
]
},
{
type: "category", label: "Replacing Data Sources", items: [
{ type: "doc", label: "Excel File", id: "web/replacing-data-sources/excel-file" },
{ type: "doc", label: "MS SQL Server", id: "web/replacing-data-sources/ms-sql-server" },
]
},
{ type: "doc", label: "Authentication", id: "web/authentication" },
{ type: "doc", label: "User Context", id: "web/user-context" },
{ type: "doc", label: "Obfuscate Connection Data", id: "web/obfuscate-connection-data" },
]
},
/* -------------------- Working with Visualizations -------------------- */
{
type: "category", label: "Working with Visualizations", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Maximizing Visualizations", id: "web/maximizing-visualizations" },
{ type: "doc", label: "Responding to Click Events", id: "web/click-events" },
{ type: "doc", label: "Tooltips", id: "web/tooltips" },
]
},
/* -------------------- Release Information -------------------- */
{
type: "category", label: "Release Information", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Known Issues", id: "web/known-issues" },
{ type: "doc", label: "Release Notes", id: "web/release-notes" },
{ type: "doc", label: "Third-Party Software", id: "web/third-party-software" },
{ type: "doc", label: "Data Limits", id: "web/data-size-limits" },
]
},
],
wpfSidebar: [
/* -------------------- General -------------------- */
{
type: "category", label: "General", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Installation", id: "wpf/installation" },
{ type: "doc", label: "Getting Started", id: "wpf/getting-started" },
]
},
/* -------------------- Working with Dashboards -------------------- */
{
type: "category", label: "Working with Dashboards", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Creating", id: "wpf/creating-dashboards" },
{ type: "doc", label: "Loading", id: "wpf/loading-dashboards" },
{ type: "doc", label: "Filtering", id: "wpf/filtering-dashboards" },
{ type: "doc", label: "Editing", id: "wpf/editing-dashboards" },
{ type: "doc", label: "Saving", id: "wpf/saving-dashboards" },
{ type: "doc", label: "Linking", id: "wpf/linking-dashboards" },
{ type: "doc", label: "Formatting Data", id: "wpf/formatting-data" },
{ type: "doc", label: "Localizing", id: "wpf/localizing-dashboards" },
{ type: "doc", label: "Exporting", id: "wpf/exporting-dashboards" },
{ type: "doc", label: "Theming", id: "wpf/theming-dashboards" },
]
},
/* -------------------- Working with Data Sources -------------------- */
{
type: "category", label: "Working with Data Sources", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{
type: "category", label: "Adding Data Sources", items: [
{ type: "doc", label: "Excel File", id: "wpf/adding-data-sources/excel-file" },
{ type: "doc", label: "In Memory Data", id: "wpf/adding-data-sources/in-memory-data" },
{ type: "doc", label: "MS SQL Server", id: "wpf/adding-data-sources/ms-sql-server" },
]
},
{
type: "category", label: "Replacing Data Sources", items: [
{ type: "doc", label: "Excel File", id: "wpf/replacing-data-sources/excel-file" },
{ type: "doc", label: "MS SQL Server", id: "wpf/replacing-data-sources/ms-sql-server" },
]
},
{ type: "doc", label: "Authentication", id: "wpf/authentication" },
]
},
/* -------------------- Working with Visualizations -------------------- */
{
type: "category", label: "Working with Visualizations", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Maximizing Visualizations", id: "wpf/maximizing-visualizations" },
{ type: "doc", label: "Responding to Click Events", id: "wpf/click-events" },
{ type: "doc", label: "Tooltips", id: "wpf/tooltips" },
]
},
/* -------------------- Release Information -------------------- */
{
type: "category", label: "Release Information", collapsed: false, collapsible: false, className: "sidebar__header", items: [
{ type: "doc", label: "Known Issues", id: "wpf/known-issues" },
{ type: "doc", label: "Release Notes", id: "wpf/release-notes" },
{ type: "doc", label: "Third-Party Software", id: "wpf/third-party-software" },
]
},
]
};
module.exports = sidebars;