forked from salesforce/akita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
126 lines (126 loc) · 2.94 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
module.exports = {
docs: [
{
type: 'doc',
id: 'installation',
},
{
type: 'doc',
id: 'store',
},
{
type: 'doc',
id: 'query',
},
{
type: 'doc',
id: 'config',
},
{
type: 'category',
label: 'Entities Management',
items: ['entities/entity-store', 'entities/query-entity', 'entities/active', 'entities/sorting'],
},
{
type: 'doc',
id: 'ui',
},
{
type: 'doc',
id: 'transactions',
},
{
type: 'doc',
id: 'best-practices',
},
{
type: 'doc',
id: 'immer',
},
{
type: 'category',
label: 'Additional Functionality',
items: [
'additional/cache',
'additional/middleware',
'additional/reset',
'additional/events',
'additional/operators',
'additional/array',
'additional/notifications',
'additional/js',
'additional/class',
],
},
{
type: 'category',
label: 'Plugins',
items: ['plugins/state-history', 'plugins/dirty-check', 'plugins/pagination'],
},
{
type: 'category',
label: 'Enhancers',
items: ['enhancers/devtools', 'enhancers/persist-state', 'enhancers/snapshot', 'enhancers/cli'],
},
{
type: 'category',
label: 'Angular',
items: [
'angular/architecture',
'angular/local-state',
'angular/entity-service',
'angular/effects',
{
type: 'link',
label: 'NgEntityService - OData Pattern',
href: 'https://github.com/rosostolato/akita-ng-odata-service',
},
{
type: 'link',
label: 'Akita Firebase',
href: 'https://github.com/dappsnation/akita-ng-fire',
},
'angular/router',
{
type: 'link',
label: 'Filters Manager',
href: 'https://manudss.github.io/akita-filters-plugin/',
},
'angular/tests',
'angular/hmr',
],
},
{
type: 'category',
label: 'React',
items: [
{
type: 'link',
label: 'RxJS and React',
href: 'https://engineering.datorama.com/oop-and-rxjs-managing-state-in-react-with-akita-de981e09307',
},
{
type: 'link',
label: 'Akita with Hooks',
href: 'https://medium.com/@thomasburlesonIA/https-medium-com-thomasburlesonia-react-hooks-rxjs-facades-4e116330bbe1',
},
{
type: 'link',
label: 'RxJS Facads in React',
href: 'https://medium.com/@thomasburlesonIA/react-facade-best-practices-1c8186d8495a',
},
],
},
{
type: 'category',
label: 'Svelte',
items: [
{
type: 'link',
label: 'Akita with Svelte',
href: 'https://netbasal.com/supercharge-your-svelte-state-management-with-akita-f1f9de5ef43d',
},
],
},
],
};