-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Expand file tree
/
Copy pathsidebars.js
More file actions
executable file
·161 lines (161 loc) · 4.98 KB
/
sidebars.js
File metadata and controls
executable file
·161 lines (161 loc) · 4.98 KB
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
module.exports = {
docs: {
Introduction: [
'introduction/getting-started',
'introduction/installation',
'introduction/why-rtk-is-redux-today',
'introduction/core-concepts',
'introduction/learning-resources',
'introduction/ecosystem',
'introduction/examples'
],
Tutorials: [
'tutorials/tutorials-index',
'tutorials/quick-start',
'tutorials/typescript-quick-start',
{
type: 'category',
label: 'Redux Essentials',
items: [
'tutorials/essentials/part-1-overview-concepts',
'tutorials/essentials/part-2-app-structure',
'tutorials/essentials/part-3-data-flow',
'tutorials/essentials/part-4-using-data',
'tutorials/essentials/part-5-async-logic',
'tutorials/essentials/part-6-performance-normalization',
'tutorials/essentials/part-7-rtk-query-basics',
'tutorials/essentials/part-8-rtk-query-advanced'
]
},
{
type: 'category',
label: 'Redux Fundamentals',
items: [
'tutorials/fundamentals/part-1-overview',
'tutorials/fundamentals/part-2-concepts-data-flow',
'tutorials/fundamentals/part-3-state-actions-reducers',
'tutorials/fundamentals/part-4-store',
'tutorials/fundamentals/part-5-ui-react',
'tutorials/fundamentals/part-6-async-logic',
'tutorials/fundamentals/part-7-standard-patterns',
'tutorials/fundamentals/part-8-modern-redux'
]
},
'tutorials/videos'
],
'Using Redux': [
'usage/index',
{
type: 'category',
label: 'Setup and Organization',
collapsed: false,
items: [
'usage/configuring-your-store',
'usage/nextjs',
'usage/code-splitting',
'usage/server-rendering',
'usage/isolating-redux-sub-apps'
]
},
{
type: 'category',
label: 'Migrations',
collapsed: false,
items: [
'usage/migrating-to-modern-redux',
'usage/migrations/migrating-rtk-2'
]
},
{
type: 'category',
label: 'Code Quality',
collapsed: false,
items: [
'usage/usage-with-typescript',
'usage/writing-tests',
'usage/troubleshooting'
]
},
{
type: 'category',
label: 'Redux Logic and Patterns',
collapsed: false,
items: [
{
type: 'category',
label: 'Structuring Reducers',
collapsed: true,
items: [
'usage/structuring-reducers/structuring-reducers',
'usage/structuring-reducers/prerequisite-concepts',
'usage/structuring-reducers/basic-reducer-structure',
'usage/structuring-reducers/splitting-reducer-logic',
'usage/structuring-reducers/refactoring-reducer-example',
'usage/structuring-reducers/using-combinereducers',
'usage/structuring-reducers/beyond-combinereducers',
'usage/structuring-reducers/normalizing-state-shape',
'usage/structuring-reducers/updating-normalized-data',
'usage/structuring-reducers/reusing-reducer-logic',
'usage/structuring-reducers/immutable-update-patterns',
'usage/structuring-reducers/initializing-state'
]
},
'usage/reducing-boilerplate',
'usage/deriving-data-selectors',
'usage/writing-logic-thunks',
'usage/side-effects-approaches',
'usage/writing-custom-middleware',
'usage/implementing-undo-history'
]
}
],
'Understanding Redux': [
{
type: 'category',
label: 'Thinking in Redux',
items: [
'understanding/thinking-in-redux/motivation',
'understanding/thinking-in-redux/three-principles',
'understanding/thinking-in-redux/glossary'
]
},
{
type: 'category',
label: 'History and Design',
items: [
'understanding/history-and-design/history-of-redux',
'understanding/history-and-design/prior-art',
'understanding/history-and-design/middleware'
]
}
],
FAQ: [
'faq',
'faq/general',
'faq/reducers',
'faq/organizing-state',
'faq/store-setup',
'faq/actions',
'faq/immutable-data',
'faq/code-structure',
'faq/performance',
'faq/design-decisions',
'faq/react-redux',
'faq/miscellaneous'
],
'Style Guide': ['style-guide/style-guide'],
'API Reference': [
'api/api-reference',
'api/createstore',
'api/store',
'api/combinereducers',
'api/applymiddleware',
'api/bindactioncreators',
'api/compose',
'api/reducereducers',
'api/utils',
{ type: 'link', label: 'Error Messages', href: '/errors' }
],
'Redux Toolkit': ['redux-toolkit/overview']
}
}