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: '',
|
2018-04-08 09:39:39 +10:00
|
|
|
redColorLocal: '',
|
|
|
|
blueColorLocal: '',
|
|
|
|
greenColorLocal: '',
|
|
|
|
orangeColorLocal: '',
|
|
|
|
btnRadiusLocal: '',
|
2018-04-15 14:25:59 +10:00
|
|
|
inputRadiusLocal: '',
|
2018-04-08 09:39:39 +10:00
|
|
|
panelRadiusLocal: '',
|
|
|
|
avatarRadiusLocal: '',
|
|
|
|
avatarAltRadiusLocal: '',
|
|
|
|
attachmentRadiusLocal: '',
|
|
|
|
tooltipRadiusLocal: ''
|
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-06-28 10:07:50 +10:00
|
|
|
this.normalizeLocalState(this.$store.state.config.colors, this.$store.state.config.radii)
|
2017-11-18 02:24:42 +11:00
|
|
|
},
|
|
|
|
methods: {
|
2018-06-28 09:08:06 +10:00
|
|
|
exportCurrentTheme () {
|
|
|
|
const stringified = JSON.stringify({
|
|
|
|
colors: this.$store.state.config.colors,
|
|
|
|
radii: this.$store.state.config.radii
|
|
|
|
}, null, 2) // Pretty-print and indent with 2 spaces
|
|
|
|
|
|
|
|
// Create an invisible link with a data url and simulate a click
|
|
|
|
const e = document.createElement('a')
|
|
|
|
e.setAttribute('download', 'pleroma_theme.json')
|
|
|
|
e.setAttribute('href', 'data:application/json;base64,' + window.btoa(stringified))
|
|
|
|
e.style.display = 'none'
|
|
|
|
|
|
|
|
document.body.appendChild(e)
|
|
|
|
e.click()
|
|
|
|
document.body.removeChild(e)
|
|
|
|
},
|
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
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
|
|
|
|
}
|
2018-04-08 09:39:39 +10:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
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,
|
2018-04-08 09:39:39 +10:00
|
|
|
cOrange: orangeRgb,
|
|
|
|
btnRadius: this.btnRadiusLocal,
|
2018-04-15 14:25:59 +10:00
|
|
|
inputRadius: this.inputRadiusLocal,
|
2018-04-08 09:39:39 +10:00
|
|
|
panelRadius: this.panelRadiusLocal,
|
|
|
|
avatarRadius: this.avatarRadiusLocal,
|
|
|
|
avatarAltRadius: this.avatarAltRadiusLocal,
|
|
|
|
tooltipRadius: this.tooltipRadiusLocal,
|
|
|
|
attachmentRadius: this.attachmentRadiusLocal
|
2017-11-18 22:13:51 +11:00
|
|
|
}})
|
2017-11-18 02:24:42 +11:00
|
|
|
}
|
2018-06-28 10:07:50 +10:00
|
|
|
},
|
|
|
|
|
|
|
|
normalizeLocalState (colors, radii) {
|
|
|
|
this.bgColorLocal = rgbstr2hex(colors.bg)
|
|
|
|
this.btnColorLocal = rgbstr2hex(colors.btn)
|
|
|
|
this.textColorLocal = rgbstr2hex(colors.fg)
|
|
|
|
this.linkColorLocal = rgbstr2hex(colors.link)
|
|
|
|
|
|
|
|
this.redColorLocal = rgbstr2hex(colors.cRed)
|
|
|
|
this.blueColorLocal = rgbstr2hex(colors.cBlue)
|
|
|
|
this.greenColorLocal = rgbstr2hex(colors.cGreen)
|
|
|
|
this.orangeColorLocal = rgbstr2hex(colors.cOrange)
|
|
|
|
|
|
|
|
this.btnRadiusLocal = radii.btnRadius || 4
|
|
|
|
this.inputRadiusLocal = radii.inputRadius || 4
|
|
|
|
this.panelRadiusLocal = radii.panelRadius || 10
|
|
|
|
this.avatarRadiusLocal = radii.avatarRadius || 5
|
|
|
|
this.avatarAltRadiusLocal = radii.avatarAltRadius || 50
|
|
|
|
this.tooltipRadiusLocal = radii.tooltipRadius || 2
|
|
|
|
this.attachmentRadiusLocal = radii.attachmentRadius || 5
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|