Browse Source

docs: update links to reflect new Angular topic groups

pull/5585/head
Arman Ozak 5 years ago
parent
commit
507a26b9f0
  1. 2
      docs/en/UI/Angular/Config-State.md
  2. 4
      docs/en/UI/Angular/Content-Projection-Service.md
  3. 4
      docs/en/UI/Angular/Custom-Setting-Page.md
  4. 4
      docs/en/UI/Angular/Dom-Insertion-Service.md
  5. 9
      docs/en/UI/Angular/Environment.md
  6. 4
      docs/en/UI/Angular/Lazy-Load-Service.md
  7. 5
      docs/en/UI/Angular/List-Service.md
  8. 2
      docs/en/UI/Angular/Multi-Tenancy.md
  9. 2
      docs/en/UI/Angular/Quick-Start.md
  10. 2
      docs/en/UI/Angular/Service-Proxies.md
  11. 4
      docs/en/UI/Angular/Subscription-Service.md
  12. 2
      docs/en/UI/Angular/Toaster-Service.md
  13. 4
      docs/en/UI/Angular/Track-By-Service.md

2
docs/en/UI/Angular/Config-State.md

@ -233,4 +233,4 @@ Please refer to `Config.Environment` type for all the properties you can pass to
## What's Next?
- [Modifying the Menu](./Modifying-the-Menu.md)
- [HTTP Requests](./Http-Requests)

4
docs/en/UI/Angular/Content-Projection-Service.md

@ -1,4 +1,4 @@
# Content Projection
# Projecting Angular Content
You can use the `ContentProjectionService` in @abp/ng.core package in order to project content in an easy and explicit way.
@ -75,4 +75,4 @@ projectContent<T extends Type<any> | TemplateRef<any>>(
## What's Next?
- [TrackByService](./Track-By-Service.md)
- [Confirmation Popup](./Confirmation-Service.md)

4
docs/en/UI/Angular/Custom-Setting-Page.md

@ -35,7 +35,3 @@ export class AppComponent {
Navigate to `/setting-management` route to see the changes:
![Custom Settings Tab](./images/custom-settings.png)
## What's Next?
- [Lazy Loading Scripts & Styles](./Lazy-Load-Service.md)

4
docs/en/UI/Angular/Dom-Insertion-Service.md

@ -1,4 +1,4 @@
# Dom Insertion (of Scripts and Styles)
# Inserting Scripts & Styles to DOM
You can use the `DomInsertionService` in @abp/ng.core package in order to insert scripts and styles in an easy and explicit way.
@ -137,4 +137,4 @@ The `has` method returns a boolean value that indicates the given content has al
## What's Next?
- [ContentProjectionService](./Content-Projection-Service.md)
- [Lazy Loading Scripts & Styles](./Lazy-Load-Service.md)

9
docs/en/UI/Angular/Environment.md

@ -4,7 +4,7 @@ Every application needs some **environment** variables. In Angular world, this i
Current `Environment` configuration holds sub config classes as follows:
```typescript
```js
export interface Environment {
apis: Apis;
application: Application;
@ -16,7 +16,7 @@ export interface Environment {
## Apis
```typescript
```js
export interface Apis {
[key: string]: ApiConfig;
default: ApiConfig;
@ -56,7 +56,7 @@ Everything else will be sent to `"https://localhost:8080"`
## Application
```typescript
```js
export interface Application {
name: string;
baseUrl?: string;
@ -80,7 +80,7 @@ Abp Framework supports this out of box.
To integrate an existing config json into the `environment`, you need to set `remoteEnv`
```typescript
```js
export type customMergeFn = (
localEnv: Partial<Config.Environment>,
remoteEnv: any,
@ -106,4 +106,3 @@ export interface RemoteEnv {
## What's Next?
* [Service Proxies](./Service-Proxies.md)

4
docs/en/UI/Angular/Lazy-Load-Service.md

@ -1,4 +1,4 @@
# How to Lazy Load Scripts and Styles
# Lazy Loading Scripts & Styles
You can use the `LazyLoadService` in @abp/ng.core package in order to lazy load scripts and styles in an easy and explicit way.
@ -210,4 +210,4 @@ load(strategy: LoadingStrategy, retryTimes?: number, retryDelay?: number): Obser
## What's Next?
- [DomInsertionService](./Dom-Insertion-Service.md)
- [Projecting Angular Content](./Content-Projection-Service.md)

5
docs/en/UI/Angular/List-Service.md

@ -177,3 +177,8 @@ As of v3.0, with ngx-datatable, the `page` property has to be set as `0` for ini
```
**Important Note:** The `abp-table` is not removed, but is deprecated and will be removed in the future. Please consider switching to ngx-datatable.
## What's Next?
- [Easy *ngFor trackBy](./Track-By-Service.md)

2
docs/en/UI/Angular/Multi-Tenancy.md

@ -132,4 +132,4 @@ The app sends the `__tenant` header that contains the current tenant id on each
## What's Next?
- [Confirmation Popup](./Confirmation-Service.md)
- [RxJS Subscriptions](./Subscription-Service.md)

2
docs/en/UI/Angular/Quick-Start.md

@ -209,4 +209,4 @@ In addition, you can [deploy your application to certain targets using the Angul
## What's Next?
- [Environment](./Environment.md)
- [Environment Variables](./Environment.md)

2
docs/en/UI/Angular/Service-Proxies.md

@ -141,4 +141,4 @@ export class BookComponent implements OnInit {
## What's Next?
- [HTTP Requests](./Http-Requests)
- [Config State](./Config-State.md)

4
docs/en/UI/Angular/Subscription-Service.md

@ -1,4 +1,4 @@
# Easy Unsubscription for Your Observables
# RxJS Subscriptions
`SubscriptionService` is a utility service to provide an easy unsubscription from RxJS observables in Angular components and directives. Please see [why you should unsubscribe from observables on instance destruction](https://angular.io/guide/lifecycle-hooks#cleaning-up-on-instance-destruction).
@ -200,4 +200,4 @@ class DemoComponent implements OnInit {
## What's Next?
- [ListService](./List-Service.md)
- [Working with Lists](./List-Service.md)

2
docs/en/UI/Angular/Toaster-Service.md

@ -156,4 +156,4 @@ Removes all open toasts.
## What's Next?
- [Config State](./Config-State.md)
- [Modifying the Menu](./Modifying-the-Menu.md)

4
docs/en/UI/Angular/Track-By-Service.md

@ -1,4 +1,4 @@
# Easy TrackByFunction Implementation
# Easy *ngFor trackBy
`TrackByService` is a utility service to provide an easy implementation for one of the most frequent needs in Angular templates: `TrackByFunction`. Please see [this page in Angular docs](https://angular.io/guide/template-syntax#ngfor-with-trackby) for its purpose.
@ -116,4 +116,4 @@ class DemoComponent {
## What's Next?
- [SubscriptionService](./Subscription-Service.md)
- [Inserting Scripts & Styles to DOM](./Dom-Insertion-Service.md)

Loading…
Cancel
Save