2018-10-03 04:43:58 +10:00
|
|
|
import { rgb2hex } from '../../services/color_convert/color_convert.js'
|
|
|
|
import ColorInput from '../color_input/color_input.vue'
|
|
|
|
import OpacityInput from '../opacity_input/opacity_input.vue'
|
|
|
|
import StyleSetter from '../../services/style_setter/style_setter.js'
|
2017-11-21 07:45:09 +11:00
|
|
|
|
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,
|
2018-07-04 22:25:40 +10:00
|
|
|
invalidThemeImported: false,
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
textColorLocal: '',
|
2018-04-02 05:07:25 +10:00
|
|
|
linkColorLocal: '',
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-10-04 04:21:48 +10:00
|
|
|
bgColorLocal: '',
|
|
|
|
bgOpacityLocal: undefined,
|
|
|
|
|
|
|
|
btnColorLocal: '',
|
|
|
|
btnTextColorLocal: undefined,
|
|
|
|
btnOpacityLocal: undefined,
|
|
|
|
|
|
|
|
inputColorLocal: undefined,
|
|
|
|
inputTextColorLocal: undefined,
|
|
|
|
inputOpacityLocal: undefined,
|
|
|
|
|
2018-10-03 04:43:58 +10:00
|
|
|
panelColorLocal: undefined,
|
2018-10-04 04:21:48 +10:00
|
|
|
panelTextColorLocal: undefined,
|
2018-10-03 04:43:58 +10:00
|
|
|
panelOpacityLocal: undefined,
|
2018-10-04 04:21:48 +10:00
|
|
|
|
2018-10-03 04:43:58 +10:00
|
|
|
topBarColorLocal: undefined,
|
2018-10-04 04:21:48 +10:00
|
|
|
topBarTextColorLocal: undefined,
|
2018-10-03 04:43:58 +10:00
|
|
|
topBarOpacityLocal: undefined,
|
|
|
|
|
2018-04-08 09:39:39 +10:00
|
|
|
redColorLocal: '',
|
|
|
|
blueColorLocal: '',
|
|
|
|
greenColorLocal: '',
|
|
|
|
orangeColorLocal: '',
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-04-08 09:39:39 +10:00
|
|
|
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-10-03 04:43:58 +10:00
|
|
|
this.normalizeLocalState(this.$store.state.config.customTheme)
|
|
|
|
},
|
|
|
|
computed: {
|
2018-10-04 04:21:48 +10:00
|
|
|
selectedVersion () {
|
|
|
|
return Array.isArray(this.selected) ? 1 : 2
|
|
|
|
},
|
2018-10-03 04:43:58 +10:00
|
|
|
currentTheme () {
|
|
|
|
return {
|
|
|
|
colors: {
|
|
|
|
bg: this.bgColorLocal,
|
|
|
|
fg: this.textColorLocal,
|
|
|
|
panel: this.panelColorLocal,
|
|
|
|
topBar: this.topBarColorLocal,
|
|
|
|
btn: this.btnColorLocal,
|
|
|
|
link: this.linkColorLocal,
|
|
|
|
cRed: this.redColorLocal,
|
|
|
|
cBlue: this.blueColorLocal,
|
|
|
|
cGreen: this.greenColorLocal,
|
|
|
|
cOrange: this.orangeColorLocal
|
|
|
|
},
|
|
|
|
radii: {
|
|
|
|
btnRadius: this.btnRadiusLocal,
|
|
|
|
inputRadius: this.inputRadiusLocal,
|
|
|
|
panelRadius: this.panelRadiusLocal,
|
|
|
|
avatarRadius: this.avatarRadiusLocal,
|
|
|
|
avatarAltRadius: this.avatarAltRadiusLocal,
|
|
|
|
tooltipRadius: this.tooltipRadiusLocal,
|
|
|
|
attachmentRadius: this.attachmentRadiusLocal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
previewRules () {
|
|
|
|
try {
|
2018-10-04 04:21:48 +10:00
|
|
|
if (!this.currentTheme.colors.bg) {
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
const generated = StyleSetter.generatePreset(this.currentTheme)
|
|
|
|
return [generated.colorRules, generated.radiiRules, 'color: var(--text)'].join(';')
|
2018-10-03 04:43:58 +10:00
|
|
|
} catch (e) {
|
|
|
|
console.error('CATCH')
|
|
|
|
console.error(e)
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
ColorInput,
|
|
|
|
OpacityInput
|
2017-11-18 02:24:42 +11:00
|
|
|
},
|
|
|
|
methods: {
|
2018-06-28 09:08:06 +10:00
|
|
|
exportCurrentTheme () {
|
|
|
|
const stringified = JSON.stringify({
|
2018-07-04 22:25:40 +10:00
|
|
|
// To separate from other random JSON files and possible future theme formats
|
2018-10-04 04:21:48 +10:00
|
|
|
_pleroma_theme_version: 2,
|
|
|
|
theme: this.currentTheme
|
2018-06-28 09:08:06 +10:00
|
|
|
}, 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)
|
|
|
|
},
|
|
|
|
|
2018-06-28 10:59:57 +10:00
|
|
|
importTheme () {
|
2018-07-04 22:25:40 +10:00
|
|
|
this.invalidThemeImported = false
|
2018-06-28 10:59:57 +10:00
|
|
|
const filePicker = document.createElement('input')
|
|
|
|
filePicker.setAttribute('type', 'file')
|
|
|
|
filePicker.setAttribute('accept', '.json')
|
|
|
|
|
|
|
|
filePicker.addEventListener('change', event => {
|
|
|
|
if (event.target.files[0]) {
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
const reader = new FileReader()
|
|
|
|
reader.onload = ({target}) => {
|
2018-07-04 22:25:40 +10:00
|
|
|
try {
|
|
|
|
const parsed = JSON.parse(target.result)
|
|
|
|
if (parsed._pleroma_theme_version === 1) {
|
2018-10-04 04:21:48 +10:00
|
|
|
this.normalizeLocalState(parsed, 1)
|
|
|
|
} else if (parsed._pleroma_theme_version === 2) {
|
|
|
|
this.normalizeLocalState(parsed.theme)
|
2018-07-04 22:25:40 +10:00
|
|
|
} else {
|
|
|
|
// A theme from the future, spooky
|
|
|
|
this.invalidThemeImported = true
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
// This will happen both if there is a JSON syntax error or the theme is missing components
|
|
|
|
this.invalidThemeImported = true
|
|
|
|
}
|
2018-06-28 10:59:57 +10:00
|
|
|
}
|
|
|
|
reader.readAsText(event.target.files[0])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
document.body.appendChild(filePicker)
|
|
|
|
filePicker.click()
|
|
|
|
document.body.removeChild(filePicker)
|
|
|
|
},
|
|
|
|
|
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
|
|
|
|
}
|
2018-10-03 04:43:58 +10:00
|
|
|
|
|
|
|
this.$store.dispatch('setOption', {
|
|
|
|
name: 'customTheme',
|
|
|
|
value: this.currentTheme
|
|
|
|
})
|
2018-06-28 10:07:50 +10:00
|
|
|
},
|
|
|
|
|
2018-10-04 04:21:48 +10:00
|
|
|
clearV1 () {
|
|
|
|
this.panelColorLocal = undefined
|
|
|
|
this.topBarColorLocal = undefined
|
|
|
|
this.btnTextColorLocal = undefined
|
|
|
|
this.btnOpacityLocal = undefined
|
|
|
|
|
|
|
|
this.inputColorLocal = undefined
|
|
|
|
this.inputTextColorLocal = undefined
|
|
|
|
this.inputOpacityLocal = undefined
|
|
|
|
|
|
|
|
this.panelColorLocal = undefined
|
|
|
|
this.panelTextColorLocal = undefined
|
|
|
|
this.panelOpacityLocal = undefined
|
|
|
|
|
|
|
|
this.topBarColorLocal = undefined
|
|
|
|
this.topBarTextColorLocal = undefined
|
|
|
|
this.topBarOpacityLocal = undefined
|
|
|
|
},
|
|
|
|
|
|
|
|
normalizeLocalState (input, version = 2) {
|
2018-10-03 04:43:58 +10:00
|
|
|
const colors = input.colors || input
|
|
|
|
const radii = input.radii || input
|
|
|
|
|
|
|
|
this.bgColorLocal = rgb2hex(colors.bg)
|
|
|
|
this.btnColorLocal = rgb2hex(colors.btn)
|
|
|
|
this.textColorLocal = rgb2hex(colors.text || colors.fg)
|
|
|
|
this.linkColorLocal = rgb2hex(colors.link)
|
|
|
|
|
2018-10-04 04:21:48 +10:00
|
|
|
if (version === 1) {
|
|
|
|
this.clearV1()
|
|
|
|
}
|
|
|
|
|
|
|
|
this.panelColorLocal = rgb2hex(colors.panel)
|
|
|
|
this.topBarColorLocal = rgb2hex(colors.topBar)
|
2018-06-28 10:07:50 +10:00
|
|
|
|
2018-10-03 04:43:58 +10:00
|
|
|
this.redColorLocal = rgb2hex(colors.cRed)
|
|
|
|
this.blueColorLocal = rgb2hex(colors.cBlue)
|
|
|
|
this.greenColorLocal = rgb2hex(colors.cGreen)
|
|
|
|
this.orangeColorLocal = rgb2hex(colors.cOrange)
|
2018-06-28 10:07:50 +10:00
|
|
|
|
|
|
|
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 () {
|
2018-10-04 04:21:48 +10:00
|
|
|
if (this.selectedVersion === 1) {
|
|
|
|
this.clearV1();
|
|
|
|
this.bgColorLocal = this.selected[1]
|
|
|
|
this.btnColorLocal = this.selected[2]
|
|
|
|
this.textColorLocal = this.selected[3]
|
|
|
|
this.linkColorLocal = this.selected[4]
|
|
|
|
this.redColorLocal = this.selected[5]
|
|
|
|
this.greenColorLocal = this.selected[6]
|
|
|
|
this.blueColorLocal = this.selected[7]
|
|
|
|
this.orangeColorLocal = this.selected[8]
|
|
|
|
}
|
2017-01-17 04:57:03 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|