import { Component, OnInit } from '@angular/core'
import { DomSanitizer, SafeHtml } from '@angular/platform-browser'
import { GuardsCheckStart, NavigationEnd, Router } from '@angular/router'
-import { AuthService, RedirectService, ServerService } from '@app/core'
+import { AuthService, RedirectService, ServerService, ThemeService } from '@app/core'
import { is18nPath } from '../../../shared/models/i18n'
import { ScreenService } from '@app/shared/misc/screen.service'
import { skip } from 'rxjs/operators'
private domSanitizer: DomSanitizer,
private redirectService: RedirectService,
private screenService: ScreenService,
- private hotkeysService: HotkeysService
+ private hotkeysService: HotkeysService,
+ private themeService: ThemeService
) { }
get serverVersion () {
new Hotkey('g u', (event: KeyboardEvent): boolean => {
this.router.navigate([ '/videos/upload' ])
return false
- }, undefined, 'Go to the videos upload page')
+ }, undefined, 'Go to the videos upload page'),
+ new Hotkey('T', (event: KeyboardEvent): boolean => {
+ this.themeService.toggleDarkTheme()
+ return false
+ }, undefined, 'Toggle Dark theme')
])
}
import { throwIfAlreadyLoaded } from './module-import-guard'
import { LoginGuard, RedirectService, UserRightGuard } from './routing'
import { ServerService } from './server'
+import { ThemeService } from './theme'
@NgModule({
imports: [
AuthService,
ConfirmService,
ServerService,
+ ThemeService,
LoginGuard,
UserRightGuard,
RedirectService
export * from './server'
export * from './confirm'
export * from './routing'
+export * from './theme'
export * from './core.module'
--- /dev/null
+export * from './theme.service'
--- /dev/null
+import { Injectable } from '@angular/core'
+
+@Injectable()
+export class ThemeService {
+ private theme = document.querySelector('body')
+ private previousTheme = {}
+
+ constructor () {
+ // initialise the alternative theme with dark theme colors
+ this.previousTheme['mainBackgroundColor'] = '#111111'
+ this.previousTheme['mainForegroundColor'] = '#fff'
+ this.previousTheme['submenuColor'] = 'rgb(32,32,32)'
+ this.previousTheme['inputColor'] = 'gray'
+ this.previousTheme['inputPlaceholderColor'] = '#fff'
+ }
+
+ toggleDarkTheme () {
+ // switch properties
+ this.switchProperty('mainBackgroundColor')
+ this.switchProperty('mainForegroundColor')
+ this.switchProperty('submenuColor')
+ this.switchProperty('inputColor')
+ this.switchProperty('inputPlaceholderColor')
+ }
+
+ private switchProperty (property, newValue?) {
+ const propertyOldvalue = window.getComputedStyle(this.theme).getPropertyValue('--' + property)
+ this.theme.style.setProperty('--' + property, (newValue) ? newValue : this.previousTheme[property])
+ this.previousTheme[property] = propertyOldvalue
+ }
+}
import { Component, OnInit, ViewChild } from '@angular/core'
import { UserRight } from '../../../../shared/models/users/user-right.enum'
-import { AuthService, AuthStatus, RedirectService, ServerService } from '../core'
+import { AuthService, AuthStatus, RedirectService, ServerService, ThemeService } from '../core'
import { User } from '../shared/users/user.model'
import { LanguageChooserComponent } from '@app/menu/language-chooser.component'
-import { Hotkey, HotkeysService } from 'angular2-hotkeys'
@Component({
selector: 'my-menu',
user: User
isLoggedIn: boolean
userHasAdminAccess = false
- hotkeys: Hotkey[]
private routesPerRight = {
[UserRight.MANAGE_USERS]: '/admin/users',
[UserRight.MANAGE_VIDEO_ABUSES]: '/admin/video-abuses',
[UserRight.MANAGE_VIDEO_BLACKLIST]: '/admin/video-blacklist'
}
- private theme = document.querySelector('body')
- private previousTheme = { }
constructor (
private authService: AuthService,
private serverService: ServerService,
private redirectService: RedirectService,
- private hotkeysService: HotkeysService
+ private themeService: ThemeService
) {}
ngOnInit () {
}
}
)
-
- // initialise the alternative theme with dark theme colors
- this.previousTheme['mainBackgroundColor'] = '#111111'
- this.previousTheme['mainForegroundColor'] = '#fff'
- this.previousTheme['submenuColor'] = 'rgb(32,32,32)'
- this.previousTheme['inputColor'] = 'gray'
- this.previousTheme['inputPlaceholderColor'] = '#fff'
-
- this.hotkeys = [
- new Hotkey('T', (event: KeyboardEvent): boolean => {
- this.toggleDarkTheme()
- return false
- }, undefined, 'Toggle Dark theme')
- ]
- this.hotkeysService.add(this.hotkeys)
}
isRegistrationAllowed () {
}
toggleDarkTheme () {
- // switch properties
- this.switchProperty('mainBackgroundColor')
- this.switchProperty('mainForegroundColor')
- this.switchProperty('submenuColor')
- this.switchProperty('inputColor')
- this.switchProperty('inputPlaceholderColor')
- }
-
- private switchProperty (property, newValue?) {
- const propertyOldvalue = window.getComputedStyle(this.theme).getPropertyValue('--' + property)
- this.theme.style.setProperty('--' + property, (newValue) ? newValue : this.previousTheme[property])
- this.previousTheme[property] = propertyOldvalue
+ this.themeService.toggleDarkTheme()
}
private computeIsUserHasAdminAccess () {