aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-22 09:42:05 +0200
committerChocobozzz <me@florianbigard.com>2018-05-22 09:42:05 +0200
commitf954b5da2a9a5960d7c9563522f1ac0b2c10f96c (patch)
tree288d07e44319b6bdee6c23d05956aa152ec68580 /client/src
parente7eb5b399725afe7bae2dac27235a6e9478a2f12 (diff)
downloadPeerTube-f954b5da2a9a5960d7c9563522f1ac0b2c10f96c.tar.gz
PeerTube-f954b5da2a9a5960d7c9563522f1ac0b2c10f96c.tar.zst
PeerTube-f954b5da2a9a5960d7c9563522f1ac0b2c10f96c.zip
Fix change detection in app component
Diffstat (limited to 'client/src')
-rw-r--r--client/src/app/app.component.html2
-rw-r--r--client/src/app/app.component.ts7
-rw-r--r--client/src/app/core/auth/auth.service.ts2
-rw-r--r--client/src/app/shared/misc/utils.ts2
-rw-r--r--client/src/environments/environment.hmr.ts2
5 files changed, 4 insertions, 11 deletions
diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html
index a7128d4fa..e50546633 100644
--- a/client/src/app/app.component.html
+++ b/client/src/app/app.component.html
@@ -22,7 +22,7 @@
22 <my-menu></my-menu> 22 <my-menu></my-menu>
23 </div> 23 </div>
24 24
25 <div class="main-col container-fluid" [ngClass]="getMainColClasses()"> 25 <div class="main-col container-fluid" [ngClass]="{ expanded: isMenuDisplayed === false }">
26 26
27 <div class="main-row"> 27 <div class="main-row">
28 <router-outlet></router-outlet> 28 <router-outlet></router-outlet>
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts
index 18115ae75..d5ba24e23 100644
--- a/client/src/app/app.component.ts
+++ b/client/src/app/app.component.ts
@@ -112,11 +112,4 @@ export class AppComponent implements OnInit {
112 window.scrollTo(0, 0) 112 window.scrollTo(0, 0)
113 this.isMenuDisplayed = !this.isMenuDisplayed 113 this.isMenuDisplayed = !this.isMenuDisplayed
114 } 114 }
115
116 getMainColClasses () {
117 // Take all width is the menu is not displayed
118 if (this.isMenuDisplayed === false) return [ 'expanded' ]
119
120 return []
121 }
122} 115}
diff --git a/client/src/app/core/auth/auth.service.ts b/client/src/app/core/auth/auth.service.ts
index 4213da20c..c3879d570 100644
--- a/client/src/app/core/auth/auth.service.ts
+++ b/client/src/app/core/auth/auth.service.ts
@@ -122,7 +122,7 @@ export class AuthService {
122 scope: 'upload', 122 scope: 'upload',
123 username, 123 username,
124 password 124 password
125 } 125 }
126 126
127 const headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded') 127 const headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
128 return this.http.post<UserLogin>(AuthService.BASE_TOKEN_URL, objectToUrlEncoded(body), { headers }) 128 return this.http.post<UserLogin>(AuthService.BASE_TOKEN_URL, objectToUrlEncoded(body), { headers })
diff --git a/client/src/app/shared/misc/utils.ts b/client/src/app/shared/misc/utils.ts
index 79c93c1b3..727e33935 100644
--- a/client/src/app/shared/misc/utils.ts
+++ b/client/src/app/shared/misc/utils.ts
@@ -98,7 +98,7 @@ function lineFeedToHtml (obj: object, keyToNormalize: string) {
98 98
99// Try to cache a little bit window.innerWidth 99// Try to cache a little bit window.innerWidth
100let windowInnerWidth = window.innerWidth 100let windowInnerWidth = window.innerWidth
101setInterval(() => windowInnerWidth = window.innerWidth, 500) 101// setInterval(() => windowInnerWidth = window.innerWidth, 500)
102 102
103function isInSmallView () { 103function isInSmallView () {
104 return windowInnerWidth < 600 104 return windowInnerWidth < 600
diff --git a/client/src/environments/environment.hmr.ts b/client/src/environments/environment.hmr.ts
index 78cc8a992..20e2b8fcd 100644
--- a/client/src/environments/environment.hmr.ts
+++ b/client/src/environments/environment.hmr.ts
@@ -1,5 +1,5 @@
1export const environment = { 1export const environment = {
2 production: false, 2 production: false,
3 hmr: true, 3 hmr: true,
4 apiUrl: 'http://192.168.1.42:9000' 4 apiUrl: 'http://localhost:9000'
5} 5}