-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnavigation.js
115 lines (106 loc) · 2.69 KB
/
navigation.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
'use strict'
export default {
Introduction: {
slug: 'introduction',
sections: {
'About Supercharge': 'about-supercharge',
Contribute: 'contribute'
// 'Upgrade Guide': 'upgrade'
}
},
'Getting Started': {
slug: 'getting-started',
sections: {
Installation: 'installation',
'Directory Structure': 'directory-structure',
'Configuration & Env': 'configuration',
Application: 'application',
// 'App Lifecycle': 'app-lifecycle',
'Error Handling': 'error-handling',
// Development: 'development',
Deployment: 'deployment',
// Bootstrappers: 'bootstrappers'
'Service Container': 'service-container',
'Service Providers': 'service-providers',
}
},
HTTP: {
slug: 'essentials',
sections: {
Routing: 'routing',
Context: 'http-context',
Requests: 'requests',
Responses: 'responses',
Controllers: 'controllers',
Middleware: 'middleware',
Session: 'session',
'CSRF Protection': 'csrf-protection',
// 'Request Lifecycle': 'request-lifecycle',
// Authentication: 'authentication',
// Authorization: 'authorization',
// Validation: 'validation'
}
},
Techniques: {
slug: 'techniques',
sections: {
'Craft Console': 'craft-console',
// Mailer: 'mailer',
// Hashing: 'hashing',
// Encryption: 'encryption',
// Events: 'events',
Logger: 'logger',
// Queues: 'queues'
}
},
// Database: {
// slug: 'database',
// sections: {
// Connectors: 'database-connectors',
// // Pagination: 'pagination'
// }
// },
Security: {
slug: 'security',
sections: {
Encryption: 'encryption',
Hashing: 'hashing',
}
},
Packages: {
slug: 'packages',
sections: {
Arrays: 'arrays',
Collections: 'collections',
Filesystem: 'filesystem',
Goodies: 'goodies',
Macroable: 'macroable',
Map: 'map',
'Promise Pool': 'promise-pool',
Set: 'set',
Streams: 'streams',
Strings: 'strings',
Sttp: 'sttp',
}
},
Frontend: {
slug: 'frontend',
sections: {
Views: 'views',
Assets: 'frontend-assets',
Handlebars: 'handlebars',
'Built-in Helpers': 'handlebars-helpers',
Inertia: 'inertia'
}
},
// Testing: {
// slug: 'testing',
// sections: {
// 'Getting Started': 'testing',
// 'Create & Debug Tests': 'create-and-debug-tests',
// 'HTTP Tests': 'http-tests',
// Fakes: 'testing-fakes',
// Database: 'database-testing'
// }
// },
}