2017-11-21 07:45:09 +11:00
|
|
|
import { rgbstr2hex } from '../../services/color_convert/color_convert.js'
|
|
|
|
|
2017-01-17 04:57:03 +11:00
|
|
|
export default {
|
2017-02-18 04:21:02 +11:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
availableStyles: [],
|
2017-11-18 02:24:42 +11:00
|
|
|
selected: this.$store.state.config.theme,
|
|
|
|
bgColorLocal: '',
|
2018-04-08 04:58:29 +10:00
|
|
|
btnColorLocal: '',
|
2017-11-18 02:24:42 +11:00
|
|
|
textColorLocal: '',
|
2018-04-02 05:07:25 +10:00
|
|
|
linkColorLocal: '',
|
|
|
|
redColorLocal: '#ff0000',
|
|
|
|
blueColorLocal: '#0095ff',
|
|
|
|
greenColorLocal: '#0fa00f',
|
|
|
|
orangeColorLocal: '#E3FF00'
|
2017-02-18 04:21:02 +11:00
|
|
|
}
|
|
|
|
},
|
2017-01-17 04:57:03 +11:00
|
|
|
created () {
|
|
|
|
const self = this
|
2017-11-18 02:24:42 +11:00
|
|
|
|
|
|
|
window.fetch('/static/styles.json')
|
2017-01-17 04:57:03 +11:00
|
|
|
.then((data) => data.json())
|
2017-11-18 02:24:42 +11:00
|
|
|
.then((themes) => {
|
|
|
|
self.availableStyles = themes
|
|
|
|
})
|
|
|
|
},
|
2017-11-18 22:13:51 +11:00
|
|
|
mounted () {
|
2018-04-01 04:14:36 +10:00
|
|
|
this.bgColorLocal = rgbstr2hex(this.$store.state.config.colors.bg)
|
2018-04-08 04:58:29 +10:00
|
|
|
this.btnColorLocal = rgbstr2hex(this.$store.state.config.colors.lightBg)
|
2018-04-01 04:14:36 +10:00
|
|
|
this.textColorLocal = rgbstr2hex(this.$store.state.config.colors.fg)
|
|
|
|
this.linkColorLocal = rgbstr2hex(this.$store.state.config.colors.link)
|
2018-04-02 05:07:25 +10:00
|
|
|
|
|
|
|
this.redColorLocal = rgbstr2hex(this.$store.state.config.colors.cRed || this.redColorLocal)
|
|
|
|
this.blueColorLocal = rgbstr2hex(this.$store.state.config.colors.cBlue || this.blueColorLocal)
|
|
|
|
this.greenColorLocal = rgbstr2hex(this.$store.state.config.colors.cGreen || this.greenColorLocal)
|
|
|
|
this.orangeColorLocal = rgbstr2hex(this.$store.state.config.colors.cOrange || this.orangeColorLocal)
|
2017-11-18 02:24:42 +11:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
setCustomTheme () {
|
2018-04-08 04:58:29 +10:00
|
|
|
if (!this.bgColorLocal && !this.btnColorLocal && !this.linkColorLocal) {
|
2017-11-18 02:24:42 +11:00
|
|
|
// reset to picked themes
|
|
|
|
}
|
|
|
|
const rgb = (hex) => {
|
2017-11-18 22:13:51 +11:00
|
|
|
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex)
|
2017-11-18 02:24:42 +11:00
|
|
|
return result ? {
|
2017-11-18 22:13:51 +11:00
|
|
|
r: parseInt(result[1], 16),
|
|
|
|
g: parseInt(result[2], 16),
|
|
|
|
b: parseInt(result[3], 16)
|
2017-11-18 02:24:42 +11:00
|
|
|
} : null
|
|
|
|
}
|
|
|
|
const bgRgb = rgb(this.bgColorLocal)
|
2018-04-08 04:58:29 +10:00
|
|
|
const btnRgb = rgb(this.btnColorLocal)
|
2017-11-18 02:24:42 +11:00
|
|
|
const textRgb = rgb(this.textColorLocal)
|
|
|
|
const linkRgb = rgb(this.linkColorLocal)
|
2018-04-02 05:07:25 +10:00
|
|
|
|
|
|
|
const redRgb = rgb(this.redColorLocal)
|
|
|
|
const blueRgb = rgb(this.blueColorLocal)
|
|
|
|
const greenRgb = rgb(this.greenColorLocal)
|
|
|
|
const orangeRgb = rgb(this.orangeColorLocal)
|
|
|
|
|
2018-04-08 04:58:29 +10:00
|
|
|
if (bgRgb && btnRgb && linkRgb) {
|
2017-11-18 22:13:51 +11:00
|
|
|
this.$store.dispatch('setOption', {
|
|
|
|
name: 'customTheme',
|
|
|
|
value: {
|
2018-04-08 04:58:29 +10:00
|
|
|
fg: btnRgb,
|
2017-11-18 22:13:51 +11:00
|
|
|
bg: bgRgb,
|
|
|
|
text: textRgb,
|
2018-04-02 05:07:25 +10:00
|
|
|
link: linkRgb,
|
|
|
|
cRed: redRgb,
|
|
|
|
cBlue: blueRgb,
|
|
|
|
cGreen: greenRgb,
|
|
|
|
cOrange: orangeRgb
|
2017-11-18 22:13:51 +11:00
|
|
|
}})
|
2017-11-18 02:24:42 +11:00
|
|
|
}
|
|
|
|
}
|
2017-01-17 04:57:03 +11:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
selected () {
|
2017-11-18 02:24:42 +11:00
|
|
|
this.bgColorLocal = this.selected[1]
|
2018-04-08 04:58:29 +10:00
|
|
|
this.btnColorLocal = this.selected[2]
|
2017-11-18 02:24:42 +11:00
|
|
|
this.textColorLocal = this.selected[3]
|
|
|
|
this.linkColorLocal = this.selected[4]
|
2018-04-02 05:07:25 +10:00
|
|
|
this.redColorLocal = this.selected[5]
|
2018-04-08 04:58:29 +10:00
|
|
|
this.greenColorLocal = this.selected[6]
|
|
|
|
this.blueColorLocal = this.selected[7]
|
2018-04-02 05:07:25 +10:00
|
|
|
this.orangeColorLocal = this.selected[8]
|
2017-01-17 04:57:03 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|