2017-11-21 07:45:09 +11:00
|
|
|
import { times } from 'lodash'
|
2018-10-03 04:43:58 +10:00
|
|
|
import { brightness, invertLightness, convert } from 'chromatism'
|
|
|
|
import { rgb2hex, hex2rgb, mixrgb } from '../color_convert/color_convert.js'
|
2017-02-23 07:14:55 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
// While this is not used anymore right now, I left it in if we want to do custom
|
|
|
|
// styles that aren't just colors, so user can pick from a few different distinct
|
|
|
|
// styles as well as set their own colors in the future.
|
|
|
|
|
|
|
|
const setStyle = (href, commit) => {
|
2017-01-17 03:44:26 +11:00
|
|
|
/***
|
|
|
|
What's going on here?
|
|
|
|
I want to make it easy for admins to style this application. To have
|
|
|
|
a good set of default themes, I chose the system from base16
|
|
|
|
(https://chriskempson.github.io/base16/) to style all elements. They
|
|
|
|
all have the base00..0F classes. So the only thing an admin needs to
|
|
|
|
do to style Pleroma is to change these colors in that one css file.
|
|
|
|
Some default things (body text color, link color) need to be set dy-
|
|
|
|
namically, so this is done here by waiting for the stylesheet to be
|
|
|
|
loaded and then creating an element with the respective classes.
|
|
|
|
|
|
|
|
It is a bit weird, but should make life for admins somewhat easier.
|
|
|
|
***/
|
|
|
|
const head = document.head
|
|
|
|
const body = document.body
|
|
|
|
body.style.display = 'none'
|
|
|
|
const cssEl = document.createElement('link')
|
|
|
|
cssEl.setAttribute('rel', 'stylesheet')
|
|
|
|
cssEl.setAttribute('href', href)
|
|
|
|
head.appendChild(cssEl)
|
|
|
|
|
|
|
|
const setDynamic = () => {
|
|
|
|
const baseEl = document.createElement('div')
|
2017-01-21 09:39:38 +11:00
|
|
|
body.appendChild(baseEl)
|
2017-02-23 07:14:55 +11:00
|
|
|
|
|
|
|
let colors = {}
|
|
|
|
times(16, (n) => {
|
|
|
|
const name = `base0${n.toString(16).toUpperCase()}`
|
|
|
|
baseEl.setAttribute('class', name)
|
|
|
|
const color = window.getComputedStyle(baseEl).getPropertyValue('color')
|
|
|
|
colors[name] = color
|
|
|
|
})
|
|
|
|
|
|
|
|
commit('setOption', { name: 'colors', value: colors })
|
|
|
|
|
|
|
|
body.removeChild(baseEl)
|
|
|
|
|
2017-01-17 03:44:26 +11:00
|
|
|
const styleEl = document.createElement('style')
|
|
|
|
head.appendChild(styleEl)
|
2018-04-01 04:14:36 +10:00
|
|
|
// const styleSheet = styleEl.sheet
|
2017-01-17 03:44:26 +11:00
|
|
|
|
|
|
|
body.style.display = 'initial'
|
|
|
|
}
|
2017-11-14 10:37:49 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
cssEl.addEventListener('load', setDynamic)
|
|
|
|
}
|
2017-11-14 10:37:49 +11:00
|
|
|
|
2018-10-03 04:43:58 +10:00
|
|
|
const rgb2rgba = function (rgba) {
|
|
|
|
return `rgba(${rgba.r}, ${rgba.g}, ${rgba.b}, ${rgba.a})`
|
|
|
|
}
|
|
|
|
|
|
|
|
const getTextColor = function (bg, text) {
|
|
|
|
const bgIsLight = convert(bg).hsl.l > 50
|
|
|
|
const textIsLight = convert(text).hsl.l > 50
|
|
|
|
|
|
|
|
if ((bgIsLight && textIsLight) || (!bgIsLight && !textIsLight)) {
|
|
|
|
const base = typeof text.a !== 'undefined' ? { a: text.a } : {}
|
|
|
|
return Object.assign(base, invertLightness(text).rgb)
|
|
|
|
}
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
|
|
|
const setColors = (input, commit) => {
|
2018-10-04 04:21:48 +10:00
|
|
|
const { colorRules, radiiRules } = generatePreset(input)
|
2017-11-18 02:24:42 +11:00
|
|
|
const head = document.head
|
|
|
|
const body = document.body
|
|
|
|
body.style.display = 'none'
|
2017-11-14 10:37:49 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
const styleEl = document.createElement('style')
|
|
|
|
head.appendChild(styleEl)
|
|
|
|
const styleSheet = styleEl.sheet
|
2017-11-17 11:17:36 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
styleSheet.toString()
|
2018-10-03 04:43:58 +10:00
|
|
|
styleSheet.insertRule(`body { ${colorRules} }`, 'index-max')
|
|
|
|
styleSheet.insertRule(`body { ${radiiRules} }`, 'index-max')
|
2017-11-18 02:24:42 +11:00
|
|
|
body.style.display = 'initial'
|
2017-11-18 22:13:51 +11:00
|
|
|
|
2018-10-03 04:43:58 +10:00
|
|
|
// commit('setOption', { name: 'colors', value: htmlColors })
|
|
|
|
// commit('setOption', { name: 'radii', value: radii })
|
2018-10-04 04:21:48 +10:00
|
|
|
commit('setOption', { name: 'customTheme', value: input })
|
2017-11-18 02:24:42 +11:00
|
|
|
}
|
|
|
|
|
2018-10-03 04:43:58 +10:00
|
|
|
const generatePreset = (input) => {
|
2018-10-04 04:21:48 +10:00
|
|
|
console.log(input)
|
2018-10-03 04:43:58 +10:00
|
|
|
const radii = input.radii || {
|
|
|
|
btnRadius: input.btnRadius,
|
|
|
|
inputRadius: input.inputRadius,
|
|
|
|
panelRadius: input.panelRadius,
|
|
|
|
avatarRadius: input.avatarRadius,
|
|
|
|
avatarAltRadius: input.avatarAltRadius,
|
|
|
|
tooltipRadius: input.tooltipRadius,
|
|
|
|
attachmentRadius: input.attachmentRadius
|
|
|
|
}
|
|
|
|
const colors = {}
|
|
|
|
const col = Object.entries(input.colors || input).reduce((acc, [k, v]) => {
|
|
|
|
if (typeof v === 'object') {
|
|
|
|
acc[k] = v
|
|
|
|
} else {
|
|
|
|
acc[k] = hex2rgb(v)
|
|
|
|
}
|
|
|
|
return acc
|
|
|
|
}, {})
|
|
|
|
|
2018-10-05 01:27:27 +10:00
|
|
|
colors.text = col.text
|
2018-10-05 01:16:14 +10:00
|
|
|
colors.lightText = colors.text
|
2018-10-08 03:59:22 +11:00
|
|
|
colors.link = col.link
|
|
|
|
colors.border = col.border || col.fg
|
|
|
|
colors.faint = col.faint || col.text
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-10-05 01:16:14 +10:00
|
|
|
colors.bg = col.bg
|
|
|
|
colors.lightBg = col.lightBg || brightness(5, colors.bg).rgb
|
|
|
|
|
2018-10-05 01:27:27 +10:00
|
|
|
colors.fg = col.fg
|
2018-10-08 03:59:22 +11:00
|
|
|
colors.fgText = col.fgText || getTextColor(colors.fg, colors.text)
|
|
|
|
colors.fgLink = col.fgLink || getTextColor(colors.fg, colors.link)
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-10-05 01:27:27 +10:00
|
|
|
colors.btn = col.btn || col.fg
|
2018-10-08 03:59:22 +11:00
|
|
|
colors.btnText = col.btnText || getTextColor(colors.btn, colors.fgText)
|
|
|
|
|
|
|
|
colors.input = col.input || col.fg
|
|
|
|
colors.inputText = col.inputText || getTextColor(colors.input, colors.fgText)
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-10-05 01:27:27 +10:00
|
|
|
colors.panel = col.panel || col.fg
|
2018-10-08 03:59:22 +11:00
|
|
|
colors.panelText = col.panelText || getTextColor(colors.panel, colors.fgText)
|
|
|
|
colors.panelFaint = col.panelFaint || getTextColor(colors.panel, colors.faint)
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-10-05 01:27:27 +10:00
|
|
|
colors.topBar = col.topBar || col.fg
|
2018-10-08 03:59:22 +11:00
|
|
|
colors.topBarText = col.topBarText || getTextColor(colors.topBar, colors.fgText)
|
|
|
|
colors.topBarLink = col.topBarLink || getTextColor(colors.topBar, colors.fgLink)
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-10-08 03:59:22 +11:00
|
|
|
colors.faintLink = col.faintLink || col.link
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-10-05 01:16:14 +10:00
|
|
|
colors.icon = mixrgb(colors.bg, colors.text)
|
2018-10-03 04:43:58 +10:00
|
|
|
|
|
|
|
colors.cBlue = col.cBlue
|
|
|
|
colors.cRed = col.cRed
|
|
|
|
colors.cGreen = col.cGreen
|
|
|
|
colors.cOrange = col.cOrange
|
|
|
|
|
|
|
|
colors.cAlertRed = col.cAlertRed || Object.assign({ a: 0.5 }, col.cRed)
|
|
|
|
|
|
|
|
const htmlColors = Object.entries(colors)
|
|
|
|
.reduce((acc, [k, v]) => {
|
|
|
|
if (!v) return acc
|
|
|
|
acc[k] = typeof v.a === 'undefined' ? rgb2hex(v) : rgb2rgba(v)
|
|
|
|
return acc
|
|
|
|
}, {})
|
|
|
|
|
|
|
|
return {
|
|
|
|
colorRules: Object.entries(htmlColors).filter(([k, v]) => v).map(([k, v]) => `--${k}: ${v}`).join(';'),
|
2018-10-05 01:16:14 +10:00
|
|
|
radiiRules: Object.entries(radii).filter(([k, v]) => v).map(([k, v]) => `--${k}: ${v}px`).join(';'),
|
|
|
|
theme: {
|
2018-10-08 03:59:22 +11:00
|
|
|
colors: htmlColors,
|
2018-10-05 01:16:14 +10:00
|
|
|
radii
|
|
|
|
}
|
2018-10-03 04:43:58 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
const setPreset = (val, commit) => {
|
|
|
|
window.fetch('/static/styles.json')
|
|
|
|
.then((data) => data.json())
|
|
|
|
.then((themes) => {
|
2017-11-18 22:27:37 +11:00
|
|
|
const theme = themes[val] ? themes[val] : themes['pleroma-dark']
|
2017-11-18 02:24:42 +11:00
|
|
|
const bgRgb = hex2rgb(theme[1])
|
2018-10-08 03:59:22 +11:00
|
|
|
const fgRgb = hex2rgb(theme[2])
|
2017-11-18 02:24:42 +11:00
|
|
|
const textRgb = hex2rgb(theme[3])
|
|
|
|
const linkRgb = hex2rgb(theme[4])
|
2018-04-02 05:07:25 +10:00
|
|
|
|
|
|
|
const cRedRgb = hex2rgb(theme[5] || '#FF0000')
|
2018-04-08 04:58:29 +10:00
|
|
|
const cGreenRgb = hex2rgb(theme[6] || '#00FF00')
|
|
|
|
const cBlueRgb = hex2rgb(theme[7] || '#0000FF')
|
2018-04-02 05:07:25 +10:00
|
|
|
const cOrangeRgb = hex2rgb(theme[8] || '#E3FF00')
|
|
|
|
|
2018-10-04 04:21:48 +10:00
|
|
|
const colors = {
|
2017-11-18 02:24:42 +11:00
|
|
|
bg: bgRgb,
|
2018-10-08 03:59:22 +11:00
|
|
|
fg: fgRgb,
|
2017-11-18 02:24:42 +11:00
|
|
|
text: textRgb,
|
2018-04-02 05:07:25 +10:00
|
|
|
link: linkRgb,
|
|
|
|
cRed: cRedRgb,
|
|
|
|
cBlue: cBlueRgb,
|
|
|
|
cGreen: cGreenRgb,
|
|
|
|
cOrange: cOrangeRgb
|
2017-11-18 02:24:42 +11:00
|
|
|
}
|
2018-04-02 05:07:25 +10:00
|
|
|
|
2017-11-18 22:13:51 +11:00
|
|
|
// This is a hack, this function is only called during initial load.
|
|
|
|
// We want to cancel loading the theme from config.json if we're already
|
|
|
|
// loading a theme from the persisted state.
|
|
|
|
// Needed some way of dealing with the async way of things.
|
|
|
|
// load config -> set preset -> wait for styles.json to load ->
|
|
|
|
// load persisted state -> set colors -> styles.json loaded -> set colors
|
|
|
|
if (!window.themeLoaded) {
|
2018-10-04 04:21:48 +10:00
|
|
|
setColors({ colors }, commit)
|
2017-11-18 22:13:51 +11:00
|
|
|
}
|
2017-11-18 02:24:42 +11:00
|
|
|
})
|
2017-01-17 03:44:26 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
const StyleSetter = {
|
2017-11-18 02:24:42 +11:00
|
|
|
setStyle,
|
|
|
|
setPreset,
|
2018-10-03 04:43:58 +10:00
|
|
|
setColors,
|
2018-10-05 01:16:14 +10:00
|
|
|
getTextColor,
|
2018-10-03 04:43:58 +10:00
|
|
|
generatePreset
|
2017-01-17 03:44:26 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
export default StyleSetter
|