Fix change detection in app component

pull/592/head
Chocobozzz 2018-05-22 09:42:05 +02:00
parent e7eb5b3997
commit f954b5da2a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
5 changed files with 4 additions and 11 deletions

View File

@ -22,7 +22,7 @@
<my-menu></my-menu>
</div>
<div class="main-col container-fluid" [ngClass]="getMainColClasses()">
<div class="main-col container-fluid" [ngClass]="{ expanded: isMenuDisplayed === false }">
<div class="main-row">
<router-outlet></router-outlet>

View File

@ -112,11 +112,4 @@ export class AppComponent implements OnInit {
window.scrollTo(0, 0)
this.isMenuDisplayed = !this.isMenuDisplayed
}
getMainColClasses () {
// Take all width is the menu is not displayed
if (this.isMenuDisplayed === false) return [ 'expanded' ]
return []
}
}

View File

@ -122,7 +122,7 @@ export class AuthService {
scope: 'upload',
username,
password
}
}
const headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
return this.http.post<UserLogin>(AuthService.BASE_TOKEN_URL, objectToUrlEncoded(body), { headers })

View File

@ -98,7 +98,7 @@ function lineFeedToHtml (obj: object, keyToNormalize: string) {
// Try to cache a little bit window.innerWidth
let windowInnerWidth = window.innerWidth
setInterval(() => windowInnerWidth = window.innerWidth, 500)
// setInterval(() => windowInnerWidth = window.innerWidth, 500)
function isInSmallView () {
return windowInnerWidth < 600

View File

@ -1,5 +1,5 @@
export const environment = {
production: false,
hmr: true,
apiUrl: 'http://192.168.1.42:9000'
apiUrl: 'http://localhost:9000'
}