-
Notifications
You must be signed in to change notification settings - Fork 0
/
main-es2015.js
1783 lines (1523 loc) · 138 KB
/
main-es2015.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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["main"],{
/***/ "./$$_lazy_route_resource lazy recursive":
/*!******************************************************!*\
!*** ./$$_lazy_route_resource lazy namespace object ***!
\******************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function webpackEmptyAsyncContext(req) {
// Here Promise.resolve().then() is used instead of new Promise() to prevent
// uncaught exception popping up in devtools
return Promise.resolve().then(function() {
var e = new Error("Cannot find module '" + req + "'");
e.code = 'MODULE_NOT_FOUND';
throw e;
});
}
webpackEmptyAsyncContext.keys = function() { return []; };
webpackEmptyAsyncContext.resolve = webpackEmptyAsyncContext;
module.exports = webpackEmptyAsyncContext;
webpackEmptyAsyncContext.id = "./$$_lazy_route_resource lazy recursive";
/***/ }),
/***/ "./src/app/app-routing.module.ts":
/*!***************************************!*\
!*** ./src/app/app-routing.module.ts ***!
\***************************************/
/*! exports provided: AppRoutingModule */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppRoutingModule", function() { return AppRoutingModule; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/router */ "./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
/* harmony import */ var _pages_home_page_home_page_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./pages/home-page/home-page.component */ "./src/app/pages/home-page/home-page.component.ts");
/* harmony import */ var _pages_help_page_help_page_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./pages/help-page/help-page.component */ "./src/app/pages/help-page/help-page.component.ts");
/* harmony import */ var _pages_demo_page_demo_page_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./pages/demo-page/demo-page.component */ "./src/app/pages/demo-page/demo-page.component.ts");
const routes = [
{ path: '', component: _pages_home_page_home_page_component__WEBPACK_IMPORTED_MODULE_2__["HomePageComponent"] },
{ path: 'demo', component: _pages_demo_page_demo_page_component__WEBPACK_IMPORTED_MODULE_4__["DemoPageComponent"] },
{ path: 'help', component: _pages_help_page_help_page_component__WEBPACK_IMPORTED_MODULE_3__["HelpPageComponent"] },
// {
// path: 'login',
// loadChildren: () => import('./user/user.module').then(m => m.UserModule)
// },
{
path: 'tts',
loadChildren: () => __webpack_require__.e(/*! import() | tts-tts-module */ "tts-tts-module").then(__webpack_require__.bind(null, /*! ./tts/tts.module */ "./src/app/tts/tts.module.ts")).then(m => m.TtsModule),
}
];
class AppRoutingModule {
}
AppRoutingModule.ɵmod = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ type: AppRoutingModule });
AppRoutingModule.ɵinj = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({ factory: function AppRoutingModule_Factory(t) { return new (t || AppRoutingModule)(); }, imports: [[_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterModule"].forRoot(routes, {
initialNavigation: 'enabled'
})],
_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterModule"]] });
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵsetNgModuleScope"](AppRoutingModule, { imports: [_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterModule"]], exports: [_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterModule"]] }); })();
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](AppRoutingModule, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["NgModule"],
args: [{
imports: [_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterModule"].forRoot(routes, {
initialNavigation: 'enabled'
})],
exports: [_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterModule"]]
}]
}], null, null); })();
/***/ }),
/***/ "./src/app/app.component.ts":
/*!**********************************!*\
!*** ./src/app/app.component.ts ***!
\**********************************/
/*! exports provided: AppComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppComponent", function() { return AppComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _shared_shell_shell_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./shared/shell/shell.component */ "./src/app/shared/shell/shell.component.ts");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/router */ "./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
/* harmony import */ var _feedback_feedback_feedback_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./feedback/feedback/feedback.component */ "./src/app/feedback/feedback/feedback.component.ts");
class AppComponent {
constructor() {
}
}
AppComponent.ɵfac = function AppComponent_Factory(t) { return new (t || AppComponent)(); };
AppComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: AppComponent, selectors: [["app-root"]], decls: 3, vars: 0, template: function AppComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "app-shell");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](1, "router-outlet");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](2, "app-feedback");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} }, directives: [_shared_shell_shell_component__WEBPACK_IMPORTED_MODULE_1__["ShellComponent"], _angular_router__WEBPACK_IMPORTED_MODULE_2__["RouterOutlet"], _feedback_feedback_feedback_component__WEBPACK_IMPORTED_MODULE_3__["FeedbackComponent"]], styles: ["app-feedback[_ngcontent-%COMP%] {\n position: absolute;\n right: 5px;\n bottom: 0;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvQzpcXFVzZXJzXFxTYWZld2FyZVxcRG9jdW1lbnRzXFx0ZXN0c1xcdHRzLWFpL3NyY1xcYXBwXFxhcHAuY29tcG9uZW50LnNjc3MiLCJzcmMvYXBwL2FwcC5jb21wb25lbnQuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLFNBQUE7QUNDRiIsImZpbGUiOiJzcmMvYXBwL2FwcC5jb21wb25lbnQuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbImFwcC1mZWVkYmFjayB7XHJcbiAgcG9zaXRpb246IGFic29sdXRlO1xyXG4gIHJpZ2h0OiA1cHg7XHJcbiAgYm90dG9tOiAwO1xyXG59XHJcbiIsImFwcC1mZWVkYmFjayB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgcmlnaHQ6IDVweDtcbiAgYm90dG9tOiAwO1xufSJdfQ== */"] });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](AppComponent, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"],
args: [{
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
}]
}], function () { return []; }, null); })();
/***/ }),
/***/ "./src/app/app.module.ts":
/*!*******************************!*\
!*** ./src/app/app.module.ts ***!
\*******************************/
/*! exports provided: AppModule */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppModule", function() { return AppModule; });
/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/platform-browser */ "./node_modules/@angular/platform-browser/__ivy_ngcc__/fesm2015/platform-browser.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _environments_environment__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../environments/environment */ "./src/environments/environment.ts");
/* harmony import */ var _angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/platform-browser/animations */ "./node_modules/@angular/platform-browser/__ivy_ngcc__/fesm2015/animations.js");
/* harmony import */ var _app_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./app.component */ "./src/app/app.component.ts");
/* harmony import */ var _app_routing_module__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./app-routing.module */ "./src/app/app-routing.module.ts");
/* harmony import */ var _pages_home_page_home_page_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./pages/home-page/home-page.component */ "./src/app/pages/home-page/home-page.component.ts");
/* harmony import */ var _shared_shared_module__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./shared/shared.module */ "./src/app/shared/shared.module.ts");
/* harmony import */ var _user_user_module__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./user/user.module */ "./src/app/user/user.module.ts");
/* harmony import */ var _angular_service_worker__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/service-worker */ "./node_modules/@angular/service-worker/__ivy_ngcc__/fesm2015/service-worker.js");
/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @angular/common/http */ "./node_modules/@angular/common/__ivy_ngcc__/fesm2015/http.js");
/* harmony import */ var _services_snack_service__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./services/snack.service */ "./src/app/services/snack.service.ts");
/* harmony import */ var _services_auth_service__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./services/auth.service */ "./src/app/services/auth.service.ts");
/* harmony import */ var _feedback_feedback_module__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./feedback/feedback.module */ "./src/app/feedback/feedback.module.ts");
/* harmony import */ var _services_breakpoint_service__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./services/breakpoint.service */ "./src/app/services/breakpoint.service.ts");
/* harmony import */ var _services_dialog_service__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./services/dialog.service */ "./src/app/services/dialog.service.ts");
/* harmony import */ var _pages_help_page_help_page_component__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./pages/help-page/help-page.component */ "./src/app/pages/help-page/help-page.component.ts");
/* harmony import */ var _pages_demo_page_demo_page_component__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./pages/demo-page/demo-page.component */ "./src/app/pages/demo-page/demo-page.component.ts");
// App Modules
class AppModule {
}
AppModule.ɵmod = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineNgModule"]({ type: AppModule, bootstrap: [_app_component__WEBPACK_IMPORTED_MODULE_4__["AppComponent"]] });
AppModule.ɵinj = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineInjector"]({ factory: function AppModule_Factory(t) { return new (t || AppModule)(); }, providers: [_services_snack_service__WEBPACK_IMPORTED_MODULE_11__["SnackService"],
_services_auth_service__WEBPACK_IMPORTED_MODULE_12__["AuthService"],
_services_dialog_service__WEBPACK_IMPORTED_MODULE_15__["DialogService"],
_services_breakpoint_service__WEBPACK_IMPORTED_MODULE_14__["BreakpointService"]], imports: [[
_angular_platform_browser__WEBPACK_IMPORTED_MODULE_0__["BrowserModule"],
_app_routing_module__WEBPACK_IMPORTED_MODULE_5__["AppRoutingModule"],
_angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_3__["BrowserAnimationsModule"],
_angular_common_http__WEBPACK_IMPORTED_MODULE_10__["HttpClientModule"],
_shared_shared_module__WEBPACK_IMPORTED_MODULE_7__["SharedModule"],
_user_user_module__WEBPACK_IMPORTED_MODULE_8__["UserModule"],
// AngularFireModule.initializeApp(environment.firebase),
// AngularFirestoreModule,
// AngularFireAuthModule,
_angular_service_worker__WEBPACK_IMPORTED_MODULE_9__["ServiceWorkerModule"].register('ngsw-worker.js', { enabled: _environments_environment__WEBPACK_IMPORTED_MODULE_2__["environment"].production }),
_feedback_feedback_module__WEBPACK_IMPORTED_MODULE_13__["FeedbackModule"],
]] });
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsetNgModuleScope"](AppModule, { declarations: [_app_component__WEBPACK_IMPORTED_MODULE_4__["AppComponent"],
_pages_home_page_home_page_component__WEBPACK_IMPORTED_MODULE_6__["HomePageComponent"],
_pages_help_page_help_page_component__WEBPACK_IMPORTED_MODULE_16__["HelpPageComponent"],
_pages_demo_page_demo_page_component__WEBPACK_IMPORTED_MODULE_17__["DemoPageComponent"]], imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_0__["BrowserModule"],
_app_routing_module__WEBPACK_IMPORTED_MODULE_5__["AppRoutingModule"],
_angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_3__["BrowserAnimationsModule"],
_angular_common_http__WEBPACK_IMPORTED_MODULE_10__["HttpClientModule"],
_shared_shared_module__WEBPACK_IMPORTED_MODULE_7__["SharedModule"],
_user_user_module__WEBPACK_IMPORTED_MODULE_8__["UserModule"], _angular_service_worker__WEBPACK_IMPORTED_MODULE_9__["ServiceWorkerModule"], _feedback_feedback_module__WEBPACK_IMPORTED_MODULE_13__["FeedbackModule"]] }); })();
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵsetClassMetadata"](AppModule, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_1__["NgModule"],
args: [{
declarations: [
_app_component__WEBPACK_IMPORTED_MODULE_4__["AppComponent"],
_pages_home_page_home_page_component__WEBPACK_IMPORTED_MODULE_6__["HomePageComponent"],
_pages_help_page_help_page_component__WEBPACK_IMPORTED_MODULE_16__["HelpPageComponent"],
_pages_demo_page_demo_page_component__WEBPACK_IMPORTED_MODULE_17__["DemoPageComponent"]
],
imports: [
_angular_platform_browser__WEBPACK_IMPORTED_MODULE_0__["BrowserModule"],
_app_routing_module__WEBPACK_IMPORTED_MODULE_5__["AppRoutingModule"],
_angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_3__["BrowserAnimationsModule"],
_angular_common_http__WEBPACK_IMPORTED_MODULE_10__["HttpClientModule"],
_shared_shared_module__WEBPACK_IMPORTED_MODULE_7__["SharedModule"],
_user_user_module__WEBPACK_IMPORTED_MODULE_8__["UserModule"],
// AngularFireModule.initializeApp(environment.firebase),
// AngularFirestoreModule,
// AngularFireAuthModule,
_angular_service_worker__WEBPACK_IMPORTED_MODULE_9__["ServiceWorkerModule"].register('ngsw-worker.js', { enabled: _environments_environment__WEBPACK_IMPORTED_MODULE_2__["environment"].production }),
_feedback_feedback_module__WEBPACK_IMPORTED_MODULE_13__["FeedbackModule"],
],
providers: [_services_snack_service__WEBPACK_IMPORTED_MODULE_11__["SnackService"],
_services_auth_service__WEBPACK_IMPORTED_MODULE_12__["AuthService"],
_services_dialog_service__WEBPACK_IMPORTED_MODULE_15__["DialogService"],
_services_breakpoint_service__WEBPACK_IMPORTED_MODULE_14__["BreakpointService"]],
bootstrap: [_app_component__WEBPACK_IMPORTED_MODULE_4__["AppComponent"]]
}]
}], null, null); })();
/***/ }),
/***/ "./src/app/feedback/feedback-dialog/feedback-dialog.component.ts":
/*!***********************************************************************!*\
!*** ./src/app/feedback/feedback-dialog/feedback-dialog.component.ts ***!
\***********************************************************************/
/*! exports provided: FeedbackDialogComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FeedbackDialogComponent", function() { return FeedbackDialogComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_forms__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/forms */ "./node_modules/@angular/forms/__ivy_ngcc__/fesm2015/forms.js");
/* harmony import */ var _angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/material/dialog */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/dialog.js");
/* harmony import */ var _angular_material_input__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/material/input */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/input.js");
/* harmony import */ var _angular_material_button__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/material/button */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/button.js");
class FeedbackDialogComponent {
constructor() {
this.formGroup = new _angular_forms__WEBPACK_IMPORTED_MODULE_1__["FormGroup"]({
goal: new _angular_forms__WEBPACK_IMPORTED_MODULE_1__["FormControl"](''),
features: new _angular_forms__WEBPACK_IMPORTED_MODULE_1__["FormControl"](''),
other: new _angular_forms__WEBPACK_IMPORTED_MODULE_1__["FormControl"](''),
mail: new _angular_forms__WEBPACK_IMPORTED_MODULE_1__["FormControl"](''),
});
}
ngOnInit() {
}
formGroupToFeedback(formGroup) {
return {
goal: formGroup.get('goal').value || '',
features: formGroup.get('features').value || '',
other: formGroup.get('other').value || '',
};
}
}
FeedbackDialogComponent.ɵfac = function FeedbackDialogComponent_Factory(t) { return new (t || FeedbackDialogComponent)(); };
FeedbackDialogComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: FeedbackDialogComponent, selectors: [["app-feedback-dialog"]], decls: 26, vars: 2, consts: [[1, "feedback-header"], [1, "close-button", 3, "mat-dialog-close"], ["mat-dialog-content", ""], [1, "survey", 3, "formGroup"], [1, "question-row"], ["for", "goal"], ["id", "goal", "matInput", "", "formControlName", "goal"], ["for", "features"], ["id", "features", "matInput", "", "formControlName", "features"], ["for", "other"], ["id", "other", "matInput", "", "formControlName", "other"], ["for", "mail"], ["id", "mail", "matInput", "", "formControlName", "mail"], ["mat-dialog-actions", ""], ["mat-raised-button", "", 1, "submit-survey", 3, "mat-dialog-close"]], template: function FeedbackDialogComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "header", 0);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "h3");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](2, "Feedback survey");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](3, "a", 1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](4, "X");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](5, "div", 2);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](6, "form", 3);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](7, "div", 4);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](8, "label", 5);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](9, " What is your main goal using this service ? ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](10, "textarea", 6);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](11, "div", 4);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](12, "label", 7);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](13, "What features would you like to see introduced in the future ?");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](14, "textarea", 8);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](15, "div", 4);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](16, "label", 9);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](17, "Is there anything else you would like to add ? (question, remark, issues...)");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](18, "textarea", 10);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](19, "div", 4);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](20, "label", 11);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](21, "You can leave your mail if you want us to get back to you.");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](22, "input", 12);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](23, "div", 13);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](24, "button", 14);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](25, "Submit");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} if (rf & 2) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](6);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵproperty"]("formGroup", ctx.formGroup);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](18);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵproperty"]("mat-dialog-close", ctx.formGroupToFeedback(ctx.formGroup));
} }, directives: [_angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__["MatDialogClose"], _angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__["MatDialogContent"], _angular_forms__WEBPACK_IMPORTED_MODULE_1__["ɵangular_packages_forms_forms_y"], _angular_forms__WEBPACK_IMPORTED_MODULE_1__["NgControlStatusGroup"], _angular_forms__WEBPACK_IMPORTED_MODULE_1__["FormGroupDirective"], _angular_material_input__WEBPACK_IMPORTED_MODULE_3__["MatInput"], _angular_forms__WEBPACK_IMPORTED_MODULE_1__["DefaultValueAccessor"], _angular_forms__WEBPACK_IMPORTED_MODULE_1__["NgControlStatus"], _angular_forms__WEBPACK_IMPORTED_MODULE_1__["FormControlName"], _angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__["MatDialogActions"], _angular_material_button__WEBPACK_IMPORTED_MODULE_4__["MatButton"]], styles: [".feedback-header[_ngcontent-%COMP%] {\n display: -webkit-box;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n flex-direction: row;\n -webkit-box-pack: justify;\n justify-content: space-between;\n}\n.feedback-header[_ngcontent-%COMP%] *[_ngcontent-%COMP%] {\n margin: 0;\n}\n.close-button[_ngcontent-%COMP%] {\n cursor: pointer;\n padding: 0 10px 0 10px;\n}\n.survey[_ngcontent-%COMP%] {\n text-align: left;\n}\n.submit-survey[_ngcontent-%COMP%] {\n background-color: forestgreen;\n width: 100%;\n}\n.question-row[_ngcontent-%COMP%] {\n margin: 0 auto 1rem auto;\n padding: 0.2rem;\n}\n.question-row[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n display: -webkit-box;\n display: flex;\n -webkit-box-align: center;\n align-items: center;\n margin-bottom: 0.4rem;\n}\n.question-row[_ngcontent-%COMP%] input[_ngcontent-%COMP%], .question-row[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%] {\n display: block;\n width: 100%;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvZmVlZGJhY2svZmVlZGJhY2stZGlhbG9nL0M6XFxVc2Vyc1xcU2FmZXdhcmVcXERvY3VtZW50c1xcdGVzdHNcXHR0cy1haS9zcmNcXGFwcFxcZmVlZGJhY2tcXGZlZWRiYWNrLWRpYWxvZ1xcZmVlZGJhY2stZGlhbG9nLmNvbXBvbmVudC5zY3NzIiwic3JjL2FwcC9mZWVkYmFjay9mZWVkYmFjay1kaWFsb2cvZmVlZGJhY2stZGlhbG9nLmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0VBSUUsb0JBQUE7RUFBQSxhQUFBO0VBQ0EsOEJBQUE7RUFBQSw2QkFBQTtVQUFBLG1CQUFBO0VBQ0EseUJBQUE7VUFBQSw4QkFBQTtBQ0ZGO0FESEU7RUFDRSxTQUFBO0FDS0o7QURFQTtFQUNFLGVBQUE7RUFDQSxzQkFBQTtBQ0NGO0FERUE7RUFDRSxnQkFBQTtBQ0NGO0FERUE7RUFDRSw2QkFBQTtFQUNBLFdBQUE7QUNDRjtBREVBO0VBQ0Usd0JBQUE7RUFDQSxlQUFBO0FDQ0Y7QURBRTtFQUNFLG9CQUFBO0VBQUEsYUFBQTtFQUNBLHlCQUFBO1VBQUEsbUJBQUE7RUFDQSxxQkFBQTtBQ0VKO0FEQUU7RUFDRSxjQUFBO0VBQ0EsV0FBQTtBQ0VKIiwiZmlsZSI6InNyYy9hcHAvZmVlZGJhY2svZmVlZGJhY2stZGlhbG9nL2ZlZWRiYWNrLWRpYWxvZy5jb21wb25lbnQuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi5mZWVkYmFjay1oZWFkZXIge1xyXG4gICoge1xyXG4gICAgbWFyZ2luOiAwO1xyXG4gIH1cclxuICBkaXNwbGF5OiBmbGV4O1xyXG4gIGZsZXgtZGlyZWN0aW9uOiByb3c7XHJcbiAganVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuO1xyXG59XHJcblxyXG4uY2xvc2UtYnV0dG9uIHtcclxuICBjdXJzb3I6IHBvaW50ZXI7XHJcbiAgcGFkZGluZzogMCAxMHB4IDAgMTBweDtcclxufVxyXG5cclxuLnN1cnZleSB7XHJcbiAgdGV4dC1hbGlnbjogbGVmdDtcclxufVxyXG5cclxuLnN1Ym1pdC1zdXJ2ZXkge1xyXG4gIGJhY2tncm91bmQtY29sb3I6IGZvcmVzdGdyZWVuO1xyXG4gIHdpZHRoOiAxMDAlO1xyXG59XHJcblxyXG4ucXVlc3Rpb24tcm93IHtcclxuICBtYXJnaW46IDAgYXV0byAxcmVtIGF1dG87XHJcbiAgcGFkZGluZzogMC4ycmVtO1xyXG4gIGxhYmVsIHtcclxuICAgIGRpc3BsYXk6IGZsZXg7XHJcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xyXG4gICAgbWFyZ2luLWJvdHRvbTogMC40cmVtO1xyXG4gIH1cclxuICBpbnB1dCwgdGV4dGFyZWEge1xyXG4gICAgZGlzcGxheTogYmxvY2s7XHJcbiAgICB3aWR0aDogMTAwJTtcclxuICB9XHJcbn1cclxuIiwiLmZlZWRiYWNrLWhlYWRlciB7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZGlyZWN0aW9uOiByb3c7XG4gIGp1c3RpZnktY29udGVudDogc3BhY2UtYmV0d2Vlbjtcbn1cbi5mZWVkYmFjay1oZWFkZXIgKiB7XG4gIG1hcmdpbjogMDtcbn1cblxuLmNsb3NlLWJ1dHRvbiB7XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgcGFkZGluZzogMCAxMHB4IDAgMTBweDtcbn1cblxuLnN1cnZleSB7XG4gIHRleHQtYWxpZ246IGxlZnQ7XG59XG5cbi5zdWJtaXQtc3VydmV5IHtcbiAgYmFja2dyb3VuZC1jb2xvcjogZm9yZXN0Z3JlZW47XG4gIHdpZHRoOiAxMDAlO1xufVxuXG4ucXVlc3Rpb24tcm93IHtcbiAgbWFyZ2luOiAwIGF1dG8gMXJlbSBhdXRvO1xuICBwYWRkaW5nOiAwLjJyZW07XG59XG4ucXVlc3Rpb24tcm93IGxhYmVsIHtcbiAgZGlzcGxheTogZmxleDtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgbWFyZ2luLWJvdHRvbTogMC40cmVtO1xufVxuLnF1ZXN0aW9uLXJvdyBpbnB1dCwgLnF1ZXN0aW9uLXJvdyB0ZXh0YXJlYSB7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICB3aWR0aDogMTAwJTtcbn0iXX0= */"] });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FeedbackDialogComponent, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"],
args: [{
selector: 'app-feedback-dialog',
templateUrl: './feedback-dialog.component.html',
styleUrls: ['./feedback-dialog.component.scss']
}]
}], function () { return []; }, null); })();
/***/ }),
/***/ "./src/app/feedback/feedback.module.ts":
/*!*********************************************!*\
!*** ./src/app/feedback/feedback.module.ts ***!
\*********************************************/
/*! exports provided: FeedbackModule */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FeedbackModule", function() { return FeedbackModule; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ "./node_modules/@angular/common/__ivy_ngcc__/fesm2015/common.js");
/* harmony import */ var _feedback_feedback_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./feedback/feedback.component */ "./src/app/feedback/feedback/feedback.component.ts");
/* harmony import */ var _feedback_dialog_feedback_dialog_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./feedback-dialog/feedback-dialog.component */ "./src/app/feedback/feedback-dialog/feedback-dialog.component.ts");
/* harmony import */ var _angular_material_dialog__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/material/dialog */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/dialog.js");
/* harmony import */ var _shared_shared_module__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../shared/shared.module */ "./src/app/shared/shared.module.ts");
/* harmony import */ var _angular_forms__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/forms */ "./node_modules/@angular/forms/__ivy_ngcc__/fesm2015/forms.js");
class FeedbackModule {
}
FeedbackModule.ɵmod = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ type: FeedbackModule });
FeedbackModule.ɵinj = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({ factory: function FeedbackModule_Factory(t) { return new (t || FeedbackModule)(); }, imports: [[
_angular_common__WEBPACK_IMPORTED_MODULE_1__["CommonModule"],
_angular_material_dialog__WEBPACK_IMPORTED_MODULE_4__["MatDialogModule"],
_shared_shared_module__WEBPACK_IMPORTED_MODULE_5__["SharedModule"],
_angular_forms__WEBPACK_IMPORTED_MODULE_6__["ReactiveFormsModule"]
]] });
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵsetNgModuleScope"](FeedbackModule, { declarations: [_feedback_feedback_component__WEBPACK_IMPORTED_MODULE_2__["FeedbackComponent"], _feedback_dialog_feedback_dialog_component__WEBPACK_IMPORTED_MODULE_3__["FeedbackDialogComponent"]], imports: [_angular_common__WEBPACK_IMPORTED_MODULE_1__["CommonModule"],
_angular_material_dialog__WEBPACK_IMPORTED_MODULE_4__["MatDialogModule"],
_shared_shared_module__WEBPACK_IMPORTED_MODULE_5__["SharedModule"],
_angular_forms__WEBPACK_IMPORTED_MODULE_6__["ReactiveFormsModule"]], exports: [_feedback_feedback_component__WEBPACK_IMPORTED_MODULE_2__["FeedbackComponent"]] }); })();
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FeedbackModule, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["NgModule"],
args: [{
declarations: [_feedback_feedback_component__WEBPACK_IMPORTED_MODULE_2__["FeedbackComponent"], _feedback_dialog_feedback_dialog_component__WEBPACK_IMPORTED_MODULE_3__["FeedbackDialogComponent"]],
exports: [
_feedback_feedback_component__WEBPACK_IMPORTED_MODULE_2__["FeedbackComponent"]
],
imports: [
_angular_common__WEBPACK_IMPORTED_MODULE_1__["CommonModule"],
_angular_material_dialog__WEBPACK_IMPORTED_MODULE_4__["MatDialogModule"],
_shared_shared_module__WEBPACK_IMPORTED_MODULE_5__["SharedModule"],
_angular_forms__WEBPACK_IMPORTED_MODULE_6__["ReactiveFormsModule"]
]
}]
}], null, null); })();
/***/ }),
/***/ "./src/app/feedback/feedback.service.ts":
/*!**********************************************!*\
!*** ./src/app/feedback/feedback.service.ts ***!
\**********************************************/
/*! exports provided: FeedbackService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FeedbackService", function() { return FeedbackService; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _environments_environment__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../environments/environment */ "./src/environments/environment.ts");
/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common/http */ "./node_modules/@angular/common/__ivy_ngcc__/fesm2015/http.js");
class FeedbackService {
constructor(httpClient) {
this.httpClient = httpClient;
}
sendFeedback(result) {
const data = {
files: {
'goal.txt': {
content: result.goal
},
'features.txt': {
content: result.features
},
'other.txt': {
content: result.other
},
'mail.txt': {
content: result.mail
},
},
description: 'feedback',
};
return this
.httpClient
.post('https://api.github.com/gists?access_token=' + _environments_environment__WEBPACK_IMPORTED_MODULE_1__["environment"].feedbackToken, data);
}
}
FeedbackService.ɵfac = function FeedbackService_Factory(t) { return new (t || FeedbackService)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common_http__WEBPACK_IMPORTED_MODULE_2__["HttpClient"])); };
FeedbackService.ɵprov = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ token: FeedbackService, factory: FeedbackService.ɵfac, providedIn: 'root' });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FeedbackService, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Injectable"],
args: [{
providedIn: 'root'
}]
}], function () { return [{ type: _angular_common_http__WEBPACK_IMPORTED_MODULE_2__["HttpClient"] }]; }, null); })();
/***/ }),
/***/ "./src/app/feedback/feedback/feedback.component.ts":
/*!*********************************************************!*\
!*** ./src/app/feedback/feedback/feedback.component.ts ***!
\*********************************************************/
/*! exports provided: FeedbackComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FeedbackComponent", function() { return FeedbackComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _feedback_dialog_feedback_dialog_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../feedback-dialog/feedback-dialog.component */ "./src/app/feedback/feedback-dialog/feedback-dialog.component.ts");
/* harmony import */ var _services_dialog_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../services/dialog.service */ "./src/app/services/dialog.service.ts");
/* harmony import */ var _feedback_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../feedback.service */ "./src/app/feedback/feedback.service.ts");
/* harmony import */ var _services_snack_service__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../services/snack.service */ "./src/app/services/snack.service.ts");
class FeedbackComponent {
constructor(dialogService, feedbackService, snackService) {
this.dialogService = dialogService;
this.feedbackService = feedbackService;
this.snackService = snackService;
}
ngOnInit() {
}
feedbackClicked() {
this.dialogService.openDialog(_feedback_dialog_feedback_dialog_component__WEBPACK_IMPORTED_MODULE_1__["FeedbackDialogComponent"], {}).subscribe((result) => {
if (result) {
this.feedbackService.sendFeedback(result).subscribe(() => {
this.snackService.displayMessage('Thank you for your feedback !');
}, error => {
console.log(error);
this.snackService.displayMessage('Sorry, something went wrong sending your feedback.');
});
}
});
}
}
FeedbackComponent.ɵfac = function FeedbackComponent_Factory(t) { return new (t || FeedbackComponent)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_services_dialog_service__WEBPACK_IMPORTED_MODULE_2__["DialogService"]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_feedback_service__WEBPACK_IMPORTED_MODULE_3__["FeedbackService"]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_services_snack_service__WEBPACK_IMPORTED_MODULE_4__["SnackService"])); };
FeedbackComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: FeedbackComponent, selectors: [["app-feedback"]], decls: 2, vars: 0, consts: [[3, "click"]], template: function FeedbackComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "button", 0);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function FeedbackComponent_Template_button_click_0_listener($event) { return ctx.feedbackClicked(); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](1, "Feedback");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} }, styles: ["button[_ngcontent-%COMP%] {\n height: 30px;\n border: solid 2px #CCCCCC;\n background: #333;\n width: 100px;\n color: white;\n text-align: center;\n position: fixed;\n right: 40px;\n bottom: -5px;\n font-family: \"Roboto\", helvetica, arial, sans-serif;\n z-index: 999;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvZmVlZGJhY2svZmVlZGJhY2svQzpcXFVzZXJzXFxTYWZld2FyZVxcRG9jdW1lbnRzXFx0ZXN0c1xcdHRzLWFpL3NyY1xcYXBwXFxmZWVkYmFja1xcZmVlZGJhY2tcXGZlZWRiYWNrLmNvbXBvbmVudC5zY3NzIiwic3JjL2FwcC9mZWVkYmFjay9mZWVkYmFjay9mZWVkYmFjay5jb21wb25lbnQuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLFlBQUE7RUFDRCx5QkFBQTtFQUNBLGdCQUFBO0VBQ0EsWUFBQTtFQUlBLFlBQUE7RUFLQSxrQkFBQTtFQUNBLGVBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLG1EQUFBO0VBQ0EsWUFBQTtBQ05EIiwiZmlsZSI6InNyYy9hcHAvZmVlZGJhY2svZmVlZGJhY2svZmVlZGJhY2suY29tcG9uZW50LnNjc3MiLCJzb3VyY2VzQ29udGVudCI6WyJidXR0b24ge1xyXG4gIGhlaWdodDozMHB4O1xyXG4gYm9yZGVyOnNvbGlkIDJweCAjQ0NDQ0NDO1xyXG4gYmFja2dyb3VuZDojMzMzO1xyXG4gd2lkdGg6MTAwcHg7XHJcbiAvL2xpbmUtaGVpZ2h0OjMycHg7XHJcbiAvL2ZvbnQtd2VpZ2h0OjYwMDtcclxuIC8vZm9udC1zaXplOjE0cHg7XHJcbiBjb2xvcjp3aGl0ZTtcclxuIC8vLXdlYmtpdC10cmFuc2Zvcm06cm90YXRlKC05MGRlZyk7XHJcbiAvL3RyYW5zZm9ybTpyb3RhdGUoLTkwZGVnKTtcclxuIC8vIC1tcy10cmFuc2Zvcm06cm90YXRlKC05MGRlZyk7XHJcbiAvLyAtbW96LXRyYW5zZm9ybTpyb3RhdGUoLTkwZGVnKTtcclxuIHRleHQtYWxpZ246Y2VudGVyO1xyXG4gcG9zaXRpb246Zml4ZWQ7XHJcbiByaWdodDo0MHB4O1xyXG4gYm90dG9tOi01cHg7XHJcbiBmb250LWZhbWlseTogXCJSb2JvdG9cIiwgaGVsdmV0aWNhLCBhcmlhbCwgc2Fucy1zZXJpZjtcclxuIHotaW5kZXg6OTk5O1xyXG59XHJcbiIsImJ1dHRvbiB7XG4gIGhlaWdodDogMzBweDtcbiAgYm9yZGVyOiBzb2xpZCAycHggI0NDQ0NDQztcbiAgYmFja2dyb3VuZDogIzMzMztcbiAgd2lkdGg6IDEwMHB4O1xuICBjb2xvcjogd2hpdGU7XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgcG9zaXRpb246IGZpeGVkO1xuICByaWdodDogNDBweDtcbiAgYm90dG9tOiAtNXB4O1xuICBmb250LWZhbWlseTogXCJSb2JvdG9cIiwgaGVsdmV0aWNhLCBhcmlhbCwgc2Fucy1zZXJpZjtcbiAgei1pbmRleDogOTk5O1xufSJdfQ== */"] });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FeedbackComponent, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"],
args: [{
selector: 'app-feedback',
templateUrl: './feedback.component.html',
styleUrls: ['./feedback.component.scss']
}]
}], function () { return [{ type: _services_dialog_service__WEBPACK_IMPORTED_MODULE_2__["DialogService"] }, { type: _feedback_service__WEBPACK_IMPORTED_MODULE_3__["FeedbackService"] }, { type: _services_snack_service__WEBPACK_IMPORTED_MODULE_4__["SnackService"] }]; }, null); })();
/***/ }),
/***/ "./src/app/pages/demo-page/demo-page.component.ts":
/*!********************************************************!*\
!*** ./src/app/pages/demo-page/demo-page.component.ts ***!
\********************************************************/
/*! exports provided: DemoPageComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DemoPageComponent", function() { return DemoPageComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
class DemoPageComponent {
constructor() {
}
ngOnInit() {
}
}
DemoPageComponent.ɵfac = function DemoPageComponent_Factory(t) { return new (t || DemoPageComponent)(); };
DemoPageComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: DemoPageComponent, selectors: [["app-demo-page"]], decls: 3, vars: 0, consts: [[1, "simple-article"], [1, "simple-section"]], template: function DemoPageComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "article", 0);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "section", 1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](2, " Coming soon ! ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} }, styles: ["\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJzcmMvYXBwL3BhZ2VzL2RlbW8tcGFnZS9kZW1vLXBhZ2UuY29tcG9uZW50LnNjc3MifQ== */"] });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](DemoPageComponent, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"],
args: [{
selector: 'app-demo-page',
templateUrl: './demo-page.component.html',
styleUrls: ['./demo-page.component.scss']
}]
}], function () { return []; }, null); })();
/***/ }),
/***/ "./src/app/pages/help-page/help-page.component.ts":
/*!********************************************************!*\
!*** ./src/app/pages/help-page/help-page.component.ts ***!
\********************************************************/
/*! exports provided: HelpPageComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "HelpPageComponent", function() { return HelpPageComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/router */ "./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
class HelpPageComponent {
constructor() {
}
ngOnInit() {
}
}
HelpPageComponent.ɵfac = function HelpPageComponent_Factory(t) { return new (t || HelpPageComponent)(); };
HelpPageComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: HelpPageComponent, selectors: [["app-help-page"]], decls: 50, vars: 1, consts: [[1, "simple-article"], [1, "simple-section"], ["href", "https://console.cloud.google.com/cloud-resource-manager"], ["href", "https://console.cloud.google.com/billing/linkedaccount"], ["href", "https://cloud.google.com/text-to-speech/pricing"], ["href", "https://console.cloud.google.com/flows/enableapi?apiid=texttospeech.googleapis.com"], ["href", "https://console.cloud.google.com/apis/credentials"], [3, "routerLink"]], template: function HelpPageComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "article", 0);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "section", 1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](2, "h2");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](3, "How to get an API key ?");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](4, "ol");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](5, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](6, "Create or select a Google Cloud project from ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](7, "a", 2);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](8, "here");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](9, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](10, "Enable billing for the project from ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](11, "a", 3);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](12, "here");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](13, ". (Note: even with billing enabled, you won't be charged unless you go over the ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](14, "a", 4);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](15, "free monthly quota");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](16, ")");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](17, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](18, "Enable Text-to-Speech ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](19, "a", 5);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](20, "here");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](21, ".");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](22, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](23, "Go to the ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](24, "a", 6);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](25, "Credentials page");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](26, ", click on ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](27, "b");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](28, "Create credentials");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](29, ", then ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](30, "b");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](31, "API key");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](32, ".");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](33, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](34, "Copy and paste the API Key into the ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](35, "a", 7);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](36, " Text-to-Speech Interface");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](37, " and click save.");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](38, " (Note: the API key is saved in your browser, we do not save it on our end) ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](39, "h2");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](40, " Pricing ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](41, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](42, " This website is currently free. You won't be charged by Google Cloud's Text-to-Speech as long as you don't go over the free quota. Google's service offers 1 million characters per month free of charge (");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](43, "a", 4);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](44, "see details here");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](45, ") After that, the pricing is $16.00USD per 1 million characters for WaveNet TTS, and $4.00US for non-WaveNet TTS. ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](46, "h2");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](47, " Privacy ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](48, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](49, " Nothing is stored on our end, except for the feedback you might send us. Everything else (API key, generated sounds, text) is stored within your device's browser. ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} if (rf & 2) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](35);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵproperty"]("routerLink", "/tts");
} }, directives: [_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterLinkWithHref"]], styles: ["\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJzcmMvYXBwL3BhZ2VzL2hlbHAtcGFnZS9oZWxwLXBhZ2UuY29tcG9uZW50LnNjc3MifQ== */"] });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](HelpPageComponent, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"],
args: [{
selector: 'app-help-page',
templateUrl: './help-page.component.html',
styleUrls: ['./help-page.component.scss']
}]
}], function () { return []; }, null); })();
/***/ }),
/***/ "./src/app/pages/home-page/home-page.component.ts":
/*!********************************************************!*\
!*** ./src/app/pages/home-page/home-page.component.ts ***!
\********************************************************/
/*! exports provided: HomePageComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "HomePageComponent", function() { return HomePageComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
class HomePageComponent {
}
HomePageComponent.ɵfac = function HomePageComponent_Factory(t) { return new (t || HomePageComponent)(); };
HomePageComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: HomePageComponent, selectors: [["app-home-page"]], decls: 5, vars: 0, template: function HomePageComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "header");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "h1");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](2, "Text2Speech AI");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](3, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](4, " Access state-of-the-art Text-To-Speech synthesis through an easy-to-use interface ! ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} }, styles: ["header[_ngcontent-%COMP%] {\n text-align: center;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvcGFnZXMvaG9tZS1wYWdlL0M6XFxVc2Vyc1xcU2FmZXdhcmVcXERvY3VtZW50c1xcdGVzdHNcXHR0cy1haS9zcmNcXGFwcFxccGFnZXNcXGhvbWUtcGFnZVxcaG9tZS1wYWdlLmNvbXBvbmVudC5zY3NzIiwic3JjL2FwcC9wYWdlcy9ob21lLXBhZ2UvaG9tZS1wYWdlLmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0VBQ0ksa0JBQUE7QUNDSiIsImZpbGUiOiJzcmMvYXBwL3BhZ2VzL2hvbWUtcGFnZS9ob21lLXBhZ2UuY29tcG9uZW50LnNjc3MiLCJzb3VyY2VzQ29udGVudCI6WyJoZWFkZXIge1xyXG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xyXG59XHJcbiIsImhlYWRlciB7XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbn0iXX0= */"] });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](HomePageComponent, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"],
args: [{
selector: 'app-home-page',
templateUrl: './home-page.component.html',
styleUrls: ['./home-page.component.scss']
}]
}], null, null); })();
/***/ }),
/***/ "./src/app/services/auth.service.ts":
/*!******************************************!*\
!*** ./src/app/services/auth.service.ts ***!
\******************************************/
/*! exports provided: AuthService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AuthService", function() { return AuthService; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ "./node_modules/rxjs/_esm2015/index.js");
/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ "./node_modules/rxjs/_esm2015/operators/index.js");
/* harmony import */ var _angular_fire_auth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/fire/auth */ "./node_modules/@angular/fire/__ivy_ngcc__/auth/es2015/index.js");
class AuthService {
constructor(af) {
this.af = af;
this._loaded = new rxjs__WEBPACK_IMPORTED_MODULE_1__["BehaviorSubject"](false); // Initial load
this.af.user.subscribe(user => {
if (user) {
this.setUser(user);
}
this._loaded.next(true);
});
}
waitForLoad() {
return this._loaded.pipe(Object(rxjs_operators__WEBPACK_IMPORTED_MODULE_2__["filter"])(val => val), Object(rxjs_operators__WEBPACK_IMPORTED_MODULE_2__["take"])(1)).toPromise();
}
setUser(user) { this.user = user; }
}
AuthService.ɵfac = function AuthService_Factory(t) { return new (t || AuthService)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_fire_auth__WEBPACK_IMPORTED_MODULE_3__["AngularFireAuth"])); };
AuthService.ɵprov = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ token: AuthService, factory: AuthService.ɵfac });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](AuthService, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Injectable"]
}], function () { return [{ type: _angular_fire_auth__WEBPACK_IMPORTED_MODULE_3__["AngularFireAuth"] }]; }, null); })();
/***/ }),
/***/ "./src/app/services/breakpoint.service.ts":
/*!************************************************!*\
!*** ./src/app/services/breakpoint.service.ts ***!
\************************************************/
/*! exports provided: BreakpointService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BreakpointService", function() { return BreakpointService; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_cdk_layout__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/cdk/layout */ "./node_modules/@angular/cdk/__ivy_ngcc__/fesm2015/layout.js");
class BreakpointService {
constructor(breakpointObserver) {
this.breakpointObserver = breakpointObserver;
this.isExtraSmall = this.breakpointObserver.observe(_angular_cdk_layout__WEBPACK_IMPORTED_MODULE_1__["Breakpoints"].XSmall);
}
get isMobile() {
return this.breakpointObserver.isMatched('(max-width: 767px)');
}
}
BreakpointService.ɵfac = function BreakpointService_Factory(t) { return new (t || BreakpointService)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_layout__WEBPACK_IMPORTED_MODULE_1__["BreakpointObserver"])); };
BreakpointService.ɵprov = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ token: BreakpointService, factory: BreakpointService.ɵfac, providedIn: 'root' });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](BreakpointService, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Injectable"],
args: [{
providedIn: 'root'
}]
}], function () { return [{ type: _angular_cdk_layout__WEBPACK_IMPORTED_MODULE_1__["BreakpointObserver"] }]; }, null); })();
/***/ }),
/***/ "./src/app/services/dialog.service.ts":
/*!********************************************!*\
!*** ./src/app/services/dialog.service.ts ***!
\********************************************/
/*! exports provided: DialogService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DialogService", function() { return DialogService; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _breakpoint_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./breakpoint.service */ "./src/app/services/breakpoint.service.ts");
/* harmony import */ var _angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/material/dialog */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/dialog.js");
class DialogService {
constructor(breakpointService, dialog) {
this.breakpointService = breakpointService;
this.dialog = dialog;
this.isOpened = false;
}
openDialog(component, config) {
if (this.isOpened) {
return;
}
this.isOpened = true;
let dialogConfig = {
width: 'calc(100% - 50px)',
maxWidth: '100vw',
panelClass: 'no-border-radius',
};
if (config) {
dialogConfig = Object.assign(Object.assign({}, dialogConfig), config);
}
const d = this.dialog.open(component, dialogConfig);
const smallDialogSubscription = this.breakpointService.isExtraSmall.subscribe(size => {
if (size.matches) {
d.updateSize('100vw', '100vh');
}
else {
d.updateSize('calc(100% - 50px)', '');
}
});
const afterClosed = d.afterClosed();
afterClosed.subscribe(() => {
this.isOpened = false;
smallDialogSubscription.unsubscribe();
});
return afterClosed;
}
}
DialogService.ɵfac = function DialogService_Factory(t) { return new (t || DialogService)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_breakpoint_service__WEBPACK_IMPORTED_MODULE_1__["BreakpointService"]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__["MatDialog"])); };
DialogService.ɵprov = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ token: DialogService, factory: DialogService.ɵfac });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](DialogService, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Injectable"]
}], function () { return [{ type: _breakpoint_service__WEBPACK_IMPORTED_MODULE_1__["BreakpointService"] }, { type: _angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__["MatDialog"] }]; }, null); })();
/***/ }),
/***/ "./src/app/services/snack.service.ts":
/*!*******************************************!*\
!*** ./src/app/services/snack.service.ts ***!
\*******************************************/
/*! exports provided: SnackService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SnackService", function() { return SnackService; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs/operators */ "./node_modules/rxjs/_esm2015/operators/index.js");
/* harmony import */ var _angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/material/snack-bar */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/snack-bar.js");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/router */ "./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
class SnackService {
constructor(snackBar, router) {
this.snackBar = snackBar;
this.router = router;
}
authError() {
this.snackBar.open('You must be logged in!', 'OK', {
duration: 5000
});
return this.snackBar._openedSnackBarRef
.onAction()
.pipe(Object(rxjs_operators__WEBPACK_IMPORTED_MODULE_1__["tap"])(_ => this.router.navigate(['/login'])))
.subscribe();
}
displayError(message) {
this.snackBar.open(message, 'OK', {
panelClass: 'error-bar',
duration: 5000
});
}
displayMessage(message, options) {
this.snackBar.open(message, 'OK', {
duration: (options && options.duration) || 5000
});
}
}
SnackService.ɵfac = function SnackService_Factory(t) { return new (t || SnackService)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_2__["MatSnackBar"]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_router__WEBPACK_IMPORTED_MODULE_3__["Router"])); };
SnackService.ɵprov = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ token: SnackService, factory: SnackService.ɵfac, providedIn: 'root' });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](SnackService, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Injectable"],
args: [{
providedIn: 'root'
}]
}], function () { return [{ type: _angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_2__["MatSnackBar"] }, { type: _angular_router__WEBPACK_IMPORTED_MODULE_3__["Router"] }]; }, null); })();
/***/ }),
/***/ "./src/app/shared/delete-button/delete-button.component.ts":
/*!*****************************************************************!*\
!*** ./src/app/shared/delete-button/delete-button.component.ts ***!
\*****************************************************************/
/*! exports provided: DeleteButtonComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DeleteButtonComponent", function() { return DeleteButtonComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_material_button__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/material/button */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/button.js");
/* harmony import */ var _angular_material_icon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/material/icon */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/icon.js");
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/common */ "./node_modules/@angular/common/__ivy_ngcc__/fesm2015/common.js");
function DeleteButtonComponent_span_3_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](1, "confirm");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} }
function DeleteButtonComponent_button_4_Template(rf, ctx) { if (rf & 1) {
const _r9 = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵgetCurrentView"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "button", 3);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function DeleteButtonComponent_button_4_Template_button_click_0_listener($event) { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵrestoreView"](_r9); const ctx_r8 = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnextContext"](); return ctx_r8.cancel(); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](1, " Cancel\n");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} }
class DeleteButtonComponent {
constructor() {
this.delete = new _angular_core__WEBPACK_IMPORTED_MODULE_0__["EventEmitter"]();
}
cancel() {
this.canDelete = false;
}
prepareForDelete() {
this.canDelete = true;
}
deleteBoard() {
this.delete.emit(true);
this.canDelete = false;
}
}
DeleteButtonComponent.ɵfac = function DeleteButtonComponent_Factory(t) { return new (t || DeleteButtonComponent)(); };
DeleteButtonComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: DeleteButtonComponent, selectors: [["app-delete-button"]], outputs: { delete: "delete" }, decls: 5, vars: 2, consts: [["mat-button", "", "color", "warn", 3, "click"], [4, "ngIf"], ["mat-button", "", 3, "click", 4, "ngIf"], ["mat-button", "", 3, "click"]], template: function DeleteButtonComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "button", 0);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function DeleteButtonComponent_Template_button_click_0_listener($event) { return ctx.canDelete ? ctx.deleteBoard() : ctx.prepareForDelete(); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "mat-icon");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](2, "delete");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtemplate"](3, DeleteButtonComponent_span_3_Template, 2, 0, "span", 1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtemplate"](4, DeleteButtonComponent_button_4_Template, 2, 0, "button", 2);
} if (rf & 2) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](3);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵproperty"]("ngIf", ctx.canDelete);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵproperty"]("ngIf", ctx.canDelete);
} }, directives: [_angular_material_button__WEBPACK_IMPORTED_MODULE_1__["MatButton"], _angular_material_icon__WEBPACK_IMPORTED_MODULE_2__["MatIcon"], _angular_common__WEBPACK_IMPORTED_MODULE_3__["NgIf"]], styles: [".confirm[_ngcontent-%COMP%] {\n min-width: 200px;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvc2hhcmVkL2RlbGV0ZS1idXR0b24vQzpcXFVzZXJzXFxTYWZld2FyZVxcRG9jdW1lbnRzXFx0ZXN0c1xcdHRzLWFpL3NyY1xcYXBwXFxzaGFyZWRcXGRlbGV0ZS1idXR0b25cXGRlbGV0ZS1idXR0b24uY29tcG9uZW50LnNjc3MiLCJzcmMvYXBwL3NoYXJlZC9kZWxldGUtYnV0dG9uL2RlbGV0ZS1idXR0b24uY29tcG9uZW50LnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7RUFBVyxnQkFBQTtBQ0VYIiwiZmlsZSI6InNyYy9hcHAvc2hhcmVkL2RlbGV0ZS1idXR0b24vZGVsZXRlLWJ1dHRvbi5jb21wb25lbnQuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi5jb25maXJtIHsgbWluLXdpZHRoOiAyMDBweDsgfSIsIi5jb25maXJtIHtcbiAgbWluLXdpZHRoOiAyMDBweDtcbn0iXX0= */"] });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](DeleteButtonComponent, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"],
args: [{
selector: 'app-delete-button',
templateUrl: './delete-button.component.html',
styleUrls: ['./delete-button.component.scss']
}]
}], null, { delete: [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Output"]
}] }); })();
/***/ }),
/***/ "./src/app/shared/shared.module.ts":
/*!*****************************************!*\
!*** ./src/app/shared/shared.module.ts ***!
\*****************************************/
/*! exports provided: SharedModule */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SharedModule", function() { return SharedModule; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ "./node_modules/@angular/common/__ivy_ngcc__/fesm2015/common.js");
/* harmony import */ var _angular_material_toolbar__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/material/toolbar */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/toolbar.js");
/* harmony import */ var _angular_material_icon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/material/icon */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/icon.js");
/* harmony import */ var _shell_shell_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./shell/shell.component */ "./src/app/shared/shell/shell.component.ts");
/* harmony import */ var _angular_cdk_layout__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/cdk/layout */ "./node_modules/@angular/cdk/__ivy_ngcc__/fesm2015/layout.js");
/* harmony import */ var _angular_material_button__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/material/button */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/button.js");
/* harmony import */ var _angular_material_sidenav__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/material/sidenav */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/sidenav.js");
/* harmony import */ var _angular_material_list__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/material/list */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/list.js");
/* harmony import */ var _angular_material_menu__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/material/menu */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/menu.js");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @angular/router */ "./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
/* harmony import */ var _delete_button_delete_button_component__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./delete-button/delete-button.component */ "./src/app/shared/delete-button/delete-button.component.ts");
/* harmony import */ var _angular_material_card__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @angular/material/card */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/card.js");
/* harmony import */ var _angular_material_form_field__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! @angular/material/form-field */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/form-field.js");
/* harmony import */ var _angular_material_input__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! @angular/material/input */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/input.js");
/* harmony import */ var _angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @angular/material/snack-bar */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/snack-bar.js");