2017-11-21 07:45:09 +11:00
|
|
|
import { times } from 'lodash'
|
2018-11-15 03:39:17 +11:00
|
|
|
import { brightness, invertLightness, convert, contrastRatio } from 'chromatism'
|
|
|
|
import { rgb2hex, hex2rgb, mixrgb, getContrastRatio, alphaBlend } 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
|
|
|
|
})
|
|
|
|
|
|
|
|
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})`
|
|
|
|
}
|
|
|
|
|
2018-11-15 03:39:17 +11:00
|
|
|
const getTextColor = function (bg, text, preserve) {
|
2018-10-03 04:43:58 +10:00
|
|
|
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 } : {}
|
2018-11-15 03:39:17 +11:00
|
|
|
const result = Object.assign(base, invertLightness(text).rgb)
|
|
|
|
if (!preserve && getContrastRatio(bg, result) < 4.5) {
|
|
|
|
return contrastRatio(bg, text).rgb
|
|
|
|
}
|
|
|
|
return result
|
2018-10-03 04:43:58 +10:00
|
|
|
}
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
|
|
|
const setColors = (input, commit) => {
|
2018-11-15 05:53:51 +11:00
|
|
|
const { colorRules, radiiRules, theme } = 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 })
|
2018-11-15 05:53:51 +11:00
|
|
|
commit('setOption', { name: 'colors', value: theme.colors })
|
2017-11-18 02:24:42 +11:00
|
|
|
}
|
|
|
|
|
2018-10-03 04:43:58 +10:00
|
|
|
const generatePreset = (input) => {
|
|
|
|
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 = {}
|
2018-10-08 06:03:34 +11:00
|
|
|
const opacity = Object.assign({
|
|
|
|
alert: 0.5,
|
|
|
|
input: 0.5,
|
|
|
|
faint: 0.5
|
2018-11-15 03:39:17 +11:00
|
|
|
}, Object.entries(input.opacity || {}).reduce((acc, [k, v]) => {
|
|
|
|
if (typeof v !== 'undefined') {
|
|
|
|
acc[k] = v
|
|
|
|
}
|
|
|
|
return acc
|
|
|
|
}, {}))
|
2018-10-08 06:03:34 +11:00
|
|
|
|
2018-10-03 04:43:58 +10:00
|
|
|
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-08 06:03:34 +11:00
|
|
|
const isLightOnDark = convert(col.bg).hsl.l < convert(col.text).hsl.l
|
|
|
|
const mod = isLightOnDark ? 1 : -1
|
|
|
|
|
2018-10-05 01:27:27 +10:00
|
|
|
colors.text = col.text
|
2018-10-08 06:03:34 +11:00
|
|
|
colors.lightText = brightness(20 * mod, colors.text).rgb
|
2018-10-08 03:59:22 +11:00
|
|
|
colors.link = col.link
|
2018-10-08 06:03:34 +11:00
|
|
|
colors.faint = col.faint || Object.assign({}, 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)
|
2018-11-15 03:39:17 +11:00
|
|
|
colors.fgLink = col.fgLink || getTextColor(colors.fg, colors.link, true)
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-11-15 03:39:17 +11:00
|
|
|
colors.border = col.border || brightness(2 * mod, colors.fg).rgb
|
2018-10-08 06:03:34 +11:00
|
|
|
|
|
|
|
colors.btn = col.btn || Object.assign({}, col.fg)
|
2018-10-08 03:59:22 +11:00
|
|
|
colors.btnText = col.btnText || getTextColor(colors.btn, colors.fgText)
|
|
|
|
|
2018-10-08 06:03:34 +11:00
|
|
|
colors.input = col.input || Object.assign({}, col.fg)
|
|
|
|
colors.inputText = col.inputText || getTextColor(colors.input, colors.lightText)
|
2018-10-03 04:43:58 +10:00
|
|
|
|
2018-10-08 06:03:34 +11:00
|
|
|
colors.panel = col.panel || Object.assign({}, 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-08 06:03:34 +11:00
|
|
|
colors.topBar = col.topBar || Object.assign({}, 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 06:03:34 +11:00
|
|
|
colors.faintLink = col.faintLink || Object.assign({}, 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
|
|
|
|
|
2018-11-14 00:30:01 +11:00
|
|
|
colors.alertError = col.alertError || Object.assign({}, col.cRed)
|
2018-11-15 03:39:17 +11:00
|
|
|
colors.alertErrorText = getTextColor(alphaBlend(colors.alertError, opacity.alert, colors.bg), colors.text)
|
|
|
|
colors.alertErrorPanelText = getTextColor(alphaBlend(colors.alertError, opacity.alert, colors.panel), colors.panelText)
|
|
|
|
|
2018-11-14 00:30:01 +11:00
|
|
|
colors.badgeNotification = col.badgeNotification || Object.assign({}, col.cRed)
|
2018-11-15 03:39:17 +11:00
|
|
|
colors.badgeNotificationText = contrastRatio(colors.badgeNotification).rgb
|
2018-10-08 06:03:34 +11:00
|
|
|
|
|
|
|
Object.entries(opacity).forEach(([ k, v ]) => {
|
|
|
|
if (typeof v === 'undefined') return
|
|
|
|
if (k === 'alert') {
|
2018-11-14 00:30:01 +11:00
|
|
|
colors.alertError.a = v
|
2018-10-08 06:03:34 +11:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if (k === 'faint') {
|
|
|
|
colors[k + 'Link'].a = v
|
|
|
|
colors['panelFaint'].a = v
|
|
|
|
}
|
|
|
|
colors[k].a = v
|
|
|
|
})
|
2018-10-03 04:43:58 +10:00
|
|
|
|
|
|
|
const htmlColors = Object.entries(colors)
|
|
|
|
.reduce((acc, [k, v]) => {
|
|
|
|
if (!v) return acc
|
2018-10-08 06:03:34 +11:00
|
|
|
acc.solid[k] = rgb2hex(v)
|
|
|
|
acc.complete[k] = typeof v.a === 'undefined' ? rgb2hex(v) : rgb2rgba(v)
|
2018-10-03 04:43:58 +10:00
|
|
|
return acc
|
2018-10-08 06:03:34 +11:00
|
|
|
}, { complete: {}, solid: {} })
|
2018-10-03 04:43:58 +10:00
|
|
|
|
|
|
|
return {
|
2018-10-08 06:03:34 +11:00
|
|
|
colorRules: Object.entries(htmlColors.complete).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 06:03:34 +11:00
|
|
|
colors: htmlColors.solid,
|
|
|
|
opacity,
|
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
|