2018-11-14 16:39:17 +00:00
|
|
|
import { rgb2hex, hex2rgb, getContrastRatio, alphaBlend } from '../../services/color_convert/color_convert.js'
|
2018-10-02 18:43:58 +00:00
|
|
|
import ColorInput from '../color_input/color_input.vue'
|
2018-10-09 21:07:28 +00:00
|
|
|
import ContrastRatio from '../contrast_ratio/contrast_ratio.vue'
|
2018-10-02 18:43:58 +00:00
|
|
|
import OpacityInput from '../opacity_input/opacity_input.vue'
|
|
|
|
import StyleSetter from '../../services/style_setter/style_setter.js'
|
2018-11-14 16:39:17 +00:00
|
|
|
import TabSwitcher from '../tab_switcher/tab_switcher.jsx'
|
2017-11-20 20:45:09 +00:00
|
|
|
|
2017-01-16 17:57:03 +00:00
|
|
|
export default {
|
2017-02-17 17:21:02 +00:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
availableStyles: [],
|
2017-11-17 15:24:42 +00:00
|
|
|
selected: this.$store.state.config.theme,
|
2018-07-04 12:25:40 +00:00
|
|
|
invalidThemeImported: false,
|
2018-10-02 18:43:58 +00:00
|
|
|
|
2017-11-17 15:24:42 +00:00
|
|
|
textColorLocal: '',
|
2018-04-01 19:07:25 +00:00
|
|
|
linkColorLocal: '',
|
2018-10-02 18:43:58 +00:00
|
|
|
|
2018-10-03 18:21:48 +00:00
|
|
|
bgColorLocal: '',
|
|
|
|
bgOpacityLocal: undefined,
|
|
|
|
|
2018-10-04 15:16:14 +00:00
|
|
|
fgColorLocal: '',
|
|
|
|
fgTextColorLocal: undefined,
|
|
|
|
fgLinkColorLocal: undefined,
|
|
|
|
|
|
|
|
btnColorLocal: undefined,
|
2018-10-03 18:21:48 +00:00
|
|
|
btnTextColorLocal: undefined,
|
|
|
|
btnOpacityLocal: undefined,
|
|
|
|
|
|
|
|
inputColorLocal: undefined,
|
|
|
|
inputTextColorLocal: undefined,
|
|
|
|
inputOpacityLocal: undefined,
|
|
|
|
|
2018-10-02 18:43:58 +00:00
|
|
|
panelColorLocal: undefined,
|
2018-10-03 18:21:48 +00:00
|
|
|
panelTextColorLocal: undefined,
|
2018-10-07 16:59:22 +00:00
|
|
|
panelFaintColorLocal: undefined,
|
2018-10-02 18:43:58 +00:00
|
|
|
panelOpacityLocal: undefined,
|
2018-10-03 18:21:48 +00:00
|
|
|
|
2018-10-02 18:43:58 +00:00
|
|
|
topBarColorLocal: undefined,
|
2018-10-03 18:21:48 +00:00
|
|
|
topBarTextColorLocal: undefined,
|
2018-10-04 15:16:14 +00:00
|
|
|
topBarLinkColorLocal: undefined,
|
2018-10-02 18:43:58 +00:00
|
|
|
|
2018-11-13 13:30:01 +00:00
|
|
|
alertErrorColorLocal: undefined,
|
|
|
|
|
|
|
|
badgeOpacityLocal: undefined,
|
|
|
|
badgeNotificationColorLocal: undefined,
|
2018-10-04 15:16:14 +00:00
|
|
|
|
2018-10-07 16:59:22 +00:00
|
|
|
borderColorLocal: undefined,
|
|
|
|
borderOpacityLocal: undefined,
|
|
|
|
|
|
|
|
faintColorLocal: undefined,
|
|
|
|
faintOpacityLocal: undefined,
|
|
|
|
faintLinkColorLocal: undefined,
|
|
|
|
|
|
|
|
cRedColorLocal: '',
|
|
|
|
cBlueColorLocal: '',
|
|
|
|
cGreenColorLocal: '',
|
|
|
|
cOrangeColorLocal: '',
|
2018-10-02 18:43:58 +00:00
|
|
|
|
2018-04-07 23:39:39 +00:00
|
|
|
btnRadiusLocal: '',
|
2018-04-15 04:25:59 +00:00
|
|
|
inputRadiusLocal: '',
|
2018-04-07 23:39:39 +00:00
|
|
|
panelRadiusLocal: '',
|
|
|
|
avatarRadiusLocal: '',
|
|
|
|
avatarAltRadiusLocal: '',
|
|
|
|
attachmentRadiusLocal: '',
|
|
|
|
tooltipRadiusLocal: ''
|
2017-02-17 17:21:02 +00:00
|
|
|
}
|
|
|
|
},
|
2017-01-16 17:57:03 +00:00
|
|
|
created () {
|
|
|
|
const self = this
|
2017-11-17 15:24:42 +00:00
|
|
|
|
|
|
|
window.fetch('/static/styles.json')
|
2017-01-16 17:57:03 +00:00
|
|
|
.then((data) => data.json())
|
2017-11-17 15:24:42 +00:00
|
|
|
.then((themes) => {
|
|
|
|
self.availableStyles = themes
|
|
|
|
})
|
|
|
|
},
|
2017-11-18 11:13:51 +00:00
|
|
|
mounted () {
|
2018-10-02 18:43:58 +00:00
|
|
|
this.normalizeLocalState(this.$store.state.config.customTheme)
|
|
|
|
},
|
|
|
|
computed: {
|
2018-10-03 18:21:48 +00:00
|
|
|
selectedVersion () {
|
|
|
|
return Array.isArray(this.selected) ? 1 : 2
|
|
|
|
},
|
2018-10-02 18:43:58 +00:00
|
|
|
currentTheme () {
|
|
|
|
return {
|
|
|
|
colors: {
|
|
|
|
bg: this.bgColorLocal,
|
2018-10-04 15:16:14 +00:00
|
|
|
text: this.textColorLocal,
|
2018-10-07 16:59:22 +00:00
|
|
|
link: this.linkColorLocal,
|
|
|
|
|
|
|
|
fg: this.fgColorLocal,
|
|
|
|
fgText: this.fgTextColorLocal,
|
|
|
|
fgLink: this.fgLinkColorLocal,
|
|
|
|
|
2018-10-02 18:43:58 +00:00
|
|
|
panel: this.panelColorLocal,
|
2018-10-07 16:59:22 +00:00
|
|
|
panelText: this.panelTextColorLocal,
|
|
|
|
panelFaint: this.panelFaintColorLocal,
|
|
|
|
|
|
|
|
input: this.inputColorLocal,
|
|
|
|
inputText: this.inputTextColorLocal,
|
|
|
|
|
2018-10-02 18:43:58 +00:00
|
|
|
topBar: this.topBarColorLocal,
|
2018-10-07 16:59:22 +00:00
|
|
|
topBarText: this.topBarTextColorLocal,
|
|
|
|
topBarLink: this.topBarLinkColorLocal,
|
|
|
|
|
2018-10-02 18:43:58 +00:00
|
|
|
btn: this.btnColorLocal,
|
2018-10-07 16:59:22 +00:00
|
|
|
btnText: this.btnTextColorLocal,
|
|
|
|
|
2018-11-13 13:30:01 +00:00
|
|
|
alertError: this.alertErrorColorLocal,
|
|
|
|
badgeNotification: this.badgeNotificationColorLocal,
|
|
|
|
|
2018-10-07 16:59:22 +00:00
|
|
|
faint: this.faintColorLocal,
|
|
|
|
faintLink: this.faintLinkColorLocal,
|
|
|
|
border: this.borderColorLocal,
|
|
|
|
|
|
|
|
cRed: this.cRedColorLocal,
|
|
|
|
cBlue: this.cBlueColorLocal,
|
|
|
|
cGreen: this.cGreenColorLocal,
|
|
|
|
cOrange: this.cOrangeColorLocal
|
2018-10-02 18:43:58 +00:00
|
|
|
},
|
2018-10-07 19:03:34 +00:00
|
|
|
opacity: {
|
|
|
|
bg: this.bgOpacityLocal,
|
|
|
|
btn: this.btnOpacityLocal,
|
|
|
|
input: this.inputOpacityLocal,
|
|
|
|
panel: this.panelOpacityLocal,
|
|
|
|
topBar: this.topBarOpacityLocal,
|
|
|
|
border: this.borderOpacityLocal,
|
|
|
|
faint: this.faintOpacityLocal
|
|
|
|
},
|
2018-10-02 18:43:58 +00:00
|
|
|
radii: {
|
|
|
|
btnRadius: this.btnRadiusLocal,
|
|
|
|
inputRadius: this.inputRadiusLocal,
|
|
|
|
panelRadius: this.panelRadiusLocal,
|
|
|
|
avatarRadius: this.avatarRadiusLocal,
|
|
|
|
avatarAltRadius: this.avatarAltRadiusLocal,
|
|
|
|
tooltipRadius: this.tooltipRadiusLocal,
|
|
|
|
attachmentRadius: this.attachmentRadiusLocal
|
2018-10-21 12:25:21 +00:00
|
|
|
}
|
2018-10-02 18:43:58 +00:00
|
|
|
}
|
|
|
|
},
|
2018-10-04 15:16:14 +00:00
|
|
|
preview () {
|
2018-10-02 18:43:58 +00:00
|
|
|
try {
|
2018-10-03 18:21:48 +00:00
|
|
|
if (!this.currentTheme.colors.bg) {
|
2018-10-04 15:16:14 +00:00
|
|
|
return {}
|
2018-10-03 18:21:48 +00:00
|
|
|
}
|
2018-10-04 15:16:14 +00:00
|
|
|
return StyleSetter.generatePreset(this.currentTheme)
|
2018-10-02 18:43:58 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.error('CATCH')
|
|
|
|
console.error(e)
|
2018-10-04 15:16:14 +00:00
|
|
|
return {}
|
2018-10-02 18:43:58 +00:00
|
|
|
}
|
2018-10-04 15:16:14 +00:00
|
|
|
},
|
|
|
|
previewTheme () {
|
2018-10-10 02:39:02 +00:00
|
|
|
if (!this.preview.theme) return { colors: {}, opacity: {}, radii: {} }
|
2018-10-04 15:16:14 +00:00
|
|
|
return this.preview.theme
|
|
|
|
},
|
2018-10-09 21:07:28 +00:00
|
|
|
previewContrast () {
|
|
|
|
if (!this.previewTheme.colors) return {}
|
|
|
|
const colors = this.previewTheme.colors
|
2018-10-10 02:39:02 +00:00
|
|
|
const opacity = this.previewTheme.opacity
|
2018-11-14 16:39:17 +00:00
|
|
|
if (!colors.bg) return {}
|
2018-10-09 21:07:28 +00:00
|
|
|
const hints = (ratio) => ({
|
|
|
|
text: ratio.toPrecision(3) + ':1',
|
|
|
|
// AA level, AAA level
|
|
|
|
aa: ratio >= 4.5,
|
|
|
|
aaa: ratio >= 7,
|
|
|
|
// same but for 18pt+ texts
|
|
|
|
laa: ratio >= 3,
|
|
|
|
laaa: ratio >= 4.5
|
|
|
|
})
|
|
|
|
|
2018-10-10 02:39:02 +00:00
|
|
|
// fgsfds :DDDD
|
|
|
|
const fgs = {
|
|
|
|
text: hex2rgb(colors.text),
|
|
|
|
panelText: hex2rgb(colors.panelText),
|
|
|
|
btnText: hex2rgb(colors.btnText),
|
|
|
|
topBarText: hex2rgb(colors.topBarText),
|
2018-11-13 13:30:01 +00:00
|
|
|
inputText: hex2rgb(colors.inputText),
|
2018-10-10 02:39:02 +00:00
|
|
|
|
|
|
|
link: hex2rgb(colors.link),
|
|
|
|
topBarLink: hex2rgb(colors.topBarLink),
|
2018-10-21 12:25:21 +00:00
|
|
|
|
|
|
|
red: hex2rgb(colors.cRed),
|
|
|
|
green: hex2rgb(colors.cGreen),
|
|
|
|
blue: hex2rgb(colors.cBlue),
|
|
|
|
orange: hex2rgb(colors.cOrange)
|
2018-10-10 02:39:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const bgs = {
|
|
|
|
bg: hex2rgb(colors.bg),
|
|
|
|
btn: hex2rgb(colors.btn),
|
|
|
|
panel: hex2rgb(colors.panel),
|
2018-11-13 13:30:01 +00:00
|
|
|
topBar: hex2rgb(colors.topBar),
|
|
|
|
input: hex2rgb(colors.input),
|
|
|
|
alertError: hex2rgb(colors.alertError),
|
|
|
|
badgeNotification: hex2rgb(colors.badgeNotification)
|
2018-10-10 02:39:02 +00:00
|
|
|
}
|
|
|
|
|
2018-11-14 16:39:17 +00:00
|
|
|
/* This is a bit confusing because "bottom layer" used is text color
|
|
|
|
* This is done to get worst case scenario when background below transparent
|
|
|
|
* layer matches text color, making it harder to read the lower alpha is.
|
|
|
|
*/
|
2018-10-09 21:07:28 +00:00
|
|
|
const ratios = {
|
2018-11-14 16:39:17 +00:00
|
|
|
bgText: getContrastRatio(alphaBlend(bgs.bg, opacity.bg, fgs.text), fgs.text),
|
|
|
|
bgLink: getContrastRatio(alphaBlend(bgs.bg, opacity.bg, fgs.link), fgs.link),
|
|
|
|
bgRed: getContrastRatio(alphaBlend(bgs.bg, opacity.bg, fgs.red), fgs.red),
|
|
|
|
bgGreen: getContrastRatio(alphaBlend(bgs.bg, opacity.bg, fgs.green), fgs.green),
|
|
|
|
bgBlue: getContrastRatio(alphaBlend(bgs.bg, opacity.bg, fgs.blue), fgs.blue),
|
|
|
|
bgOrange: getContrastRatio(alphaBlend(bgs.bg, opacity.bg, fgs.orange), fgs.orange),
|
2018-10-10 02:39:02 +00:00
|
|
|
|
2018-11-14 16:39:17 +00:00
|
|
|
tintText: getContrastRatio(alphaBlend(bgs.bg, 0.5, fgs.panelText), fgs.text),
|
2018-10-09 21:07:28 +00:00
|
|
|
|
2018-11-14 16:39:17 +00:00
|
|
|
panelText: getContrastRatio(alphaBlend(bgs.panel, opacity.panel, fgs.panelText), fgs.panelText),
|
2018-10-09 21:07:28 +00:00
|
|
|
|
2018-11-14 16:39:17 +00:00
|
|
|
btnText: getContrastRatio(alphaBlend(bgs.btn, opacity.btn, fgs.btnText), fgs.btnText),
|
2018-10-09 21:07:28 +00:00
|
|
|
|
2018-11-14 16:39:17 +00:00
|
|
|
inputText: getContrastRatio(alphaBlend(bgs.input, opacity.input, fgs.inputText), fgs.inputText),
|
2018-11-13 13:30:01 +00:00
|
|
|
|
2018-11-14 16:39:17 +00:00
|
|
|
topBarText: getContrastRatio(alphaBlend(bgs.topBar, opacity.topBar, fgs.topBarText), fgs.topBarText),
|
|
|
|
topBarLink: getContrastRatio(alphaBlend(bgs.topBar, opacity.topBar, fgs.topBarLink), fgs.topBarLink)
|
2018-10-09 21:07:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Object.entries(ratios).reduce((acc, [k, v]) => { acc[k] = hints(v); return acc }, {})
|
|
|
|
},
|
2018-10-04 15:16:14 +00:00
|
|
|
previewRules () {
|
|
|
|
if (!this.preview.colorRules) return ''
|
|
|
|
return [this.preview.colorRules, this.preview.radiiRules, 'color: var(--text)'].join(';')
|
2018-10-02 18:43:58 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
ColorInput,
|
2018-10-09 21:07:28 +00:00
|
|
|
OpacityInput,
|
2018-11-14 16:39:17 +00:00
|
|
|
ContrastRatio,
|
|
|
|
TabSwitcher
|
2017-11-17 15:24:42 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-06-27 23:08:06 +00:00
|
|
|
exportCurrentTheme () {
|
|
|
|
const stringified = JSON.stringify({
|
2018-07-04 12:25:40 +00:00
|
|
|
// To separate from other random JSON files and possible future theme formats
|
2018-10-03 18:21:48 +00:00
|
|
|
_pleroma_theme_version: 2,
|
|
|
|
theme: this.currentTheme
|
2018-06-27 23:08:06 +00: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 00:59:57 +00:00
|
|
|
importTheme () {
|
2018-07-04 12:25:40 +00:00
|
|
|
this.invalidThemeImported = false
|
2018-06-28 00:59:57 +00: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 12:25:40 +00:00
|
|
|
try {
|
|
|
|
const parsed = JSON.parse(target.result)
|
|
|
|
if (parsed._pleroma_theme_version === 1) {
|
2018-10-03 18:21:48 +00:00
|
|
|
this.normalizeLocalState(parsed, 1)
|
|
|
|
} else if (parsed._pleroma_theme_version === 2) {
|
2018-10-04 15:16:14 +00:00
|
|
|
this.normalizeLocalState(parsed.theme, 2)
|
2018-07-04 12:25:40 +00: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 00:59:57 +00:00
|
|
|
}
|
|
|
|
reader.readAsText(event.target.files[0])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
document.body.appendChild(filePicker)
|
|
|
|
filePicker.click()
|
|
|
|
document.body.removeChild(filePicker)
|
|
|
|
},
|
|
|
|
|
2017-11-17 15:24:42 +00:00
|
|
|
setCustomTheme () {
|
2018-10-02 18:43:58 +00:00
|
|
|
this.$store.dispatch('setOption', {
|
|
|
|
name: 'customTheme',
|
|
|
|
value: this.currentTheme
|
|
|
|
})
|
2018-06-28 00:07:50 +00:00
|
|
|
},
|
|
|
|
|
2018-10-03 18:21:48 +00:00
|
|
|
clearV1 () {
|
2018-10-07 16:59:22 +00:00
|
|
|
this.bgOpacityLocal = undefined
|
2018-10-04 15:16:14 +00:00
|
|
|
this.fgOpacityLocal = undefined
|
2018-11-15 14:17:20 +00:00
|
|
|
|
|
|
|
this.fgTextColorLocal = undefined
|
2018-10-04 15:16:14 +00:00
|
|
|
this.fgLinkColorLocal = undefined
|
|
|
|
|
2018-10-07 16:59:22 +00:00
|
|
|
this.btnColorLocal = undefined
|
2018-10-03 18:21:48 +00:00
|
|
|
this.btnTextColorLocal = undefined
|
|
|
|
this.btnOpacityLocal = undefined
|
|
|
|
|
|
|
|
this.inputColorLocal = undefined
|
|
|
|
this.inputTextColorLocal = undefined
|
|
|
|
this.inputOpacityLocal = undefined
|
|
|
|
|
|
|
|
this.panelColorLocal = undefined
|
|
|
|
this.panelTextColorLocal = undefined
|
2018-10-07 19:03:34 +00:00
|
|
|
this.panelFaintColorLocal = undefined
|
2018-10-03 18:21:48 +00:00
|
|
|
this.panelOpacityLocal = undefined
|
|
|
|
|
|
|
|
this.topBarColorLocal = undefined
|
|
|
|
this.topBarTextColorLocal = undefined
|
2018-10-07 16:59:22 +00:00
|
|
|
this.topBarLinkColorLocal = undefined
|
2018-10-03 18:21:48 +00:00
|
|
|
this.topBarOpacityLocal = undefined
|
2018-10-07 16:59:22 +00:00
|
|
|
|
|
|
|
this.borderColorLocal = undefined
|
|
|
|
this.borderOpacityLocal = undefined
|
|
|
|
|
|
|
|
this.faintColorLocal = undefined
|
|
|
|
this.faintOpacityLocal = undefined
|
|
|
|
this.faintLinkColorLocal = undefined
|
2018-11-13 13:30:01 +00:00
|
|
|
|
|
|
|
this.alertErrorColorLocal = undefined
|
|
|
|
|
|
|
|
this.badgeNotificationColorLocal = undefined
|
2018-10-03 18:21:48 +00:00
|
|
|
},
|
|
|
|
|
2018-10-04 15:16:14 +00:00
|
|
|
/**
|
|
|
|
* This applies stored theme data onto form.
|
|
|
|
* @param {Object} input - input data
|
|
|
|
* @param {Number} version - version of data. 0 means try to guess based on data.
|
|
|
|
*/
|
|
|
|
normalizeLocalState (input, version = 0) {
|
2018-10-02 18:43:58 +00:00
|
|
|
const colors = input.colors || input
|
|
|
|
const radii = input.radii || input
|
2018-10-07 19:03:34 +00:00
|
|
|
const opacity = input.opacity || input
|
2018-10-02 18:43:58 +00:00
|
|
|
|
2018-10-07 16:59:22 +00:00
|
|
|
if (version === 0) {
|
|
|
|
if (input.version) version = input.version
|
|
|
|
// Old v1 naming: fg is text, btn is foreground
|
|
|
|
if (typeof colors.text === 'undefined' && typeof colors.fg !== 'undefined') {
|
|
|
|
version = 1
|
|
|
|
}
|
|
|
|
// New v2 naming: text is text, fg is foreground
|
|
|
|
if (typeof colors.text !== 'undefined' && typeof colors.fg !== 'undefined') {
|
|
|
|
version = 2
|
|
|
|
}
|
|
|
|
}
|
2018-10-02 18:43:58 +00:00
|
|
|
|
2018-10-07 16:59:22 +00:00
|
|
|
// Stuff that differs between V1 and V2
|
2018-10-03 18:21:48 +00:00
|
|
|
if (version === 1) {
|
2018-10-07 16:59:22 +00:00
|
|
|
this.fgColorLocal = rgb2hex(colors.btn)
|
|
|
|
this.textColorLocal = rgb2hex(colors.fg)
|
2018-10-03 18:21:48 +00:00
|
|
|
}
|
|
|
|
|
2018-10-07 16:59:22 +00:00
|
|
|
const keys = new Set(version !== 1 ? Object.keys(colors) : [])
|
|
|
|
if (version === 1) {
|
|
|
|
// V1 ignores the rest
|
|
|
|
this.clearV1()
|
|
|
|
keys
|
|
|
|
.add('bg')
|
|
|
|
.add('link')
|
|
|
|
.add('cRed')
|
|
|
|
.add('cBlue')
|
|
|
|
.add('cGreen')
|
|
|
|
.add('cOrange')
|
|
|
|
}
|
|
|
|
keys.forEach(key => {
|
|
|
|
this[key + 'ColorLocal'] = rgb2hex(colors[key])
|
|
|
|
})
|
2018-06-28 00:07:50 +00:00
|
|
|
|
2018-10-07 19:03:34 +00:00
|
|
|
// TODO optimize this
|
2018-06-28 00:07:50 +00: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
|
2018-10-07 19:03:34 +00:00
|
|
|
|
|
|
|
Object.entries(opacity).forEach(([k, v]) => {
|
|
|
|
if (typeof v === 'undefined' || v === null || Number.isNaN(v)) return
|
|
|
|
this[k + 'OpacityLocal'] = v
|
|
|
|
})
|
2017-11-17 15:24:42 +00:00
|
|
|
}
|
2017-01-16 17:57:03 +00:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
selected () {
|
2018-10-03 18:21:48 +00:00
|
|
|
if (this.selectedVersion === 1) {
|
2018-10-04 15:16:14 +00:00
|
|
|
this.clearV1()
|
2018-10-03 18:21:48 +00:00
|
|
|
this.bgColorLocal = this.selected[1]
|
2018-10-07 16:59:22 +00:00
|
|
|
this.fgColorLocal = this.selected[2]
|
2018-10-03 18:21:48 +00:00
|
|
|
this.textColorLocal = this.selected[3]
|
|
|
|
this.linkColorLocal = this.selected[4]
|
2018-10-21 12:25:21 +00:00
|
|
|
this.cRedColorLocal = this.selected[5]
|
|
|
|
this.cGreenColorLocal = this.selected[6]
|
|
|
|
this.cBlueColorLocal = this.selected[7]
|
|
|
|
this.cOrangeColorLocal = this.selected[8]
|
2018-10-03 18:21:48 +00:00
|
|
|
}
|
2017-01-16 17:57:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|