diff options
author | Chocobozzz <me@florianbigard.com> | 2018-04-20 14:27:30 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-20 14:27:30 +0200 |
commit | 2a2c19dfef7a9aa313c6ca0798f271c9a63449a9 (patch) | |
tree | e6c87798105b64fc5dc44705532965cc6c96bd06 /client/src/app/videos | |
parent | 6d492e562cdc80d986323e9b5ee14953d3956e18 (diff) | |
download | PeerTube-2a2c19dfef7a9aa313c6ca0798f271c9a63449a9.tar.gz PeerTube-2a2c19dfef7a9aa313c6ca0798f271c9a63449a9.tar.zst PeerTube-2a2c19dfef7a9aa313c6ca0798f271c9a63449a9.zip |
Replace current state when changing page
Diffstat (limited to 'client/src/app/videos')
4 files changed, 8 insertions, 0 deletions
diff --git a/client/src/app/videos/video-list/video-local.component.ts b/client/src/app/videos/video-list/video-local.component.ts index de6552875..fd67be67b 100644 --- a/client/src/app/videos/video-list/video-local.component.ts +++ b/client/src/app/videos/video-list/video-local.component.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | import { Component, OnDestroy, OnInit } from '@angular/core' | 1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { immutableAssign } from '@app/shared/misc/utils' | 3 | import { immutableAssign } from '@app/shared/misc/utils' |
4 | import { Location } from '@angular/common' | ||
4 | import { NotificationsService } from 'angular2-notifications' | 5 | import { NotificationsService } from 'angular2-notifications' |
5 | import { AuthService } from '../../core/auth' | 6 | import { AuthService } from '../../core/auth' |
6 | import { AbstractVideoList } from '../../shared/video/abstract-video-list' | 7 | import { AbstractVideoList } from '../../shared/video/abstract-video-list' |
@@ -23,6 +24,7 @@ export class VideoLocalComponent extends AbstractVideoList implements OnInit, On | |||
23 | protected route: ActivatedRoute, | 24 | protected route: ActivatedRoute, |
24 | protected notificationsService: NotificationsService, | 25 | protected notificationsService: NotificationsService, |
25 | protected authService: AuthService, | 26 | protected authService: AuthService, |
27 | protected location: Location, | ||
26 | private videoService: VideoService) { | 28 | private videoService: VideoService) { |
27 | super() | 29 | super() |
28 | } | 30 | } |
diff --git a/client/src/app/videos/video-list/video-recently-added.component.ts b/client/src/app/videos/video-list/video-recently-added.component.ts index cca35d0f5..535b6e618 100644 --- a/client/src/app/videos/video-list/video-recently-added.component.ts +++ b/client/src/app/videos/video-list/video-recently-added.component.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | import { Component, OnDestroy, OnInit } from '@angular/core' | 1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { Location } from '@angular/common' | ||
3 | import { immutableAssign } from '@app/shared/misc/utils' | 4 | import { immutableAssign } from '@app/shared/misc/utils' |
4 | import { NotificationsService } from 'angular2-notifications' | 5 | import { NotificationsService } from 'angular2-notifications' |
5 | import { AuthService } from '../../core/auth' | 6 | import { AuthService } from '../../core/auth' |
@@ -19,6 +20,7 @@ export class VideoRecentlyAddedComponent extends AbstractVideoList implements On | |||
19 | 20 | ||
20 | constructor (protected router: Router, | 21 | constructor (protected router: Router, |
21 | protected route: ActivatedRoute, | 22 | protected route: ActivatedRoute, |
23 | protected location: Location, | ||
22 | protected notificationsService: NotificationsService, | 24 | protected notificationsService: NotificationsService, |
23 | protected authService: AuthService, | 25 | protected authService: AuthService, |
24 | private videoService: VideoService) { | 26 | private videoService: VideoService) { |
diff --git a/client/src/app/videos/video-list/video-search.component.ts b/client/src/app/videos/video-list/video-search.component.ts index 46a9dd48e..774d81ed6 100644 --- a/client/src/app/videos/video-list/video-search.component.ts +++ b/client/src/app/videos/video-list/video-search.component.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | import { Component, OnDestroy, OnInit } from '@angular/core' | 1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { Location } from '@angular/common' | ||
3 | import { RedirectService } from '@app/core' | 4 | import { RedirectService } from '@app/core' |
4 | import { immutableAssign } from '@app/shared/misc/utils' | 5 | import { immutableAssign } from '@app/shared/misc/utils' |
5 | import { NotificationsService } from 'angular2-notifications' | 6 | import { NotificationsService } from 'angular2-notifications' |
@@ -27,6 +28,7 @@ export class VideoSearchComponent extends AbstractVideoList implements OnInit, O | |||
27 | protected route: ActivatedRoute, | 28 | protected route: ActivatedRoute, |
28 | protected notificationsService: NotificationsService, | 29 | protected notificationsService: NotificationsService, |
29 | protected authService: AuthService, | 30 | protected authService: AuthService, |
31 | protected location: Location, | ||
30 | private videoService: VideoService, | 32 | private videoService: VideoService, |
31 | private redirectService: RedirectService | 33 | private redirectService: RedirectService |
32 | ) { | 34 | ) { |
diff --git a/client/src/app/videos/video-list/video-trending.component.ts b/client/src/app/videos/video-list/video-trending.component.ts index 0c9e28216..ea65070f9 100644 --- a/client/src/app/videos/video-list/video-trending.component.ts +++ b/client/src/app/videos/video-list/video-trending.component.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | import { Component, OnDestroy, OnInit } from '@angular/core' | 1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { Location } from '@angular/common' | ||
3 | import { immutableAssign } from '@app/shared/misc/utils' | 4 | import { immutableAssign } from '@app/shared/misc/utils' |
4 | import { NotificationsService } from 'angular2-notifications' | 5 | import { NotificationsService } from 'angular2-notifications' |
5 | import { AuthService } from '../../core/auth' | 6 | import { AuthService } from '../../core/auth' |
@@ -21,6 +22,7 @@ export class VideoTrendingComponent extends AbstractVideoList implements OnInit, | |||
21 | protected route: ActivatedRoute, | 22 | protected route: ActivatedRoute, |
22 | protected notificationsService: NotificationsService, | 23 | protected notificationsService: NotificationsService, |
23 | protected authService: AuthService, | 24 | protected authService: AuthService, |
25 | protected location: Location, | ||
24 | private videoService: VideoService) { | 26 | private videoService: VideoService) { |
25 | super() | 27 | super() |
26 | } | 28 | } |