Make defaulting to pleroma-dark work when config.json has an invalid theme. Remove logging.

このコミットが含まれているのは:
shpuld 2017-11-18 13:27:37 +02:00
コミット 3534a9a62f
2個のファイルの変更1行の追加5行の削除

ファイルの表示

@ -15,7 +15,6 @@ export default {
window.fetch('/static/styles.json')
.then((data) => data.json())
.then((themes) => {
console.log(themes)
self.availableStyles = themes
})
},
@ -29,8 +28,6 @@ export default {
}
this.bgColorLocal = rgbstr2hex(this.$store.state.config.colors['base00'])
this.fgColorLocal = rgbstr2hex(this.$store.state.config.colors['base02'])
console.log(this.$store.state.config.colors['base02'])
console.log(this.fgColorLocal)
this.textColorLocal = rgbstr2hex(this.$store.state.config.colors['base05'])
this.linkColorLocal = rgbstr2hex(this.$store.state.config.colors['base08'])
},
@ -52,7 +49,6 @@ export default {
const textRgb = rgb(this.textColorLocal)
const linkRgb = rgb(this.linkColorLocal)
if (bgRgb && fgRgb && linkRgb) {
console.log('all colors ok')
this.$store.dispatch('setOption', {
name: 'customTheme',
value: {

ファイルの表示

@ -121,7 +121,7 @@ const setPreset = (val, commit) => {
window.fetch('/static/styles.json')
.then((data) => data.json())
.then((themes) => {
const theme = themes[val] ? themes[val] : themes[0]
const theme = themes[val] ? themes[val] : themes['pleroma-dark']
const bgRgb = hex2rgb(theme[1])
const fgRgb = hex2rgb(theme[2])
const textRgb = hex2rgb(theme[3])