-
Notifications
You must be signed in to change notification settings - Fork 3
/
sidebars.js
150 lines (136 loc) · 5.5 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
/**
* 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 = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
webSidebar: [
{ type: 'doc', id: 'community/quick-start', label: 'Quick Start', },
// { type: 'doc', id: 'docs/user-guide/README', label: 'User Guide', },
{
type: 'category',
collapsed: false,
label: 'Ecosystem Evaluation System',
link: {
type: 'generated-index',
description: 'Ecosystem is used to describe the health status of open source community standing from ecology context. We create a three-dimensional space for the evaluation system, including the open source ecosystem, "collaboration, people, software" and evaluation models.',
slug: '/dimensions-define',
keywords: ['Metrics Models Dimensions', 'Productivity', 'Robustness', 'Niche-Creation',],
image: '/img/docusaurus.png',
},
items: [
{ type: 'doc', label: 'Overview', id: 'docs/metrics-models/README' },
{
type: 'category',
collapsed: false,
label: 'Collaboration-Productivity',
link: {
type: 'generated-index',
description: 'The efficiency with which an ecosystem or project converts inputs into output.',
// slug: '/metrics-models/productivity',
keywords: [],
image: '/img/docusaurus.png',
},
items: [
{ type: 'doc', label: 'Overview', id: 'docs/metrics-models/collaboration/productivity/README' },
{ type: 'doc', id: 'docs/metrics-models/collaboration/productivity/collaboration-development-index' },
{ type: 'doc', id: 'docs/metrics-models/collaboration/productivity/community-service-and-support' },
],
},
{
type: 'category',
collapsed: false,
label: 'Collaboration-Robustness',
link: {
type: 'generated-index',
description: 'The capability of an ecosystem or project to face and survive disruptions.',
slug: '/metrics-models/robustness',
keywords: [],
image: '/img/docusaurus.png',
},
items: [
{ type: 'doc', label: 'Overview', id: 'docs/metrics-models/collaboration/robustness/README' },
{ type: 'doc', id: 'docs/metrics-models/collaboration/robustness/activity' },
],
},
{
type: 'category',
collapsed: false,
label: 'Collaboration-Niche Creation',
link: {
type: 'generated-index',
description: 'The capacity to create and recognize meaningful diversity and thereby new capabilities.',
slug: '/metrics-models/niche-creation',
keywords: [],
image: '/img/docusaurus.png',
},
items: [
{ type: 'doc', label: 'Overview', id: 'docs/metrics-models/collaboration/niche-creation/README' },
{ type: 'doc', id: 'docs/metrics-models/collaboration/niche-creation/organization-activity' },
],
},
{
type: 'category',
collapsed: false,
label: 'People-Productivity',
link: {
type: 'generated-index',
description: 'The efficiency with which an ecosystem or project converts inputs into output.',
// slug: '/metrics-models/productivity',
keywords: [],
image: '/img/docusaurus.png',
},
items: [
{ type: 'doc', label: 'Overview', id: 'docs/metrics-models/people/productivity/README' },
{ type: 'doc', id: 'docs/metrics-models/people/productivity/contributor-domain-persona' },
{ type: 'doc', id: 'docs/metrics-models/people/productivity/contributor-role-persona' },
{ type: 'doc', id: 'docs/metrics-models/people/productivity/contributor-milestone-persona' },
],
},
],
},
{
type: 'category',
collapsed: false,
label: 'Community',
link: {
type: 'generated-index',
description: 'Join the OSS-Compass Community',
slug: '/community',
keywords: [],
image: '/img/docusaurus.png',
},
items: [
{ type: 'link', label: 'GitHub', href: 'https://github.com/oss-compass' },
{ type: 'link', label: 'Gitee', href: 'https://gitee.com/oss-compass' },
{ type: 'doc', label: 'Weekly Meeting', id: 'community/community/metting' },
{ type: 'doc', label: 'Slack', id: 'community/community/slack' },
{ type: 'doc', label: 'WeChat', id: 'community/community/wechat' },
],
},
{ type: 'doc', label: 'Participating Contribution', id: 'community/CONTRIBUTING' },
{
type: 'category',
collapsed: false,
label: 'Legal',
link: {
type: 'generated-index',
slug: '/legal',
keywords: [],
image: '/img/docusaurus.png',
},
items: [
{ type: 'doc', label: 'Terms', id: 'community/legal/terms-of-use' },
{ type: 'doc', label: 'Privacy', id: 'community/legal/privacy-policy' },
],
},
],
};
module.exports = sidebars;