@@ -26,50 +26,55 @@ Alternatively, press `Ctrl`+`Space` (Windows, Linux) or `Cmd`+`Space` (OSX) to a
26
26
27
27
### TypeScript Angular Snippets
28
28
29
- | Snippet | Purpose |
30
- | -------------------------------------------- | ------------------------------------------------------------ |
31
- | ` a-component ` | component |
32
- | ` a-component-inline ` | component with inline template |
33
- | ` a-component-root ` | root app component |
34
- | ` a-directive ` | directive |
35
- | ` a-guard-can-activate ` | ` CanActivate ` guard |
36
- | ` a-guard-can-activate-child ` | ` CanActivateChild ` guard |
37
- | ` a-guard-can-deactivate ` | ` CanDeactivate ` guard |
38
- | ` a-guard-can-load ` | ` CanLoad ` guard |
39
- | ` a-httpclient-get ` | ` httpClient.get ` with Rx Observable |
40
- | ` a-http-interceptor ` | Empty Angular ` HttpInterceptor ` for ` HttpClient ` |
41
- | ` a-http-interceptor-headers ` | Angular ` HttpInterceptor ` that sets headers for ` HttpClient ` |
42
- | ` a-http-interceptor-logging ` | Angular ` HttpInterceptor ` that logs traffic for ` HttpClient ` |
43
- | ` a-module ` | module |
44
- | ` a-module-root ` | root app module |
45
- | ` a-module-routing ` | routing module file (forChild) |
46
- | ` a-ngrx-store-module ` | create an NgRx store module |
47
- | ` a-ngrx-create-action ` | create an NgRx action with ` createAction ` |
48
- | ` a-ngrx-create-action-props ` | create an NgRx action with ` createAction ` with props |
49
- | ` a-ngrx-create-reducer ` | create an NgRx reducer with ` createReducer ` |
50
- | ` a-ngrx-create-effect ` | create an NgRx effect with ` createEffect ` |
51
- | ` a-ngrx-create-effect-api ` | create an NgRx effect with ` createEffect ` for an API call |
52
- | ` a-ngrx-create-selector ` | create an NgRx selector with ` createSelector ` |
53
- | ` a-ngrx-create-selector-props ` | create an NgRx selector with ` createSelector ` with props |
54
- | ` a-ngrx-data-entity-data-module-import ` | add ` EntityDataModule ` |
55
- | ` a-ngrx-data-entity-metadata ` | create the entity metadata for NgRx |
56
- | ` a-ngrx-data-entity-collection-data-service ` | create a data service using NgRx |
57
- | ` a-output-event ` | ` @Output ` event and emitter |
58
- | ` a-pipe ` | pipe |
59
- | ` a-resolver ` | resolver |
60
- | ` a-rxjs-import ` | import RxJs features |
61
- | ` a-rxjs-operators ` | import RxJs operators |
62
- | ` a-route-path-404 ` | 404 route path |
63
- | ` a-route-path-default ` | default route path |
64
- | ` a-route-path-with-children ` | route path with children |
65
- | ` a-route-path-eager ` | eager route path |
66
- | ` a-route-path-lazy ` | lazy route path |
67
- | ` a-router-events ` | listen to one or more router events |
68
- | ` a-route-params-subscribe ` | subscribe to route parameters |
69
- | ` a-service ` | service |
70
- | ` a-service-httpclient ` | service with ` HttpClient ` |
71
- | ` a-ctor-skip-self ` | angular ` NgModule ` 's ` skipself ` constructor |
72
- | ` a-subscribe ` | Rx Observable subscription |
29
+ | Snippet | Purpose |
30
+ | ---------------------------- | ------------------------------------------------------------ |
31
+ | ` a-component ` | component |
32
+ | ` a-component-inline ` | component with inline template |
33
+ | ` a-component-root ` | root app component |
34
+ | ` a-directive ` | directive |
35
+ | ` a-guard-can-activate ` | ` CanActivate ` guard |
36
+ | ` a-guard-can-activate-child ` | ` CanActivateChild ` guard |
37
+ | ` a-guard-can-deactivate ` | ` CanDeactivate ` guard |
38
+ | ` a-guard-can-load ` | ` CanLoad ` guard |
39
+ | ` a-httpclient-get ` | ` httpClient.get ` with Rx Observable |
40
+ | ` a-http-interceptor ` | Empty Angular ` HttpInterceptor ` for ` HttpClient ` |
41
+ | ` a-http-interceptor-headers ` | Angular ` HttpInterceptor ` that sets headers for ` HttpClient ` |
42
+ | ` a-http-interceptor-logging ` | Angular ` HttpInterceptor ` that logs traffic for ` HttpClient ` |
43
+ | ` a-module ` | module |
44
+ | ` a-module-root ` | root app module |
45
+ | ` a-module-routing ` | routing module file (forChild) |
46
+ | ` a-output-event ` | ` @Output ` event and emitter |
47
+ | ` a-pipe ` | pipe |
48
+ | ` a-resolver ` | resolver |
49
+ | ` a-rxjs-import ` | import RxJs features |
50
+ | ` a-rxjs-operators ` | import RxJs operators |
51
+ | ` a-route-path-404 ` | 404 route path |
52
+ | ` a-route-path-default ` | default route path |
53
+ | ` a-route-path-with-children ` | route path with children |
54
+ | ` a-route-path-eager ` | eager route path |
55
+ | ` a-route-path-lazy ` | lazy route path |
56
+ | ` a-router-events ` | listen to one or more router events |
57
+ | ` a-route-params-subscribe ` | subscribe to route parameters |
58
+ | ` a-service ` | service |
59
+ | ` a-service-httpclient ` | service with ` HttpClient ` |
60
+ | ` a-ctor-skip-self ` | angular ` NgModule ` 's ` skipself ` constructor |
61
+ | ` a-subscribe ` | Rx Observable subscription |
62
+
63
+ ### NgRx Snippets
64
+
65
+ | Snippet | Purpose |
66
+ | -------------------------------------------- | --------------------------------------------------------- |
67
+ | ` a-ngrx-store-module ` | create an NgRx store module |
68
+ | ` a-ngrx-create-action ` | create an NgRx action with ` createAction ` |
69
+ | ` a-ngrx-create-action-props ` | create an NgRx action with ` createAction ` with props |
70
+ | ` a-ngrx-create-reducer ` | create an NgRx reducer with ` createReducer ` |
71
+ | ` a-ngrx-create-effect ` | create an NgRx effect with ` createEffect ` |
72
+ | ` a-ngrx-create-effect-api ` | create an NgRx effect with ` createEffect ` for an API call |
73
+ | ` a-ngrx-create-selector ` | create an NgRx selector with ` createSelector ` |
74
+ | ` a-ngrx-create-selector-props ` | create an NgRx selector with ` createSelector ` with props |
75
+ | ` a-ngrx-data-entity-data-module-import ` | add ` EntityDataModule ` |
76
+ | ` a-ngrx-data-entity-metadata ` | create the entity metadata for NgRx |
77
+ | ` a-ngrx-data-entity-collection-data-service ` | create a data service using NgRx |
73
78
74
79
### Dockerfile Snippets
75
80
0 commit comments