diff options
author | Kimsible <kimsible@users.noreply.github.com> | 2021-04-28 22:17:02 +0200 |
---|---|---|
committer | Kimsible <kimsible@users.noreply.github.com> | 2021-05-05 11:47:03 +0200 |
commit | 69e076ddb0deda9e4120bab095d3369bb19fbd1e (patch) | |
tree | 6576a6293b9e76ce385813f62376e15a7e05001f /client/src/app/root.component.ts | |
parent | 08ac081b37cd6115634e8951608116fe0f13032b (diff) | |
download | PeerTube-69e076ddb0deda9e4120bab095d3369bb19fbd1e.tar.gz PeerTube-69e076ddb0deda9e4120bab095d3369bb19fbd1e.tar.zst PeerTube-69e076ddb0deda9e4120bab095d3369bb19fbd1e.zip |
Refactor client @actorName matcher with new API route
Diffstat (limited to 'client/src/app/root.component.ts')
-rw-r--r-- | client/src/app/root.component.ts | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/client/src/app/root.component.ts b/client/src/app/root.component.ts new file mode 100644 index 000000000..c65f59448 --- /dev/null +++ b/client/src/app/root.component.ts | |||
@@ -0,0 +1,42 @@ | |||
1 | import { Component, OnInit } from '@angular/core' | ||
2 | import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators' | ||
3 | import { ActivatedRoute, Router } from '@angular/router' | ||
4 | import { RestExtractor } from '@app/core' | ||
5 | import { ActorService } from '@app/shared/shared-main/account' | ||
6 | import { HttpStatusCode } from '@shared/core-utils/miscs/http-error-codes' | ||
7 | |||
8 | @Component({ | ||
9 | selector: 'my-root', | ||
10 | template: '' | ||
11 | }) | ||
12 | export class RootComponent implements OnInit { | ||
13 | constructor ( | ||
14 | private actorService: ActorService, | ||
15 | private route: ActivatedRoute, | ||
16 | private restExtractor: RestExtractor, | ||
17 | private router: Router | ||
18 | ) { | ||
19 | } | ||
20 | |||
21 | ngOnInit () { | ||
22 | this.route.params | ||
23 | .pipe( | ||
24 | map(params => params[ 'actorName' ]), | ||
25 | distinctUntilChanged(), | ||
26 | switchMap(actorName => this.actorService.getActor(actorName)), | ||
27 | catchError(err => this.restExtractor.redirectTo404IfNotFound(err, 'other', [ | ||
28 | HttpStatusCode.BAD_REQUEST_400, | ||
29 | HttpStatusCode.NOT_FOUND_404 | ||
30 | ])) | ||
31 | ) | ||
32 | .subscribe(actor => { | ||
33 | if (actor.constructor.name === 'Account') { | ||
34 | this.router.navigateByUrl(`/accounts/${actor.name}`) | ||
35 | } | ||
36 | |||
37 | if (actor.constructor.name === 'VideoChannel') { | ||
38 | this.router.navigateByUrl(`/video-channels/${actor.name}`) | ||
39 | } | ||
40 | }) | ||
41 | } | ||
42 | } | ||