X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Ftheme%2Ftheme.service.ts;h=9be8e7a2d2a6dd04d165f8757a0f031a415d36d2;hb=94dfca3e35d10368fe424a48b0f78d9e0d04e724;hp=17d33b4e50aea9ed31302629575d2e64a9e11950;hpb=e3f7f600e87a19079abd79e9d04d9a150484557c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/theme/theme.service.ts b/client/src/app/core/theme/theme.service.ts index 17d33b4e5..9be8e7a2d 100644 --- a/client/src/app/core/theme/theme.service.ts +++ b/client/src/app/core/theme/theme.service.ts @@ -1,42 +1,179 @@ import { Injectable } from '@angular/core' -import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage' +import { AuthService } from '@app/core/auth' +import { ServerService } from '@app/core/server' +import { environment } from '../../../environments/environment' +import { PluginService } from '@app/core/plugins/plugin.service' +import { ServerConfigTheme } from '@shared/models' +import { peertubeLocalStorage } from '@app/shared/misc/peertube-web-storage' @Injectable() export class ThemeService { - private theme = document.querySelector('body') - private darkTheme = false - 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' + private static KEYS = { + LAST_ACTIVE_THEME: 'last_active_theme' + } + + private oldThemeName: string + private themes: ServerConfigTheme[] = [] + + private themeFromLocalStorage: ServerConfigTheme + private themeDOMLinksFromLocalStorage: HTMLLinkElement[] = [] + + constructor ( + private auth: AuthService, + private pluginService: PluginService, + private server: ServerService + ) {} + + initialize () { + // Try to load from local storage first, so we don't have to wait network requests + this.loadAndSetFromLocalStorage() + + this.server.configLoaded + .subscribe(() => { + const themes = this.server.getConfig().theme.registered + + this.removeThemeFromLocalStorageIfNeeded(themes) + this.injectThemes(themes) + + this.listenUserTheme() + }) + } + + private injectThemes (themes: ServerConfigTheme[], fromLocalStorage = false) { + this.themes = themes + + console.log('Injecting %d themes.', this.themes.length) + + const head = this.getHeadElement() + + for (const theme of this.themes) { + // Already added this theme? + if (fromLocalStorage === false && this.themeFromLocalStorage && this.themeFromLocalStorage.name === theme.name) continue + + for (const css of theme.css) { + const link = document.createElement('link') + + const href = environment.apiUrl + `/themes/${theme.name}/${theme.version}/css/${css}` + link.setAttribute('href', href) + link.setAttribute('rel', 'alternate stylesheet') + link.setAttribute('type', 'text/css') + link.setAttribute('title', theme.name) + link.setAttribute('disabled', '') + + if (fromLocalStorage === true) this.themeDOMLinksFromLocalStorage.push(link) + + head.appendChild(link) + } + } + } + + private getCurrentTheme () { + if (this.themeFromLocalStorage) return this.themeFromLocalStorage.name + + if (this.auth.isLoggedIn()) { + const theme = this.auth.getUser().theme + if (theme !== 'instance-default') return theme + } + + return this.server.getConfig().theme.default + } + + private loadTheme (name: string) { + const links = document.getElementsByTagName('link') + for (let i = 0; i < links.length; i++) { + const link = links[ i ] + if (link.getAttribute('rel').indexOf('style') !== -1 && link.getAttribute('title')) { + link.disabled = link.getAttribute('title') !== name + } + } + } + + private updateCurrentTheme () { + if (this.oldThemeName) this.removeThemePlugins(this.oldThemeName) + + const currentTheme = this.getCurrentTheme() + + console.log('Enabling %s theme.', currentTheme) + + this.loadTheme(currentTheme) + + const theme = this.getTheme(currentTheme) + if (theme) { + console.log('Adding scripts of theme %s.', currentTheme) + this.pluginService.addPlugin(theme, true) + + this.pluginService.reloadLoadedScopes() + + peertubeLocalStorage.setItem(ThemeService.KEYS.LAST_ACTIVE_THEME, JSON.stringify(theme)) + } else { + peertubeLocalStorage.removeItem(ThemeService.KEYS.LAST_ACTIVE_THEME) + } + + this.oldThemeName = currentTheme + } + + private listenUserTheme () { + // We don't need them anymore + this.themeFromLocalStorage = undefined + this.themeDOMLinksFromLocalStorage = [] + + if (!this.auth.isLoggedIn()) { + this.updateCurrentTheme() + } - this.darkTheme = (peertubeLocalStorage.getItem('theme') === 'dark') - console.log(this.darkTheme) - if (this.darkTheme) this.toggleDarkTheme(false) + this.auth.userInformationLoaded + .subscribe(() => this.updateCurrentTheme()) } - toggleDarkTheme (setLocalStorage = true) { - // switch properties - this.switchProperty('mainBackgroundColor') - this.switchProperty('mainForegroundColor') - this.switchProperty('submenuColor') - this.switchProperty('inputColor') - this.switchProperty('inputPlaceholderColor') + private loadAndSetFromLocalStorage () { + const lastActiveThemeString = peertubeLocalStorage.getItem(ThemeService.KEYS.LAST_ACTIVE_THEME) + if (!lastActiveThemeString) return + + try { + const lastActiveTheme = JSON.parse(lastActiveThemeString) + this.themeFromLocalStorage = lastActiveTheme - if (setLocalStorage) { - this.darkTheme = !this.darkTheme - peertubeLocalStorage.setItem('theme', (this.darkTheme) ? 'dark' : 'default') + this.injectThemes([ lastActiveTheme ], true) + this.updateCurrentTheme() + } catch (err) { + console.error('Cannot parse last active theme.', err) + return } } - 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 + private removeThemePlugins (themeName: string) { + const oldTheme = this.getTheme(themeName) + if (oldTheme) { + console.log('Removing scripts of old theme %s.', themeName) + this.pluginService.removePlugin(oldTheme) + } + } + + private removeThemeFromLocalStorageIfNeeded (themes: ServerConfigTheme[]) { + if (!this.themeFromLocalStorage) return + + const loadedTheme = themes.find(t => t.name === this.themeFromLocalStorage.name) + if (!loadedTheme || loadedTheme.version !== this.themeFromLocalStorage.version) { + // Need to remove this theme: we loaded an old version or a theme that does not exist anymore + this.removeThemePlugins(this.themeFromLocalStorage.name) + this.oldThemeName = undefined + + const head = this.getHeadElement() + for (const htmlLinkElement of this.themeDOMLinksFromLocalStorage) { + head.removeChild(htmlLinkElement) + } + + this.themeFromLocalStorage = undefined + this.themeDOMLinksFromLocalStorage = [] + } + } + + private getHeadElement () { + return document.getElementsByTagName('head')[0] + } + + private getTheme (name: string) { + return this.themes.find(t => t.name === name) } }