-
Notifications
You must be signed in to change notification settings - Fork 0
/
db-data.ts
422 lines (417 loc) · 12.7 KB
/
db-data.ts
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
import { OneCourse, Titles, OneLesson} from 'db-data-structure';
export const COURSES: OneCourse[] = [
{
id: 1,
titles: {
description: 'Serverless Angular with Firebase Course',
longDescription: 'Serveless Angular with Firestore, Firebase Storage & Hosting, Firebase Cloud Functions & AngularFire'
},
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/serverless-angular-small.png',
lessonsCount: 10,
categories: ['BEGINNER'],
seqNo: 0,
url: 'serverless-angular'
},
{
id: 2,
titles: {
description: 'Angular Core Deep Dive',
longDescription: 'A detailed walk-through of the most important part of Angular - the Core and Common modules'
},
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-core-in-depth-small.png',
lessonsCount: 10,
categories: ['BEGINNER'],
seqNo: 2,
url: 'angular-core-course'
},
{
id: 3,
titles: {
description: 'RxJs In Practice Course',
longDescription: 'Understand the RxJs Observable pattern, learn the RxJs Operators via practical examples'
},
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/rxjs-in-practice-course.png',
courseListIcon: 'https://angular-academy.s3.amazonaws.com/main-logo/main-page-logo-small-hat.png',
categories: ['BEGINNER'],
lessonsCount: 10,
seqNo: 3,
url: 'rxjs-course'
},
{
id: 4,
titles: {
description: 'NgRx In Depth',
longDescription: 'Learn the modern Ngrx Ecosystem, including Store, Effects, Router Store, Ngrx Entity, Dev Tools and Schematics.'
},
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-ngrx-course.png',
courseListIcon: 'https://angular-academy.s3.amazonaws.com/main-logo/main-page-logo-small-hat.png',
categories: ['BEGINNER', 'INTERMEDIATE'],
lessonsCount: 10,
seqNo: 4,
url: 'ngrx-course'
},
{
id: 5,
titles: {
description: 'Angular for Beginners',
longDescription: 'Establish a solid layer of fundamentals, learn what\'s under the hood of Angular'
},
iconUrl: 'https://angular-academy.s3.amazonaws.com/thumbnails/angular2-for-beginners-small-v2.png',
courseListIcon: 'https://angular-academy.s3.amazonaws.com/main-logo/main-page-logo-small-hat.png',
categories: ['BEGINNER'],
lessonsCount: 10,
seqNo: 5,
url: 'angular-for-beginners'
},
{
id: 6,
titles: {
description: 'Angular Security Course - Web Security Fundamentals',
longDescription: 'Learn Web Security Fundamentals and apply them to defend an Angular / Node Application from multiple types of attacks.'
},
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/security-cover-small-v2.png',
courseListIcon: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/lock-v2.png',
categories: ['ADVANCED'],
lessonsCount: 11,
seqNo: 6,
url: 'angular-security-course'
},
{
id: 7,
titles: {
description: 'Angular PWA - Progressive Web Apps Course',
longDescription: 'Learn Angular Progressive Web Applications, build the future of the Web Today.'
},
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-pwa-course.png',
courseListIcon: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/alien.png',
categories: ['ADVANCED'],
lessonsCount: 8,
seqNo: 7,
url: 'angular-pwa-course'
},
{
id: 8,
titles: {
description: 'Angular Advanced Library Laboratory: Build Your Own Library',
longDescription: 'Learn Advanced Angular functionality typically used in Library Development. Advanced Components, Directives, Testing, Npm'
},
iconUrl: 'https://angular-academy.s3.amazonaws.com/thumbnails/advanced_angular-small-v3.png',
courseListIcon: 'https://angular-academy.s3.amazonaws.com/thumbnails/angular-advanced-lesson-icon.png',
categories: ['INTERMEDIATE', 'ADVANCED'],
seqNo: 8,
url: 'angular-advanced-course'
},
{
id: 9,
titles: {
description: 'The Complete Typescript Course',
longDescription: 'Complete Guide to Typescript From Scratch: Learn the language in-depth and use it to build a Node REST API.'
},
iconUrl: 'https://angular-academy.s3.amazonaws.com/thumbnails/typescript-2-small.png',
courseListIcon: 'https://angular-academy.s3.amazonaws.com/thumbnails/typescript-2-lesson.png',
categories: ['BEGINNER'],
seqNo: 9,
url: 'typescript-course'
},
{
id: 10,
titles: {
description: 'Rxjs and Reactive Patterns Angular Architecture Course',
longDescription: 'Learn the core RxJs Observable Pattern as well and many other Design Patterns for building Reactive Angular Applications.'
},
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-academy/blog/images/rxjs-reactive-patterns-small.png',
courseListIcon: 'https://angular-academy.s3.amazonaws.com/course-logos/observables_rxjs.png',
categories: ['BEGINNER'],
seqNo: 10,
url: 'rxjs-patterns-course'
},
{
id: 11,
titles: {
description: 'Angular Material Course',
longDescription: 'Build Applications with the official Angular Widget Library'
},
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/material_design.png',
categories: ['BEGINNER'],
seqNo: 11,
url: 'angular-material-course'
}
];
export const LESSONS:OneLesson[] = [
{
id: 1,
'description': 'Angular Tutorial For Beginners - Build Your First App - Hello World Step By Step',
'duration': '4:17',
'seqNo': 1,
courseId: 5
},
{
id: 2,
'description': 'Building Your First Component - Component Composition',
'duration': '2:07',
'seqNo': 2,
courseId: 5
},
{
id: 3,
'description': 'Component @Input - How To Pass Input Data To an Component',
'duration': '2:33',
'seqNo': 3,
courseId: 5
},
{
id: 4,
'description': ' Component Events - Using @Output to create custom events',
'duration': '4:44',
'seqNo': 4,
courseId: 5
},
{
id: 5,
'description': ' Component Templates - Inline Vs External',
'duration': '2:55',
'seqNo': 5,
courseId: 5
},
{
id: 6,
'description': 'Styling Components - Learn About Component Style Isolation',
'duration': '3:27',
'seqNo': 6,
courseId: 5
},
{
id: 7,
'description': ' Component Interaction - Extended Components Example',
'duration': '9:22',
'seqNo': 7,
courseId: 5
},
{
id: 8,
'description': ' Components Tutorial For Beginners - Components Exercise !',
'duration': '1:26',
'seqNo': 8,
courseId: 5
},
{
id: 9,
'description': ' Components Tutorial For Beginners - Components Exercise Solution Inside',
'duration': '2:08',
'seqNo': 9,
courseId: 5
},
{
id: 10,
'description': ' Directives - Inputs, Output Event Emitters and How To Export Template References',
'duration': '4:01',
'seqNo': 10,
courseId: 5
},
// Security Course
{
id: 11,
'description': 'Course Helicopter View',
'duration': '08:19',
'seqNo': 1,
courseId: 6
},
{
id: 12,
'description': 'Installing Git, Node, NPM and Choosing an IDE',
'duration': '04:17',
'seqNo': 2,
courseId: 6
},
{
id: 13,
'description': 'Installing The Lessons Code - Learn Why Its Essential To Use NPM 5',
'duration': '06:05',
'seqNo': 3,
courseId: 6
},
{
id: 14,
'description': 'How To Run Node In TypeScript With Hot Reloading',
'duration': '03:57',
'seqNo': 4,
courseId: 6
},
{
id: 15,
'description': 'Guided Tour Of The Sample Application',
'duration': '06:00',
'seqNo': 5,
courseId: 6
},
{
id: 16,
'description': 'Client Side Authentication Service - API Design',
'duration': '04:53',
'seqNo': 6,
courseId: 6
},
{
id: 17,
'description': 'Client Authentication Service - Design and Implementation',
'duration': '09:14',
'seqNo': 7,
courseId: 6
},
{
id: 18,
'description': 'The New Angular HTTP Client - Doing a POST Call To The Server',
'duration': '06:08',
'seqNo': 8,
courseId: 6
},
{
id: 19,
'description': 'User Sign Up Server-Side Implementation in Express',
'duration': '08:50',
'seqNo': 9,
courseId: 6
},
{
id: 20,
'description': 'Introduction To Cryptographic Hashes - A Running Demo',
'duration': '05:46',
'seqNo': 10,
courseId: 6
},
{
id: 21,
'description': 'Some Interesting Properties Of Hashing Functions - Validating Passwords',
'duration': '06:31',
'seqNo': 11,
courseId: 6
},
// PWA course
{
id: 22,
'description': 'Course Kick-Off - Install Node, NPM, IDE And Service Workers Section Code',
'duration': '07:19',
'seqNo': 1,
courseId: 7
},
{
id: 23,
'description': 'Service Workers In a Nutshell - Service Worker Registration',
'duration': '6:59',
'seqNo': 2,
courseId: 7
},
{
id: 24,
'description': 'Service Workers Hello World - Lifecycle Part 1 and PWA Chrome Dev Tools',
'duration': '7:28',
'seqNo': 3,
courseId: 7
},
{
id: 25,
'description': 'Service Workers and Application Versioning - Install & Activate Lifecycle Phases',
'duration': '10:17',
'seqNo': 4,
courseId: 7
},
{
id: 26,
'description': 'Downloading The Offline Page - The Service Worker Installation Phase',
'duration': '09:50',
'seqNo': 5,
courseId: 7
},
{
id: 27,
'description': 'Introduction to the Cache Storage PWA API',
'duration': '04:44',
'seqNo': 6,
courseId: 7
},
{
id: 28,
'description': 'View Service Workers HTTP Interception Features In Action',
'duration': '06:07',
'seqNo': 7,
courseId: 7
},
{
id: 29,
'description': 'Service Workers Error Handling - Serving The Offline Page',
'duration': '5:38',
'seqNo': 8,
courseId: 7
},
// Serverless Angular with Firebase Course
{
id: 30,
description: 'Development Environment Setup',
'duration': '5:38',
'seqNo': 1,
courseId: 1
},
{
id: 31,
description: 'Introduction to the Firebase Ecosystem',
'duration': '5:12',
'seqNo': 2,
courseId: 1
},
{
id: 32,
description: 'Importing Data into Firestore',
'duration': '4:07',
'seqNo': 3,
courseId: 1
},
{
id: 33,
description: 'Firestore Documents in Detail',
'duration': '7:32',
'seqNo': 4,
courseId: 1
},
{
id: 34,
description: 'Firestore Collections in Detail',
'duration': '6:28',
'seqNo': 5,
courseId: 1
},
{
id: 35,
description: 'Firestore Unique Identifiers',
'duration': '4:38',
'seqNo': 6,
courseId: 1
},
{
id: 36,
description: 'Querying Firestore Collections',
'duration': '7:54',
'seqNo': 7,
courseId: 1
},
{
id: 37,
description: 'Firebase Security Rules In Detail',
'duration': '5:31',
'seqNo': 8,
courseId: 1
},
{
id: 38,
description: 'Firebase Cloud Functions In Detail',
'duration': '8:19',
'seqNo': 9,
courseId: 1
},
{
id: 39,
description: 'Firebase Storage In Detail',
'duration': '7:05',
'seqNo': 10,
courseId: 1
}
];