From 4e2b966b80269bbfd2bc5a7281886d2d06a3879f Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 22 Mar 2019 19:07:13 +0900 Subject: [PATCH] Fix #4559 Close #4564 --- src/client/app/theme.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/client/app/theme.ts b/src/client/app/theme.ts index 0f05f9e64..18ff82b9e 100644 --- a/src/client/app/theme.ts +++ b/src/client/app/theme.ts @@ -42,41 +42,41 @@ export const builtinThemes = [ tweetDeckTheme, ]; -export function applyTheme(themes: Theme, persisted = true) { - document.documentElement.classList.add('changing-themes'); +export function applyTheme(theme: Theme, persisted = true) { + document.documentElement.classList.add('changing-theme'); setTimeout(() => { - document.documentElement.classList.remove('changing-themes'); + document.documentElement.classList.remove('changing-theme'); }, 1000); // Deep copy - const _themes = JSON.parse(JSON.stringify(themes)); + const _theme = JSON.parse(JSON.stringify(theme)); - if (_themes.base) { - const base = [lightTheme, darkTheme].find(x => x.id == _themes.base); - _themes.vars = Object.assign({}, base.vars, _themes.vars); - _themes.props = Object.assign({}, base.props, _themes.props); + if (_theme.base) { + const base = [lightTheme, darkTheme].find(x => x.id == _theme.base); + _theme.vars = Object.assign({}, base.vars, _theme.vars); + _theme.props = Object.assign({}, base.props, _theme.props); } - const props = compile(_themes); + const props = compile(_theme); for (const [k, v] of Object.entries(props)) { document.documentElement.style.setProperty(`--${k}`, v.toString()); } if (persisted) { - localStorage.setItem('themes', JSON.stringify(props)); + localStorage.setItem('theme', JSON.stringify(props)); } } -function compile(themes: Theme): { [key: string]: string } { +function compile(theme: Theme): { [key: string]: string } { function getColor(code: string): tinycolor.Instance { // ref if (code[0] == '@') { - return getColor(themes.props[code.substr(1)]); + return getColor(theme.props[code.substr(1)]); } if (code[0] == '$') { - return getColor(themes.vars[code.substr(1)]); + return getColor(theme.vars[code.substr(1)]); } // func @@ -98,7 +98,7 @@ function compile(themes: Theme): { [key: string]: string } { const props = {}; - for (const [k, v] of Object.entries(themes.props)) { + for (const [k, v] of Object.entries(theme.props)) { props[k] = genValue(getColor(v)); }